You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bumped to v0.9.7. Disabled all minimization and obfuscation in MakeRelease script, the latter due to Google policies. Replaced all 'CONFIDENTIAL' statements in previously-obfuscated code with a simple copyright statement, updated LICENSE to reflect current state.
echo ---Making Obfuscated Chrome App release in ./release folder---
2
+
echo ---Making Chrome App release in ./release folder---
3
3
echo
4
-
echo STEP 1 of 3: Clearing ./release folder
4
+
echo STEP 1 of 2: Clearing ./release folder
5
5
echo
6
6
# Clear release folder
7
7
rm -R release/*
8
8
9
-
echo STEP 2 of 3: Generating obfuscated source - automatically creating ./release folder if needed
10
-
#
11
-
# Options Notes:
12
-
# disable-console-output - causes the Chrome App to fail to launch (on background.js) or refuse to evaluate statements (parser.js and presumably others). It must be set 'false' to prevent this.
13
-
# rotate-string-array - set to false on small files, true on large files. This makes it harder to determine the order of strings, but on small files the inserted helper function can attact attention.
14
-
# string-array-encoding - further obscures strings by base-64 (or rc4) encoding them, but slows down execution by up to 50%. It also breaks the Chrome App when true; set to false.
0 commit comments