Skip to content

Commit 201ea73

Browse files
committed
Merge branch 'develop' of https://github.com/levno-710/Prometheus into develop
2 parents 2d3c204 + a62c2f6 commit 201ea73

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

doc/getting-started/writing-a-custom-config-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,6 @@ As you can see, the only transformation that was applied to our Hello World exam
5151

5252
### How does the Config File work?
5353

54-
The config file is simply a lua file, that returns the configuration object. Please note that this lua file is sandboxed by Prometheus when loading the configuration, meaning that you can't use any predefined functions like `tostring` or the libraries like `math`.
54+
The config file is simply a lua file, that returns the configuration object. Please note that this lua file is sandboxed by Prometheus when loading the configuration, meaning that you can't use any predefined functions like `tostring` or libraries like `math`.
5555

5656
See [The Config Object](the-config-object.md) to learn what this configuration object consists of.

readme.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,15 @@ Prometheus also Requires LuaJIT or Lua51 in order to work. The Lua51 binaries ca
2020

2121
On Windows the windows release can also be used, which includes everything needed to run the prometheus cli.
2222
## Usage
23-
Prometheus provides a simple cli for obfuscating scripts. It can be used as following:
23+
To quickly obfuscate a script:
2424
```batch
25-
lua ./cli.lua [options] ./your_file.lua
25+
lua ./cli.lua --preset Strong ./your_file.lua
2626
```
2727
When using the windows release:
2828
```batch
29-
prometheus.exe [options] ./your_file.lua
29+
prometheus.exe --preset Strong ./your_file.lua
3030
```
31+
For more advances use cases see the [Documentation](https://levno-710.gitbook.io/prometheus/).
3132
## Tests
3233
To perform the Prometheus Tests, just run
3334
```batch

0 commit comments

Comments
 (0)