From 72f96df644515158e709454ff1b98ee86b2481ea Mon Sep 17 00:00:00 2001 From: snake-4 <18491360+snake-4@users.noreply.github.com> Date: Wed, 24 Apr 2024 08:29:08 +0200 Subject: [PATCH] Bumped version to 2.1.0 --- README.md | 15 +++++++++++++-- build.gradle.kts | 4 ++-- update_metadata/CHANGELOG.md | 12 ++++++------ 3 files changed, 21 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d15c6dd..d367b24 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@
- A Zygisk module that hides root by unmounting suspicious mounts in user-mode.
+ A Zygisk module that aims to hide the existence root and Zygisk.
Report Bug
@@ -16,7 +16,18 @@
## About The Project
-This module creates a new transparent namespace for each application in preAppSpecialize and unmounts common root mounts.
+Using the **release** build is recommended over the debug build. Only use debug builds if you are going to make a bug report.
+
+### KernelSU & APatch users:
+1. Install ZygiskNext.
+1. Make sure the unmount setting is enabled for the target app in the KernelSU/APatch Manager.
+1. Disable `Enforce DenyList` in ZygiskNext settings if there is one.
+
+### Magisk users:
+1. Update your Magisk to 27.0 or newer for better hiding capabilities. (optional)
+1. Turn on Zygisk in Magisk settings.
+1. Turn off `Enforce DenyList` in Magisk settings.
+1. Add the target app to the deny list unless you're using a Magisk fork with a white list instead.
diff --git a/build.gradle.kts b/build.gradle.kts
index 087d584..2c7d237 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -15,5 +15,5 @@ val commitHash: String by extra {
val moduleId by extra("zygisk-assistant")
val moduleName by extra("Zygisk Assistant")
-val verName by extra("v2.0.4")
-val verCode by extra(204)
+val verName by extra("v2.1.0")
+val verCode by extra(210)
diff --git a/update_metadata/CHANGELOG.md b/update_metadata/CHANGELOG.md
index 2a0b382..38adf19 100644
--- a/update_metadata/CHANGELOG.md
+++ b/update_metadata/CHANGELOG.md
@@ -1,12 +1,12 @@
+## 2.1.0
++ Added Zygisk hide for Magisk 27.0.
++ Fixed bind mount hiding. ReVanced is fully hidden now.
++ All Systemless Hosts modules are hidden now.
++ Fixed compatibility issues with other modules.
+
## 2.0.4
+ Fixed an issue causing root to be lost.
+ Fixed potential incompatibilities with other apps.
## 2.0.3
+ Bind mounts are also hidden now.
-
-## 2.0.2
-+ Fixed Magisk compatibility.
-
-## 2.0.1
-+ Added update.json for automatic updates.