Improvements

- `MAGISK_OUTDATED` is now pointed to Magisk releases
- Install module button is now at top
pull/107/head
DerGoogler 2 years ago
parent eedf3cab3e
commit 841e414b6e

@ -41,7 +41,7 @@ public enum NotificationType implements NotificationTypeCst {
}
},
MAGISK_OUTDATED(R.string.magisk_outdated, R.drawable.ic_baseline_update_24, v -> {
IntentHelper.openUrl(v.getContext(), "https://github.com/topjohnwu/Magisk");
IntentHelper.openUrl(v.getContext(), "https://github.com/topjohnwu/Magisk/releases");
}) {
@Override
public boolean shouldRemove() {
@ -118,7 +118,7 @@ public enum NotificationType implements NotificationTypeCst {
InstallerInitializer.peekMagiskPath() == null);
}
});
}, true) {
}, false) {
@Override
public boolean shouldRemove() {
return !BuildConfig.DEBUG &&

Loading…
Cancel
Save