From 5ed84ca304263a1532eb3005d9a972bf36cb8351 Mon Sep 17 00:00:00 2001 From: RikkaW Date: Thu, 11 Mar 2021 22:40:32 +0800 Subject: [PATCH] v24.0.1 --- riru/build.gradle | 2 +- template/magisk_module/README.md | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/riru/build.gradle b/riru/build.gradle index acffbe49..81519bdd 100644 --- a/riru/build.gradle +++ b/riru/build.gradle @@ -12,7 +12,7 @@ def gitCommitCount = Integer.parseInt('git rev-list --count HEAD'.execute([], pr def versionNameMajor = 24 def versionNameMinor = 0 -def versionNamePatch = 0 +def versionNamePatch = 1 def versionNameShort = "v${versionNameMajor}.${versionNameMinor}.${versionNamePatch}" def versionName = "${versionNameShort}.r${gitCommitCount}.${gitCommitId}" def versionCode = gitCommitCount diff --git a/template/magisk_module/README.md b/template/magisk_module/README.md index b0b969ef..e0a69563 100644 --- a/template/magisk_module/README.md +++ b/template/magisk_module/README.md @@ -22,11 +22,15 @@ Many TWRP has broken implementations, which will finally cause Riru and Riru mod ## Changelog -### v24.0.0 (2021-03-10) +### v24.0.1 (2021-03-11) + +- Fix pre-v24 modules installation + +### v24.0.0 (2021-03-11) - Unify the Riru API version and Riru version, now the API version is 24 - For modules that have adapted Riru API 24, lib files are loaded from the Magisk path directly, they don't need to be mounted to `/system` anymore -- `/data/adb/riru` is no longer used, you can remove it when all modules are update to Riru API 24 +- `/data/adb/riru/modules` is no longer used, you can remove it when all modules are update to Riru API 24 - Use git commit count as version code - Remove fallback SELinux rules, if rirud is not started, it's highly possible that the booting processes of Magisk is totally broken on your device