Bump to 0.7.0

This commit is contained in:
Nullptr
2023-06-04 11:10:04 +08:00
parent 954a712089
commit bea5ed47b8
3 changed files with 8 additions and 8 deletions
+3 -3
View File
@@ -2,7 +2,7 @@
Zygisk loader for KernelSU, allowing Zygisk modules to run without Magisk environment. Zygisk loader for KernelSU, allowing Zygisk modules to run without Magisk environment.
Also works as standalone loader for Magisk on purpose of getting rid of LD_PRELOAD. Also works as standalone loader for Magisk.
## Requirements ## Requirements
@@ -12,8 +12,8 @@ Also works as standalone loader for Magisk on purpose of getting rid of LD_PRELO
### KernelSU ### KernelSU
+ Minimal KernelSU version: 10654 + Minimal KernelSU version: 10940
+ Minimal ksud version: 10670 + Minimal ksud version: 10942
+ Kernel has full SELinux patch support + Kernel has full SELinux patch support
### Magisk ### Magisk
+3 -3
View File
@@ -31,10 +31,10 @@ val gitCommitHash = "git rev-parse --verify --short HEAD".execute()
val moduleId by extra("zygisksu") val moduleId by extra("zygisksu")
val moduleName by extra("Zygisk on KernelSU") val moduleName by extra("Zygisk on KernelSU")
val verName by extra("v4-0.6.5") val verName by extra("v4-0.7.0")
val verCode by extra(gitCommitCount) val verCode by extra(gitCommitCount)
val minKsuVersion by extra(10818) val minKsuVersion by extra(10940)
val minKsudVersion by extra(10818) val minKsudVersion by extra(10942)
val maxKsuVersion by extra(20000) val maxKsuVersion by extra(20000)
val minMagiskVersion by extra(25208) val minMagiskVersion by extra(25208)
+2 -2
View File
@@ -45,8 +45,8 @@ androidComponents.onVariants { variant ->
include("module.prop") include("module.prop")
expand( expand(
"moduleId" to moduleId, "moduleId" to moduleId,
"moduleName" to "$moduleName-$variantCapped", "moduleName" to moduleName,
"versionName" to "$verName ($verCode)-($variantCapped)", "versionName" to "$verName ($verCode-$variantLowered)",
"versionCode" to verCode, "versionCode" to verCode,
) )
} }