From df7dc21e35ca21e5c891b2ee419fce8d3da9ca3f Mon Sep 17 00:00:00 2001 From: KAZI MMT <82371061+kazimmt@users.noreply.github.com> Date: Sat, 2 Sep 2023 21:52:00 +0600 Subject: [PATCH 1/6] build ci --- .github/workflows/ci.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..0bca093 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,24 @@ +on: push + +jobs: + run: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Build + id: build + run: | + cd magisk + VER=$(grep version= module.prop | cut -d= -f2) + echo "VER=$VER" >> $GITHUB_OUTPUT + zip -r "../zygisk-detach-${VER}.zip" . + + - name: Upload module to release + uses: svenstaro/upload-release-action@v2 + with: + file: zygisk-detach-${{ steps.build.outputs.VER }}.zip + release_name: zygisk-${{ steps.build.outputs.VER }} + tag: ${{ steps.build.outputs.VER }} + overwrite: true From 5a0520dcabfba826b123c07f3baa7b0f0f20308b Mon Sep 17 00:00:00 2001 From: KAZI MMT <82371061+kazimmt@users.noreply.github.com> Date: Sat, 2 Sep 2023 21:56:21 +0600 Subject: [PATCH 2/6] update gitignore --- .gitignore | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 232cebc..2cc9cf8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,20 @@ +*.iml +gen/ +bin/ +build/ +.gradle/ +.idea/ +user.gradle +local.properties +.directory + +.settings +.classpath +.project + *.zip *.so *.sh test* magisk/system/bin/* -fast-memmem \ No newline at end of file +fast-memmem From 38782b9c00ac695fc84ff6c72f50997cf3eb22e4 Mon Sep 17 00:00:00 2001 From: KAZI MMT <82371061+kazimmt@users.noreply.github.com> Date: Sat, 2 Sep 2023 21:56:40 +0600 Subject: [PATCH 3/6] add detach.bin yt & ytm package by default --- magisk/detach.bin | Bin 0 -> 132 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 magisk/detach.bin diff --git a/magisk/detach.bin b/magisk/detach.bin new file mode 100644 index 0000000000000000000000000000000000000000..91e5c350fc055eec3685e7cc25f7f11a99a67d11 GIT binary patch literal 132 zcmeZdU|>jQ$Y;o9&|^pk()mC#hanZnOJvAnNMR@fiev(55WfHji-D|4pjatG2@ofN SRptU&#Xwcb#zY&2VgvwNa~T!@ literal 0 HcmV?d00001 From 2fbcc655c3ce8e666810084809887d70d61fa4db Mon Sep 17 00:00:00 2001 From: KAZI MMT <82371061+kazimmt@users.noreply.github.com> Date: Sat, 2 Sep 2023 21:59:01 +0600 Subject: [PATCH 4/6] bump 1.3 --- magisk/customize.sh | 2 ++ magisk/module.prop | 6 +++--- update.json | 8 ++++---- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/magisk/customize.sh b/magisk/customize.sh index 8b2e2d8..b16a5f3 100644 --- a/magisk/customize.sh +++ b/magisk/customize.sh @@ -17,3 +17,5 @@ else fi ui_print " by j-hc (github.com/j-hc)" + +ui_print " Thanks from ReVanced | MMT" diff --git a/magisk/module.prop b/magisk/module.prop index 3a4751a..5195c2f 100755 --- a/magisk/module.prop +++ b/magisk/module.prop @@ -1,7 +1,7 @@ id=zygisk-detach name=zygisk-detach -version=v1.2 -versionCode=3 +version=v1.3 +versionCode=4 author=j-hc description=Detaches installed apps from Play Store -updateJson=https://raw.githubusercontent.com/j-hc/zygisk-detach/master/update.json +updateJson=https://raw.githubusercontent.com/kazimmt/zygisk-detach/master/update.json diff --git a/update.json b/update.json index 8d5ec5a..8e252d5 100644 --- a/update.json +++ b/update.json @@ -1,6 +1,6 @@ { - "version": "v1.2", - "versionCode": 3, - "zipUrl": "https://github.com/j-hc/zygisk-detach/releases/latest/download/zygisk-detach-v1.2.zip", - "changelog": "https://raw.githubusercontent.com/j-hc/zygisk-detach/master/README.md" + "version": "v1.3", + "versionCode": 4, + "zipUrl": "https://github.com/kazimmt/zygisk-detach/releases/latest/download/zygisk-detach-v1.3.zip", + "changelog": "https://raw.githubusercontent.com/kazimmt/zygisk-detach/master/README.md" } \ No newline at end of file From 1e794198259da32a4b500829512c3e47e516d4d4 Mon Sep 17 00:00:00 2001 From: KAZI MMT <82371061+kazimmt@users.noreply.github.com> Date: Sat, 2 Sep 2023 22:18:50 +0600 Subject: [PATCH 5/6] link ZygiskOnKernelSU --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 61401d1..b2db351 100644 --- a/README.md +++ b/README.md @@ -6,11 +6,11 @@ Detaches installed apps from Play Store against its aggressive updating policy w Hooks libbinder with zygisk instead of applying SQL queries to database files ### Usage -* Enable zygisk in magisk or ZygiskOnKernelSU module if you are using KernelSU +* Enable **zygisk** in magisk or [ZygiskOnKernelSU](https://github.com/Dr-TSNG/ZygiskOnKernelSU/releases/tag/v4-0.7.1) module if you are using **KernelSU** * Flash zygisk-detach module * Reboot * Run helper cli in termux: - `$ detach` or `$ su -c detach` + `$ detach` or `$ su -c detach` * Select apps you wish to detach. Changes are applied immediately, no need to reboot. ### Notes From d0b8c0e4ac0d173b678988d347c3d70889bf94a2 Mon Sep 17 00:00:00 2001 From: KAZI MMT <82371061+kazimmt@users.noreply.github.com> Date: Sat, 2 Sep 2023 23:07:40 +0600 Subject: [PATCH 6/6] bump 1.4 --- magisk/module.prop | 4 ++-- update.json | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/magisk/module.prop b/magisk/module.prop index 5195c2f..1b509fb 100755 --- a/magisk/module.prop +++ b/magisk/module.prop @@ -1,7 +1,7 @@ id=zygisk-detach name=zygisk-detach -version=v1.3 -versionCode=4 +version=v1.4 +versionCode=5 author=j-hc description=Detaches installed apps from Play Store updateJson=https://raw.githubusercontent.com/kazimmt/zygisk-detach/master/update.json diff --git a/update.json b/update.json index 7e00284..803455c 100644 --- a/update.json +++ b/update.json @@ -1,6 +1,6 @@ { - "version": "v1.3", - "versionCode": 4, - "zipUrl": "https://github.com/j-hc/zygisk-detach/releases/latest/download/zygisk-detach-v1.3.zip", - "changelog": "https://raw.githubusercontent.com/j-hc/zygisk-detach/master/README.md" + "version": "v1.4", + "versionCode": 5, + "zipUrl": "https://github.com/kazimmt/zygisk-detach/releases/latest/download/zygisk-detach-v1.4.zip", + "changelog": "https://raw.githubusercontent.com/kazimmt/zygisk-detach/master/README.md" } \ No newline at end of file