update: module id

Historically "zygisksu" is the ZygiskOnKernelSU (known as Zygisk Next) module id, which due to ReZygisk being a fork of Zygisk Next, was used by it. To avoid conflicts in systems like MMRL, we decided to change it to "rezygisk". This, however, will allow both to be installed in the same system, although causing problems, as a side effect. The old module, with the old module id, must be uninstalled while the new one is installed.

closes #113
This commit is contained in:
ThePedroo
2025-05-18 20:06:06 -03:00
parent ed347e879e
commit 98f88916b8
5 changed files with 11 additions and 11 deletions

View File

@@ -49,7 +49,7 @@ export async function getTranslations(locate) {
}
export async function getAvailableLanguages() {
const lsCmd = await exec('ls /data/adb/modules/zygisksu/webroot/lang')
const lsCmd = await exec('ls /data/adb/modules/rezygisk/webroot/lang')
if (lsCmd.errno !== 0) return setError('WebUI', lsCmd.stderr)

View File

@@ -18,13 +18,13 @@ const monitor_status = document.getElementById('monitor_status');
monitor_status.innerHTML = translations.page.actions.status.tracing
exec('/data/adb/modules/zygisksu/bin/zygisk-ptrace64 ctl start')
exec('/data/adb/modules/rezygisk/bin/zygisk-ptrace64 ctl start')
})
monitor_stop.addEventListener('click', () => {
monitor_status.innerHTML = translations.page.actions.status.exiting
exec('/data/adb/modules/zygisksu/bin/zygisk-ptrace64 ctl exit')
exec('/data/adb/modules/rezygisk/bin/zygisk-ptrace64 ctl exit')
})
monitor_pause.addEventListener('click', () => {
@@ -32,7 +32,7 @@ const monitor_status = document.getElementById('monitor_status');
monitor_status.innerHTML = translations.page.actions.status.stopped
exec('/data/adb/modules/zygisksu/bin/zygisk-ptrace64 ctl stop')
exec('/data/adb/modules/rezygisk/bin/zygisk-ptrace64 ctl stop')
})
}
})()