From bea5ed47b8b21f4f64fc139d32b758320eeb630a Mon Sep 17 00:00:00 2001 From: Nullptr Date: Sun, 4 Jun 2023 11:10:04 +0800 Subject: [PATCH] Bump to 0.7.0 --- README.md | 6 +++--- build.gradle.kts | 6 +++--- module/build.gradle.kts | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 547bb5e..30bf14a 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ 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 @@ -12,8 +12,8 @@ Also works as standalone loader for Magisk on purpose of getting rid of LD_PRELO ### KernelSU -+ Minimal KernelSU version: 10654 -+ Minimal ksud version: 10670 ++ Minimal KernelSU version: 10940 ++ Minimal ksud version: 10942 + Kernel has full SELinux patch support ### Magisk diff --git a/build.gradle.kts b/build.gradle.kts index 544c0ce..769de7f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -31,10 +31,10 @@ val gitCommitHash = "git rev-parse --verify --short HEAD".execute() val moduleId by extra("zygisksu") 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 minKsuVersion by extra(10818) -val minKsudVersion by extra(10818) +val minKsuVersion by extra(10940) +val minKsudVersion by extra(10942) val maxKsuVersion by extra(20000) val minMagiskVersion by extra(25208) diff --git a/module/build.gradle.kts b/module/build.gradle.kts index 1e9391a..be720a7 100644 --- a/module/build.gradle.kts +++ b/module/build.gradle.kts @@ -45,8 +45,8 @@ androidComponents.onVariants { variant -> include("module.prop") expand( "moduleId" to moduleId, - "moduleName" to "$moduleName-$variantCapped", - "versionName" to "$verName ($verCode)-($variantCapped)", + "moduleName" to moduleName, + "versionName" to "$verName ($verCode-$variantLowered)", "versionCode" to verCode, ) }