update: Zygisk Next -> ReZygisk

This commit changes the name of the project to not be the same as the original one, Zygisk Next.
This commit is contained in:
ThePedroo
2024-06-16 15:32:24 -03:00
parent b7adea736a
commit c50d89e28e
8 changed files with 15 additions and 15 deletions

View File

@@ -6,11 +6,11 @@ body:
- type: markdown
attributes:
value: |
Thanks for reporting issues for Zygisk Next!
Thanks for reporting issues for ReZygisk!
To make it easier for us to help you please enter detailed information below.
Note: We will **NEVER** handle any issue related to root detection or writable system.
感谢给 Zygisk Next 汇报问题!
感谢给 ReZygisk 汇报问题!
为了使我们更好地帮助你,请提供以下信息。
为了防止重复汇报,标题请务必使用英文。
请注意:我们**不会**处理任何有关 root 检测和 system 分区可写相关的问题。
@@ -43,7 +43,7 @@ body:
required: true
- type: input
attributes:
label: Zygisk Next version/Zygisk Next 版本
label: ReZygisk version/ReZygisk 版本
description: Don't use 'latest'. Specify actual version, otherwise your issue will be closed./不要填用“最新版”。给出具体版本号,不然 issue 会被关闭。
validations:
required: true
@@ -62,7 +62,7 @@ body:
attributes:
label: Version requirement/版本要求
options:
- label: I am using latest debug CI version of Zygisk Next and enable verbose log/我正在使用最新 CI 调试版本 Zygisk Next 且启用详细日志
- label: I am using latest debug CI version of ReZygisk and enable verbose log/我正在使用最新 CI 调试版本 ReZygisk 且启用详细日志
required: true
- type: textarea
attributes:

View File

@@ -19,8 +19,8 @@ val gitCommitCount = "git rev-list HEAD --count".execute().toInt()
val gitCommitHash = "git rev-parse --verify --short HEAD".execute()
val moduleId by extra("zygisksu")
val moduleName by extra("Zygisk Next")
val verName by extra("v4-0.9.1.1")
val moduleName by extra("ReZygisk")
val verName by extra("v1.0.0")
val verCode by extra(gitCommitCount)
val commitHash by extra(gitCommitHash)
val minKsuVersion by extra(10940)

View File

@@ -41,14 +41,14 @@ int main(int argc, char **argv) {
return 0;
}
}
printf("Zygisk Next Tracer %s\n", ZKSU_VERSION);
printf("ReZygisk Tracer %s\n", ZKSU_VERSION);
printf("Usage: %s ctl start|stop|exit\n", argv[0]);
return 1;
} else if (argc >= 2 && argv[1] == "version"sv) {
printf("Zygisk Next Tracer %s\n", ZKSU_VERSION);
printf("ReZygisk Tracer %s\n", ZKSU_VERSION);
return 0;
} else {
printf("Zygisk Next Tracer %s\n", ZKSU_VERSION);
printf("ReZygisk Tracer %s\n", ZKSU_VERSION);
printf("usage: %s monitor | trace <pid> | ctl <start|stop|exit> | version\n", argv[0]);
return 1;
}

View File

@@ -571,7 +571,7 @@ static bool prepare_environment() {
}
void init_monitor() {
LOGI("Zygisk Next %s", ZKSU_VERSION);
LOGI("ReZygisk %s", ZKSU_VERSION);
LOGI("init monitor started");
if (!prepare_environment()) {
exit(1);

View File

@@ -31,7 +31,7 @@ if [ "$BOOTMODE" ] && [ "$KSU" ]; then
if [ "$(which magisk)" ]; then
ui_print "*********************************************************"
ui_print "! Multiple root implementation is NOT supported!"
ui_print "! Please uninstall Magisk before installing Zygisk Next"
ui_print "! Please uninstall Magisk before installing ReZygisk"
abort "*********************************************************"
fi
elif [ "$BOOTMODE" ] && [ "$MAGISK_VER_CODE" ]; then
@@ -50,7 +50,7 @@ else
fi
VERSION=$(grep_prop version "${TMPDIR}/module.prop")
ui_print "- Installing Zygisk Next $VERSION"
ui_print "- Installing ReZygisk $VERSION"
# check android
if [ "$API" -lt 26 ]; then

View File

@@ -16,7 +16,7 @@ dependencyResolutionManagement {
}
}
rootProject.name = "ZygiskNext"
rootProject.name = "ReZygisk"
include(
":loader",
":module",

View File

@@ -22,7 +22,7 @@ fn start() {
companion::entry(fd);
return;
} else if args.len() == 2 && args[1] == "version" {
println!("Zygisk Next daemon {}", ZKSU_VERSION);
println!("ReZygisk daemon {}", ZKSU_VERSION);
return;
} else if args.len() == 2 && args[1] == "root" {
root_impl::setup();

View File

@@ -34,7 +34,7 @@ static CONTROLLER_SOCKET: LateInit<String> = LateInit::new();
static PATH_CP_NAME: LateInit<String> = LateInit::new();
pub fn main() -> Result<()> {
info!("Welcome to Zygisk Next ({}) !", constants::ZKSU_VERSION);
info!("Welcome to ReZygisk ({}) !", constants::ZKSU_VERSION);
TMP_PATH.init(std::env::var("TMP_PATH")?);
CONTROLLER_SOCKET.init(format!("{}/init_monitor", TMP_PATH.deref()));