From e7205df94fd2083bb1117d6015bf7b703809bc45 Mon Sep 17 00:00:00 2001
From: Elias Oelschner <62939318+levno-710@users.noreply.github.com>
Date: Wed, 6 May 2026 19:27:16 +0200
Subject: [PATCH 1/4] replace Levno_710 with levno-710
---
README.md | 3 ---
cli.lua | 2 +-
src/cli.lua | 2 +-
src/colors.lua | 2 +-
src/highlightlua.lua | 2 +-
src/logger.lua | 2 +-
src/presets.lua | 2 +-
src/prometheus.lua | 2 +-
src/prometheus/ast.lua | 2 +-
src/prometheus/compiler/block.lua | 2 +-
src/prometheus/compiler/compile_core.lua | 2 +-
src/prometheus/compiler/compile_top.lua | 2 +-
src/prometheus/compiler/compiler.lua | 2 +-
src/prometheus/compiler/constants.lua | 2 +-
src/prometheus/compiler/emit.lua | 2 +-
src/prometheus/compiler/expressions.lua | 2 +-
src/prometheus/compiler/expressions/and.lua | 2 +-
src/prometheus/compiler/expressions/binary.lua | 2 +-
src/prometheus/compiler/expressions/boolean.lua | 2 +-
src/prometheus/compiler/expressions/function_call.lua | 2 +-
src/prometheus/compiler/expressions/function_literal.lua | 2 +-
src/prometheus/compiler/expressions/index.lua | 2 +-
src/prometheus/compiler/expressions/len.lua | 2 +-
src/prometheus/compiler/expressions/negate.lua | 2 +-
src/prometheus/compiler/expressions/nil.lua | 2 +-
src/prometheus/compiler/expressions/not.lua | 2 +-
src/prometheus/compiler/expressions/number.lua | 2 +-
src/prometheus/compiler/expressions/or.lua | 2 +-
.../compiler/expressions/pass_self_function_call.lua | 2 +-
src/prometheus/compiler/expressions/string.lua | 2 +-
src/prometheus/compiler/expressions/table_constructor.lua | 2 +-
src/prometheus/compiler/expressions/vararg.lua | 2 +-
src/prometheus/compiler/expressions/variable.lua | 2 +-
src/prometheus/compiler/register.lua | 2 +-
src/prometheus/compiler/statements.lua | 2 +-
src/prometheus/compiler/statements/assignment.lua | 2 +-
src/prometheus/compiler/statements/break_statement.lua | 2 +-
src/prometheus/compiler/statements/compound.lua | 2 +-
src/prometheus/compiler/statements/continue_statement.lua | 2 +-
src/prometheus/compiler/statements/do_statement.lua | 2 +-
src/prometheus/compiler/statements/for_in_statement.lua | 2 +-
src/prometheus/compiler/statements/for_statement.lua | 2 +-
src/prometheus/compiler/statements/function_call.lua | 2 +-
src/prometheus/compiler/statements/function_declaration.lua | 2 +-
src/prometheus/compiler/statements/if_statement.lua | 2 +-
.../compiler/statements/local_function_declaration.lua | 2 +-
.../compiler/statements/local_variable_declaration.lua | 2 +-
.../compiler/statements/pass_self_function_call.lua | 2 +-
src/prometheus/compiler/statements/repeat_statement.lua | 2 +-
src/prometheus/compiler/statements/return.lua | 2 +-
src/prometheus/compiler/statements/while_statement.lua | 2 +-
src/prometheus/compiler/upvalue.lua | 2 +-
src/prometheus/enums.lua | 2 +-
src/prometheus/namegenerators.lua | 2 +-
src/prometheus/namegenerators/Il.lua | 2 +-
src/prometheus/namegenerators/confuse.lua | 2 +-
src/prometheus/namegenerators/mangled.lua | 2 +-
src/prometheus/namegenerators/mangled_shuffled.lua | 2 +-
src/prometheus/namegenerators/number.lua | 2 +-
src/prometheus/parser.lua | 2 +-
src/prometheus/pipeline.lua | 2 +-
src/prometheus/randomLiterals.lua | 2 +-
src/prometheus/randomStrings.lua | 2 +-
src/prometheus/scope.lua | 2 +-
src/prometheus/step.lua | 2 +-
src/prometheus/steps.lua | 2 +-
src/prometheus/steps/AddVararg.lua | 2 +-
src/prometheus/steps/AntiTamper.lua | 2 +-
src/prometheus/steps/ConstantArray.lua | 2 +-
src/prometheus/steps/EncryptStrings.lua | 2 +-
src/prometheus/steps/NumbersToExpressions.lua | 2 +-
src/prometheus/steps/ProxifyLocals.lua | 2 +-
src/prometheus/steps/SplitStrings.lua | 2 +-
src/prometheus/steps/Vmify.lua | 2 +-
src/prometheus/steps/Watermark.lua | 4 ++--
src/prometheus/steps/WatermarkCheck.lua | 4 ++--
src/prometheus/steps/WrapInFunction.lua | 2 +-
src/prometheus/tokenizer.lua | 2 +-
src/prometheus/unparser.lua | 2 +-
src/prometheus/util.lua | 2 +-
src/prometheus/visitast.lua | 2 +-
tests.lua | 2 +-
tests/ambiguous-call.lua | 2 +-
tests/closures.lua | 2 +-
tests/coroutines.lua | 2 +-
tests/fibonacci.lua | 2 +-
tests/iterator.lua | 2 +-
tests/matrix.lua | 2 +-
tests/metatables.lua | 2 +-
tests/primes.lua | 2 +-
tests/state-machine.lua | 2 +-
tests/strings.lua | 2 +-
tests/table-merge.lua | 2 +-
tests/upvalues.lua | 2 +-
94 files changed, 95 insertions(+), 98 deletions(-)
diff --git a/README.md b/README.md
index b9f6a278..fdcb2e2f 100644
--- a/README.md
+++ b/README.md
@@ -17,9 +17,6 @@
-
-
-
diff --git a/cli.lua b/cli.lua
index 3f0477c6..6a9e6dbf 100644
--- a/cli.lua
+++ b/cli.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- cli.lua
--
diff --git a/src/cli.lua b/src/cli.lua
index 7abed2f8..05024919 100644
--- a/src/cli.lua
+++ b/src/cli.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- cli.lua
--
diff --git a/src/colors.lua b/src/colors.lua
index c71484fe..7c75e0cc 100644
--- a/src/colors.lua
+++ b/src/colors.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- colors.lua
--
diff --git a/src/highlightlua.lua b/src/highlightlua.lua
index 5e5b6be2..543c9fb3 100644
--- a/src/highlightlua.lua
+++ b/src/highlightlua.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- highlightlua.lua
--
diff --git a/src/logger.lua b/src/logger.lua
index 71c69744..107c810e 100644
--- a/src/logger.lua
+++ b/src/logger.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- logger.lua
--
diff --git a/src/presets.lua b/src/presets.lua
index 0e45d26f..5c700b72 100644
--- a/src/presets.lua
+++ b/src/presets.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- presets.lua
--
diff --git a/src/prometheus.lua b/src/prometheus.lua
index 3f4d42c1..d5b27366 100644
--- a/src/prometheus.lua
+++ b/src/prometheus.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- prometheus.lua
--
diff --git a/src/prometheus/ast.lua b/src/prometheus/ast.lua
index 6cd6914e..2ca0523a 100644
--- a/src/prometheus/ast.lua
+++ b/src/prometheus/ast.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- ast.lua
--
diff --git a/src/prometheus/compiler/block.lua b/src/prometheus/compiler/block.lua
index 572f8569..c5544ee8 100644
--- a/src/prometheus/compiler/block.lua
+++ b/src/prometheus/compiler/block.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- block.lua
--
diff --git a/src/prometheus/compiler/compile_core.lua b/src/prometheus/compiler/compile_core.lua
index 28647df3..e53f84e3 100644
--- a/src/prometheus/compiler/compile_core.lua
+++ b/src/prometheus/compiler/compile_core.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- compile_core.lua
-- This Script contains the core compilation functions: compileTopNode, compileFunction, compileBlock,
diff --git a/src/prometheus/compiler/compile_top.lua b/src/prometheus/compiler/compile_top.lua
index 63ebc1dd..f42c15df 100644
--- a/src/prometheus/compiler/compile_top.lua
+++ b/src/prometheus/compiler/compile_top.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- compile_top.lua
--
diff --git a/src/prometheus/compiler/compiler.lua b/src/prometheus/compiler/compiler.lua
index 31af5831..107333f8 100644
--- a/src/prometheus/compiler/compiler.lua
+++ b/src/prometheus/compiler/compiler.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- compiler.lua
--
diff --git a/src/prometheus/compiler/constants.lua b/src/prometheus/compiler/constants.lua
index 5ddbdd1a..ad2b0dd4 100644
--- a/src/prometheus/compiler/constants.lua
+++ b/src/prometheus/compiler/constants.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- constants.lua
--
diff --git a/src/prometheus/compiler/emit.lua b/src/prometheus/compiler/emit.lua
index 5f46a4cc..0cc55f43 100644
--- a/src/prometheus/compiler/emit.lua
+++ b/src/prometheus/compiler/emit.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- emit.lua
--
diff --git a/src/prometheus/compiler/expressions.lua b/src/prometheus/compiler/expressions.lua
index 9192e471..877f75d1 100644
--- a/src/prometheus/compiler/expressions.lua
+++ b/src/prometheus/compiler/expressions.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- expressions.lua
--
diff --git a/src/prometheus/compiler/expressions/and.lua b/src/prometheus/compiler/expressions/and.lua
index af12d7b6..89b30260 100644
--- a/src/prometheus/compiler/expressions/and.lua
+++ b/src/prometheus/compiler/expressions/and.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- and.lua
--
diff --git a/src/prometheus/compiler/expressions/binary.lua b/src/prometheus/compiler/expressions/binary.lua
index 2810a5ba..380d689f 100644
--- a/src/prometheus/compiler/expressions/binary.lua
+++ b/src/prometheus/compiler/expressions/binary.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- binary.lua
--
diff --git a/src/prometheus/compiler/expressions/boolean.lua b/src/prometheus/compiler/expressions/boolean.lua
index 006a745e..1b1ddace 100644
--- a/src/prometheus/compiler/expressions/boolean.lua
+++ b/src/prometheus/compiler/expressions/boolean.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- boolean.lua
--
diff --git a/src/prometheus/compiler/expressions/function_call.lua b/src/prometheus/compiler/expressions/function_call.lua
index 343fd891..a9de1f6c 100644
--- a/src/prometheus/compiler/expressions/function_call.lua
+++ b/src/prometheus/compiler/expressions/function_call.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- function_call.lua
--
diff --git a/src/prometheus/compiler/expressions/function_literal.lua b/src/prometheus/compiler/expressions/function_literal.lua
index c0950ee5..0a4e06eb 100644
--- a/src/prometheus/compiler/expressions/function_literal.lua
+++ b/src/prometheus/compiler/expressions/function_literal.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- function_literal.lua
--
diff --git a/src/prometheus/compiler/expressions/index.lua b/src/prometheus/compiler/expressions/index.lua
index fb1f653c..c3574c7d 100644
--- a/src/prometheus/compiler/expressions/index.lua
+++ b/src/prometheus/compiler/expressions/index.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- index.lua
--
diff --git a/src/prometheus/compiler/expressions/len.lua b/src/prometheus/compiler/expressions/len.lua
index 0657cf4f..b0cb1c7b 100644
--- a/src/prometheus/compiler/expressions/len.lua
+++ b/src/prometheus/compiler/expressions/len.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- len.lua
--
diff --git a/src/prometheus/compiler/expressions/negate.lua b/src/prometheus/compiler/expressions/negate.lua
index ea56d592..b5fdc98a 100644
--- a/src/prometheus/compiler/expressions/negate.lua
+++ b/src/prometheus/compiler/expressions/negate.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- negate.lua
--
diff --git a/src/prometheus/compiler/expressions/nil.lua b/src/prometheus/compiler/expressions/nil.lua
index a6295838..4e716ea3 100644
--- a/src/prometheus/compiler/expressions/nil.lua
+++ b/src/prometheus/compiler/expressions/nil.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- nil.lua
--
diff --git a/src/prometheus/compiler/expressions/not.lua b/src/prometheus/compiler/expressions/not.lua
index f0def99e..3176c80f 100644
--- a/src/prometheus/compiler/expressions/not.lua
+++ b/src/prometheus/compiler/expressions/not.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- not.lua
--
diff --git a/src/prometheus/compiler/expressions/number.lua b/src/prometheus/compiler/expressions/number.lua
index 22246dca..0b09044a 100644
--- a/src/prometheus/compiler/expressions/number.lua
+++ b/src/prometheus/compiler/expressions/number.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- number.lua
--
diff --git a/src/prometheus/compiler/expressions/or.lua b/src/prometheus/compiler/expressions/or.lua
index aff6b843..92e6ca77 100644
--- a/src/prometheus/compiler/expressions/or.lua
+++ b/src/prometheus/compiler/expressions/or.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- or.lua
--
diff --git a/src/prometheus/compiler/expressions/pass_self_function_call.lua b/src/prometheus/compiler/expressions/pass_self_function_call.lua
index 78ea10b6..c0a7c4db 100644
--- a/src/prometheus/compiler/expressions/pass_self_function_call.lua
+++ b/src/prometheus/compiler/expressions/pass_self_function_call.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- pass_self_function_call.lua
--
diff --git a/src/prometheus/compiler/expressions/string.lua b/src/prometheus/compiler/expressions/string.lua
index dd08e150..c3b8dbd7 100644
--- a/src/prometheus/compiler/expressions/string.lua
+++ b/src/prometheus/compiler/expressions/string.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- string.lua
--
diff --git a/src/prometheus/compiler/expressions/table_constructor.lua b/src/prometheus/compiler/expressions/table_constructor.lua
index 087c3f0e..f9ce495a 100644
--- a/src/prometheus/compiler/expressions/table_constructor.lua
+++ b/src/prometheus/compiler/expressions/table_constructor.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- table_constructor.lua
--
diff --git a/src/prometheus/compiler/expressions/vararg.lua b/src/prometheus/compiler/expressions/vararg.lua
index 86d72343..82e84c82 100644
--- a/src/prometheus/compiler/expressions/vararg.lua
+++ b/src/prometheus/compiler/expressions/vararg.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- vararg.lua
--
diff --git a/src/prometheus/compiler/expressions/variable.lua b/src/prometheus/compiler/expressions/variable.lua
index 9f95fdf8..502dc86d 100644
--- a/src/prometheus/compiler/expressions/variable.lua
+++ b/src/prometheus/compiler/expressions/variable.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- variable.lua
--
diff --git a/src/prometheus/compiler/register.lua b/src/prometheus/compiler/register.lua
index 2fae1fac..e4b4b2f5 100644
--- a/src/prometheus/compiler/register.lua
+++ b/src/prometheus/compiler/register.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- register.lua
--
diff --git a/src/prometheus/compiler/statements.lua b/src/prometheus/compiler/statements.lua
index 27ac6bdc..5b5cdd9c 100644
--- a/src/prometheus/compiler/statements.lua
+++ b/src/prometheus/compiler/statements.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- statements.lua
--
diff --git a/src/prometheus/compiler/statements/assignment.lua b/src/prometheus/compiler/statements/assignment.lua
index fc4f4620..3831ddb6 100644
--- a/src/prometheus/compiler/statements/assignment.lua
+++ b/src/prometheus/compiler/statements/assignment.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- assignment.lua
--
diff --git a/src/prometheus/compiler/statements/break_statement.lua b/src/prometheus/compiler/statements/break_statement.lua
index 28e15c82..87416ec5 100644
--- a/src/prometheus/compiler/statements/break_statement.lua
+++ b/src/prometheus/compiler/statements/break_statement.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- break_statement.lua
--
diff --git a/src/prometheus/compiler/statements/compound.lua b/src/prometheus/compiler/statements/compound.lua
index b0ca4035..059a1305 100644
--- a/src/prometheus/compiler/statements/compound.lua
+++ b/src/prometheus/compiler/statements/compound.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- compound.lua
--
diff --git a/src/prometheus/compiler/statements/continue_statement.lua b/src/prometheus/compiler/statements/continue_statement.lua
index a7656999..b2c7173c 100644
--- a/src/prometheus/compiler/statements/continue_statement.lua
+++ b/src/prometheus/compiler/statements/continue_statement.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- continue_statement.lua
--
diff --git a/src/prometheus/compiler/statements/do_statement.lua b/src/prometheus/compiler/statements/do_statement.lua
index 65d71daf..6047ea90 100644
--- a/src/prometheus/compiler/statements/do_statement.lua
+++ b/src/prometheus/compiler/statements/do_statement.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- do_statement.lua
--
diff --git a/src/prometheus/compiler/statements/for_in_statement.lua b/src/prometheus/compiler/statements/for_in_statement.lua
index af82ce67..0d16872b 100644
--- a/src/prometheus/compiler/statements/for_in_statement.lua
+++ b/src/prometheus/compiler/statements/for_in_statement.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- for_in_statement.lua
--
diff --git a/src/prometheus/compiler/statements/for_statement.lua b/src/prometheus/compiler/statements/for_statement.lua
index 85296f8b..afe43081 100644
--- a/src/prometheus/compiler/statements/for_statement.lua
+++ b/src/prometheus/compiler/statements/for_statement.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- for_statement.lua
--
diff --git a/src/prometheus/compiler/statements/function_call.lua b/src/prometheus/compiler/statements/function_call.lua
index c1f32a5d..cd53fc23 100644
--- a/src/prometheus/compiler/statements/function_call.lua
+++ b/src/prometheus/compiler/statements/function_call.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- function_call.lua
--
diff --git a/src/prometheus/compiler/statements/function_declaration.lua b/src/prometheus/compiler/statements/function_declaration.lua
index 3dde2c1a..6f825e9b 100644
--- a/src/prometheus/compiler/statements/function_declaration.lua
+++ b/src/prometheus/compiler/statements/function_declaration.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- function_declaration.lua
--
diff --git a/src/prometheus/compiler/statements/if_statement.lua b/src/prometheus/compiler/statements/if_statement.lua
index 0a093968..449aa435 100644
--- a/src/prometheus/compiler/statements/if_statement.lua
+++ b/src/prometheus/compiler/statements/if_statement.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- if_statement.lua
--
diff --git a/src/prometheus/compiler/statements/local_function_declaration.lua b/src/prometheus/compiler/statements/local_function_declaration.lua
index 195bb5a1..d377afa6 100644
--- a/src/prometheus/compiler/statements/local_function_declaration.lua
+++ b/src/prometheus/compiler/statements/local_function_declaration.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- local_function_declaration.lua
--
diff --git a/src/prometheus/compiler/statements/local_variable_declaration.lua b/src/prometheus/compiler/statements/local_variable_declaration.lua
index 33f2e7a5..8294ad2b 100644
--- a/src/prometheus/compiler/statements/local_variable_declaration.lua
+++ b/src/prometheus/compiler/statements/local_variable_declaration.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- local_variable_declaration.lua
--
diff --git a/src/prometheus/compiler/statements/pass_self_function_call.lua b/src/prometheus/compiler/statements/pass_self_function_call.lua
index 5c946602..8b31bbe4 100644
--- a/src/prometheus/compiler/statements/pass_self_function_call.lua
+++ b/src/prometheus/compiler/statements/pass_self_function_call.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- pass_self_function_call.lua
--
diff --git a/src/prometheus/compiler/statements/repeat_statement.lua b/src/prometheus/compiler/statements/repeat_statement.lua
index 84944a03..4da955e6 100644
--- a/src/prometheus/compiler/statements/repeat_statement.lua
+++ b/src/prometheus/compiler/statements/repeat_statement.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- repeat_statement.lua
--
diff --git a/src/prometheus/compiler/statements/return.lua b/src/prometheus/compiler/statements/return.lua
index 8c7fa874..c60ca7de 100644
--- a/src/prometheus/compiler/statements/return.lua
+++ b/src/prometheus/compiler/statements/return.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- return.lua
--
diff --git a/src/prometheus/compiler/statements/while_statement.lua b/src/prometheus/compiler/statements/while_statement.lua
index cbbb6f5c..661645eb 100644
--- a/src/prometheus/compiler/statements/while_statement.lua
+++ b/src/prometheus/compiler/statements/while_statement.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- while_statement.lua
--
diff --git a/src/prometheus/compiler/upvalue.lua b/src/prometheus/compiler/upvalue.lua
index 494dce4f..14bf1260 100644
--- a/src/prometheus/compiler/upvalue.lua
+++ b/src/prometheus/compiler/upvalue.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- upvalue.lua
--
diff --git a/src/prometheus/enums.lua b/src/prometheus/enums.lua
index 0516787d..e8880be2 100644
--- a/src/prometheus/enums.lua
+++ b/src/prometheus/enums.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- enums.lua
--
diff --git a/src/prometheus/namegenerators.lua b/src/prometheus/namegenerators.lua
index e69a95af..49947b93 100644
--- a/src/prometheus/namegenerators.lua
+++ b/src/prometheus/namegenerators.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- namegenerators.lua
--
diff --git a/src/prometheus/namegenerators/Il.lua b/src/prometheus/namegenerators/Il.lua
index 618cfd6c..d106da6f 100644
--- a/src/prometheus/namegenerators/Il.lua
+++ b/src/prometheus/namegenerators/Il.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- namegenerators/il.lua
--
diff --git a/src/prometheus/namegenerators/confuse.lua b/src/prometheus/namegenerators/confuse.lua
index d36cfee0..08f94366 100644
--- a/src/prometheus/namegenerators/confuse.lua
+++ b/src/prometheus/namegenerators/confuse.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- namegenerators/confuse.lua
--
diff --git a/src/prometheus/namegenerators/mangled.lua b/src/prometheus/namegenerators/mangled.lua
index c5a0010f..f9fa24ab 100644
--- a/src/prometheus/namegenerators/mangled.lua
+++ b/src/prometheus/namegenerators/mangled.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- namegenerators/mangled.lua
--
diff --git a/src/prometheus/namegenerators/mangled_shuffled.lua b/src/prometheus/namegenerators/mangled_shuffled.lua
index 28a404f1..b1697156 100644
--- a/src/prometheus/namegenerators/mangled_shuffled.lua
+++ b/src/prometheus/namegenerators/mangled_shuffled.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- namegenerators/mangled_shuffled.lua
--
diff --git a/src/prometheus/namegenerators/number.lua b/src/prometheus/namegenerators/number.lua
index e0b044f7..6d89dd93 100644
--- a/src/prometheus/namegenerators/number.lua
+++ b/src/prometheus/namegenerators/number.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- namegenerators/number.lua
--
diff --git a/src/prometheus/parser.lua b/src/prometheus/parser.lua
index 9dc623bc..7274bf5e 100644
--- a/src/prometheus/parser.lua
+++ b/src/prometheus/parser.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- parser.lua
-- Overview:
diff --git a/src/prometheus/pipeline.lua b/src/prometheus/pipeline.lua
index b2fd7ef1..b045aa91 100644
--- a/src/prometheus/pipeline.lua
+++ b/src/prometheus/pipeline.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- pipeline.lua
--
diff --git a/src/prometheus/randomLiterals.lua b/src/prometheus/randomLiterals.lua
index 97011e92..7824b663 100644
--- a/src/prometheus/randomLiterals.lua
+++ b/src/prometheus/randomLiterals.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- randomLiterals.lua
--
diff --git a/src/prometheus/randomStrings.lua b/src/prometheus/randomStrings.lua
index 15e11e37..84fa27e1 100644
--- a/src/prometheus/randomStrings.lua
+++ b/src/prometheus/randomStrings.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- randomStrings.lua
--
diff --git a/src/prometheus/scope.lua b/src/prometheus/scope.lua
index a0a7bca3..3f01b953 100644
--- a/src/prometheus/scope.lua
+++ b/src/prometheus/scope.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- scope.lua
--
diff --git a/src/prometheus/step.lua b/src/prometheus/step.lua
index 8d83fcbe..e6f52818 100644
--- a/src/prometheus/step.lua
+++ b/src/prometheus/step.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- step.lua
--
diff --git a/src/prometheus/steps.lua b/src/prometheus/steps.lua
index ae9ac1a8..0544c8ec 100644
--- a/src/prometheus/steps.lua
+++ b/src/prometheus/steps.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- steps.lua
--
diff --git a/src/prometheus/steps/AddVararg.lua b/src/prometheus/steps/AddVararg.lua
index b16b72de..361e4b61 100644
--- a/src/prometheus/steps/AddVararg.lua
+++ b/src/prometheus/steps/AddVararg.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- AddVararg.lua
--
diff --git a/src/prometheus/steps/AntiTamper.lua b/src/prometheus/steps/AntiTamper.lua
index e83fcb01..428fba41 100644
--- a/src/prometheus/steps/AntiTamper.lua
+++ b/src/prometheus/steps/AntiTamper.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- AntiTamper.lua
--
diff --git a/src/prometheus/steps/ConstantArray.lua b/src/prometheus/steps/ConstantArray.lua
index b0e0f59e..f504eb1a 100644
--- a/src/prometheus/steps/ConstantArray.lua
+++ b/src/prometheus/steps/ConstantArray.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- ConstantArray.lua
--
diff --git a/src/prometheus/steps/EncryptStrings.lua b/src/prometheus/steps/EncryptStrings.lua
index db2a7bc0..a7e031f7 100644
--- a/src/prometheus/steps/EncryptStrings.lua
+++ b/src/prometheus/steps/EncryptStrings.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- EncryptStrings.lua
--
diff --git a/src/prometheus/steps/NumbersToExpressions.lua b/src/prometheus/steps/NumbersToExpressions.lua
index 449a12fd..92850898 100644
--- a/src/prometheus/steps/NumbersToExpressions.lua
+++ b/src/prometheus/steps/NumbersToExpressions.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- NumbersToExpressions.lua
--
diff --git a/src/prometheus/steps/ProxifyLocals.lua b/src/prometheus/steps/ProxifyLocals.lua
index 3b484420..138908bb 100644
--- a/src/prometheus/steps/ProxifyLocals.lua
+++ b/src/prometheus/steps/ProxifyLocals.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- ProxifyLocals.lua
--
diff --git a/src/prometheus/steps/SplitStrings.lua b/src/prometheus/steps/SplitStrings.lua
index 6dfffd17..c549cd89 100644
--- a/src/prometheus/steps/SplitStrings.lua
+++ b/src/prometheus/steps/SplitStrings.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- SplitStrings.lua
--
diff --git a/src/prometheus/steps/Vmify.lua b/src/prometheus/steps/Vmify.lua
index bd1f0d5d..f503de62 100644
--- a/src/prometheus/steps/Vmify.lua
+++ b/src/prometheus/steps/Vmify.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- Vmify.lua
--
diff --git a/src/prometheus/steps/Watermark.lua b/src/prometheus/steps/Watermark.lua
index 9938bd41..ce92f0a2 100644
--- a/src/prometheus/steps/Watermark.lua
+++ b/src/prometheus/steps/Watermark.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- Watermark.lua
--
@@ -17,7 +17,7 @@ Watermark.SettingsDescriptor = {
name = "Content",
description = "The Content of the Watermark",
type = "string",
- default = "This Script is Part of the Prometheus Obfuscator by Levno_710",
+ default = "This Script is Part of the Prometheus Obfuscator by levno-710",
},
CustomVariable = {
name = "Custom Variable",
diff --git a/src/prometheus/steps/WatermarkCheck.lua b/src/prometheus/steps/WatermarkCheck.lua
index d12a83b6..5ae45e3d 100644
--- a/src/prometheus/steps/WatermarkCheck.lua
+++ b/src/prometheus/steps/WatermarkCheck.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- WatermarkCheck.lua
--
@@ -18,7 +18,7 @@ WatermarkCheck.SettingsDescriptor = {
name = "Content",
description = "The Content of the WatermarkCheck",
type = "string",
- default = "This Script is Part of the Prometheus Obfuscator by Levno_710",
+ default = "This Script is Part of the Prometheus Obfuscator by levno-710",
},
}
diff --git a/src/prometheus/steps/WrapInFunction.lua b/src/prometheus/steps/WrapInFunction.lua
index 26c2b7be..07a8a069 100644
--- a/src/prometheus/steps/WrapInFunction.lua
+++ b/src/prometheus/steps/WrapInFunction.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- WrapInFunction.lua
--
diff --git a/src/prometheus/tokenizer.lua b/src/prometheus/tokenizer.lua
index c6b2a324..19295605 100644
--- a/src/prometheus/tokenizer.lua
+++ b/src/prometheus/tokenizer.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- tokenizer.lua
-- Overview:
diff --git a/src/prometheus/unparser.lua b/src/prometheus/unparser.lua
index 8c01db88..661baf29 100644
--- a/src/prometheus/unparser.lua
+++ b/src/prometheus/unparser.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- unparser.lua
-- Overview:
diff --git a/src/prometheus/util.lua b/src/prometheus/util.lua
index c69e4175..5d8b6bde 100644
--- a/src/prometheus/util.lua
+++ b/src/prometheus/util.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- util.lua
--
diff --git a/src/prometheus/visitast.lua b/src/prometheus/visitast.lua
index 0cb6300b..16dc4fb4 100644
--- a/src/prometheus/visitast.lua
+++ b/src/prometheus/visitast.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- visitast.lua
--
diff --git a/tests.lua b/tests.lua
index b779d821..00f229fc 100644
--- a/tests.lua
+++ b/tests.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- tests.lua
--
diff --git a/tests/ambiguous-call.lua b/tests/ambiguous-call.lua
index d79595e6..60ba225c 100644
--- a/tests/ambiguous-call.lua
+++ b/tests/ambiguous-call.lua
@@ -1,4 +1,4 @@
--- This Test is Part of the Prometheus Obfuscator by Levno_710
+-- This Test is Part of the Prometheus Obfuscator by levno-710
--
-- ambiguous-call.lua
--
diff --git a/tests/closures.lua b/tests/closures.lua
index 8ad93e16..1f81fecf 100644
--- a/tests/closures.lua
+++ b/tests/closures.lua
@@ -1,4 +1,4 @@
--- This Test is Part of the Prometheus Obfuscator by Levno_710
+-- This Test is Part of the Prometheus Obfuscator by levno-710
--
-- closures.lua
--
diff --git a/tests/coroutines.lua b/tests/coroutines.lua
index 4138af9a..b823ee23 100644
--- a/tests/coroutines.lua
+++ b/tests/coroutines.lua
@@ -1,4 +1,4 @@
--- This Test is Part of the Prometheus Obfuscator by Levno_710
+-- This Test is Part of the Prometheus Obfuscator by levno-710
--
-- coroutines.lua
--
diff --git a/tests/fibonacci.lua b/tests/fibonacci.lua
index 06733bad..74524160 100644
--- a/tests/fibonacci.lua
+++ b/tests/fibonacci.lua
@@ -1,4 +1,4 @@
--- This Test is Part of the Prometheus Obfuscator by Levno_710
+-- This Test is Part of the Prometheus Obfuscator by levno-710
--
-- fibonacci.lua
--
diff --git a/tests/iterator.lua b/tests/iterator.lua
index 85df45d1..c730fdd9 100644
--- a/tests/iterator.lua
+++ b/tests/iterator.lua
@@ -1,4 +1,4 @@
--- This Test is Part of the Prometheus Obfuscator by Levno_710
+-- This Test is Part of the Prometheus Obfuscator by levno-710
--
-- iterator.lua
--
diff --git a/tests/matrix.lua b/tests/matrix.lua
index 18e8f08a..24964299 100644
--- a/tests/matrix.lua
+++ b/tests/matrix.lua
@@ -1,4 +1,4 @@
--- This Test is Part of the Prometheus Obfuscator by Levno_710
+-- This Test is Part of the Prometheus Obfuscator by levno-710
--
-- matrix.lua
--
diff --git a/tests/metatables.lua b/tests/metatables.lua
index d9e7d944..a3e342ae 100644
--- a/tests/metatables.lua
+++ b/tests/metatables.lua
@@ -1,4 +1,4 @@
--- This Test is Part of the Prometheus Obfuscator by Levno_710
+-- This Test is Part of the Prometheus Obfuscator by levno-710
--
-- metatables.lua
--
diff --git a/tests/primes.lua b/tests/primes.lua
index d07d6543..363bceb5 100644
--- a/tests/primes.lua
+++ b/tests/primes.lua
@@ -1,4 +1,4 @@
--- This Test is Part of the Prometheus Obfuscator by Levno_710
+-- This Test is Part of the Prometheus Obfuscator by levno-710
--
-- primes.lua
--
diff --git a/tests/state-machine.lua b/tests/state-machine.lua
index 1c925a01..b67a81d8 100644
--- a/tests/state-machine.lua
+++ b/tests/state-machine.lua
@@ -1,4 +1,4 @@
--- This Script is Part of the Prometheus Obfuscator by Levno_710
+-- This Script is Part of the Prometheus Obfuscator by levno-710
--
-- state-machine.lua
--
diff --git a/tests/strings.lua b/tests/strings.lua
index 9dfd8afa..7bb61c4f 100644
--- a/tests/strings.lua
+++ b/tests/strings.lua
@@ -1,4 +1,4 @@
--- This Test is Part of the Prometheus Obfuscator by Levno_710
+-- This Test is Part of the Prometheus Obfuscator by levno-710
--
-- strings.lua
--
diff --git a/tests/table-merge.lua b/tests/table-merge.lua
index f50ffb26..d1c422cc 100644
--- a/tests/table-merge.lua
+++ b/tests/table-merge.lua
@@ -1,4 +1,4 @@
--- This Test is Part of the Prometheus Obfuscator by Levno_710
+-- This Test is Part of the Prometheus Obfuscator by levno-710
--
-- table-merge.lua
--
diff --git a/tests/upvalues.lua b/tests/upvalues.lua
index 7d1ea23c..41cc20dc 100644
--- a/tests/upvalues.lua
+++ b/tests/upvalues.lua
@@ -1,4 +1,4 @@
--- This Test is Part of the Prometheus Obfuscator by Levno_710
+-- This Test is Part of the Prometheus Obfuscator by levno-710
--
-- upvalues.lua
--
From 5dc1ba4aa3b719765aadf793e1052ca624565f3e Mon Sep 17 00:00:00 2001
From: Elias Oelschner <62939318+levno-710@users.noreply.github.com>
Date: Wed, 6 May 2026 19:38:55 +0200
Subject: [PATCH 2/4] update preset to "Medium", add GitHub link, and reset
seed after obfuscation
---
web/src/App.tsx | 17 ++++++++++++++---
1 file changed, 14 insertions(+), 3 deletions(-)
diff --git a/web/src/App.tsx b/web/src/App.tsx
index a34ae3fd..2b5786a7 100644
--- a/web/src/App.tsx
+++ b/web/src/App.tsx
@@ -1,4 +1,4 @@
-import { Check, Copy, Download, FileCode2, Loader2, Play, RotateCcw } from "lucide-react"
+import { Check, Copy, Download, FileCode2, Github, Loader2, Play, RotateCcw } from "lucide-react"
import { useEffect, useMemo, useRef, useState } from "react"
import { toast } from "sonner"
@@ -57,7 +57,7 @@ function formatWorkerError(event: ErrorEvent): string {
export default function App() {
const [source, setSource] = useState(initialSource)
const [output, setOutput] = useState("")
- const [preset, setPreset] = useState("Minify")
+ const [preset, setPreset] = useState("Medium")
const [luaVersion, setLuaVersion] = useState("Lua51")
const [prettyPrint, setPrettyPrint] = useState(false)
const [seed, setSeed] = useState(createSeed)
@@ -211,6 +211,7 @@ export default function App() {
setLogs(result.logs)
if (result.ok) {
setOutput(result.output)
+ setSeed(createSeed())
toast.success("Obfuscation complete")
} else {
setOutput("")
@@ -240,11 +241,21 @@ export default function App() {
Prometheus Web
- In-browser Lua obfuscation powered by Prometheus by Levno_710.
+ In-browser Lua obfuscation powered by Prometheus by levno-710.
+ If you like this tool, leave a star on
+
+ GitHub
+
+ {status}