ui: state required Java version

* revised texts in application preferences and documentation to state the currently required Java version
* update deploy script on windows to use UPX with "--best" instead of "--brute"
This commit is contained in:
malte_langkabel
2016-09-01 13:40:06 +02:00
parent a014f9f7a6
commit 7271e30434
3 changed files with 15 additions and 11 deletions
+4 -4
View File
@@ -1,6 +1,6 @@
# FLAGS
REBUILD=false
OBFUSCATE=false
REBUILD=true
OBFUSCATE=true
# USEFUL VARIABLES
@@ -96,8 +96,8 @@ if [ $OBFUSCATE = true ]; then
echo -e "$INFO obfuscating the executables"
rm bin/app/Release/Coati_obfuscated.exe
rm bin/app/Release/Coati_trial_obfuscated.exe
upx --brute -o bin/app/Release/Coati_obfuscated.exe bin/app/Release/Coati.exe
upx --brute -o bin/app/Release/Coati_trial_obfuscated.exe bin/app/Release/Coati_trial.exe
upx --best -o bin/app/Release/Coati_obfuscated.exe bin/app/Release/Coati.exe
upx --best -o bin/app/Release/Coati_trial_obfuscated.exe bin/app/Release/Coati_trial.exe
else
cp bin/app/Release/Coati.exe bin/app/Release/Coati_obfuscated.exe
cp bin/app/Release/Coati_trial.exe bin/app/Release/Coati_trial_obfuscated.exe