Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
topjohnwu committed Feb 21, 2018
1 parent 41f47ac commit 4d5a9f6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
6 changes: 3 additions & 3 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 103
versionName "5.6.0"
versionCode 105
versionName "5.6.1"
javaCompileOptions {
annotationProcessorOptions {
argument('butterknife.debuggable', 'false')
Expand Down Expand Up @@ -46,7 +46,7 @@ repositories {
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation project(':utils')
implementation 'com.github.topjohnwu:libsu:1.1.0'
implementation 'com.github.topjohnwu:libsu:1.1.1'
implementation 'com.android.support:recyclerview-v7:27.0.2'
implementation 'com.android.support:cardview-v7:27.0.2'
implementation 'com.android.support:design:27.0.2'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/topjohnwu/magisk/MagiskManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public void onCreate() {
Shell.setInitializer(new Shell.Initializer() {
@Override
public void onRootShellInit(@NonNull Shell shell) {
try (InputStream utils = MagiskManager.get().getAssets().open(Const.UTIL_FUNCTIONS);
try (InputStream utils = getAssets().open(Const.UTIL_FUNCTIONS);
InputStream sudb = getResources().openRawResource(R.raw.sudb)) {
shell.loadInputStream(null, null, utils);
shell.loadInputStream(null, null, sudb);
Expand Down
9 changes: 4 additions & 5 deletions src/main/res/raw/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
### v5.6.0
- Remove JNI requirement, Magisk Manager is now pure Java
- Update the method of handling su database, may fix the issue that root requests won't save
- Add the option to restore Magisk Manager after repackaging with random package name
- Massive under-the-hood optimizations
### v5.6.1
- Fix database crashes on F2FS with SQLite 3.21.0+
- Optimize several settings options
- Use native XML for settings migration

0 comments on commit 4d5a9f6

Please sign in to comment.