Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
topjohnwu committed Dec 25, 2017
1 parent b2483ba commit de2285d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "com.topjohnwu.magisk"
minSdkVersion 21
targetSdkVersion 27
versionCode 80
versionName "5.5.0"
versionCode 82
versionName "5.5.1"
ndk {
moduleName 'zipadjust'
abiFilters 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a'
Expand Down
3 changes: 3 additions & 0 deletions src/main/assets/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### v5.5.1
- Fix an issue in setting up superuser database

### v5.5.0
- Fix dynamic resource loading, prevent crashes when checking SafetyNet
- Update SignAPK to use very little RAM for supporting old devices
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/topjohnwu/magisk/FlashActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void reboot() {
void saveLogs() {
Calendar now = Calendar.getInstance();
String filename = String.format(Locale.US,
"install_log_%04d%02d%02d_%02d:%02d:%02d.log",
"install_log_%04d%02d%02d_%02d%02d%02d.log",
now.get(Calendar.YEAR), now.get(Calendar.MONTH) + 1,
now.get(Calendar.DAY_OF_MONTH), now.get(Calendar.HOUR_OF_DAY),
now.get(Calendar.MINUTE), now.get(Calendar.SECOND));
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/topjohnwu/magisk/MagiskLogFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ protected Object doInBackground(Object... params) {
switch (mode) {
case 0:
StringBuildingList logList = new StringBuildingList();
Shell.su(logList, "cat " + Const.MAGISK_LOG + " | tail -n 1000");
Shell.su(logList, "cat " + Const.MAGISK_LOG + " | tail -n 5000");
return logList.getCharSequence();

case 1:
Expand All @@ -125,7 +125,7 @@ protected Object doInBackground(Object... params) {
case 2:
Calendar now = Calendar.getInstance();
String filename = String.format(Locale.US,
"magisk_log_%04d%02d%02d_%02d:%02d:%02d.log",
"magisk_log_%04d%02d%02d_%02d%02d%02d.log",
now.get(Calendar.YEAR), now.get(Calendar.MONTH) + 1,
now.get(Calendar.DAY_OF_MONTH), now.get(Calendar.HOUR_OF_DAY),
now.get(Calendar.MINUTE), now.get(Calendar.SECOND));
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/topjohnwu/magisk/utils/Const.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public static class Url {
public static final String FILE_URL = "https://raw.githubusercontent.com/Magisk-Modules-Repo/%s/master/%s";
public static final String ZIP_URL = "https://github.com/Magisk-Modules-Repo/%s/archive/master.zip";
public static final String DONATION_URL = "https://www.paypal.me/topjohnwu";
public static final String XDA_THREAD = "http://forum.xda-developers.com/showthread.php?t=3432382";
public static final String XDA_THREAD = "http://forum.xda-developers.com/showthread.php?t=3473445";
public static final String SOURCE_CODE_URL = "https://github.com/topjohnwu/MagiskManager";
}

Expand Down

0 comments on commit de2285d

Please sign in to comment.