updated changes, removed license from usage output

This commit is contained in:
Connor Tumbleson 2013-03-21 05:44:58 -05:00
parent 82eb3af7e7
commit 43993551bd
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,6 @@
v2.0.0 (TBA)
-Fixed (issue #8) - Correctly uses -c to retain original manifest and META-INF. Thanks M1cha
-Fixed (issue #403) - Uses new usage output to cleanup organization of features.
v1.5.3 (TBA)
-Updated to smali/baksmali to v1.4.2

View File

@ -432,13 +432,12 @@ public class Main {
// print out license info prior to formatter.
System.out.println(
"Apktool v" + Androlib.getVersion() + " - a tool for reengineering Android apk files\n" +
"Copyright 2010 Ryszard Wiśniewski <brut.alll@gmail.com>\n" +
"Updated by @iBotPeaches <connor.tumbleson@gmail.com> \n" +
"with smali v" + ApktoolProperties.get("smaliVersion") +
" and baksmali v" + ApktoolProperties.get("baksmaliVersion") + "\n" +
"Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)\n");
"Copyright 2010 Ryszard Wiśniewski <brut.alll@gmail.com>\n" +
"Updated by Connor Tumbleson <connor.tumbleson@gmail.com> \n" );
// two different outputs for build / decode
// 4 usage outputs (general, frameworks, decode, build)
formatter.printHelp("apktool " + verbosityHelp(), normalOptions);
formatter.printHelp("apktool " + verbosityHelp() + "if|install-framework [options] <framework.apk>", frameOptions);
formatter.printHelp("apktool " + verbosityHelp() + "d[ecode] [options] <file_apk>", DecodeOptions);