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

@@ -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()));