diff --git a/README.md b/README.md index 7507aad..aed1f11 100644 --- a/README.md +++ b/README.md @@ -5,19 +5,19 @@ https://forum.xda-developers.com/mi-9t/how-to/magisk-module-systemless-debloater-t4180083 ### Links [Source] -https://github.com/Magisk-Modules-Alt-Repo/SystemlessDebloater +https://github.com/zgfg/SystemlessDebloater ### Description Select and systemlessly debloat preinstalled system apps. Supporting up to System As Root (SAR), Dynamic partitions and Android 12. Module must be installed through Magisk app, not TWRP - please read OP instructions in the XDA thread: https://forum.xda-developers.com/mi-9t/how-to/magisk-module-systemless-debloater-t4180083 -My repo (old): +My repo: ![GitHub release (latest by date)](https://img.shields.io/github/v/release/zgfg/SystemlessDebloater?label=Release&style=plastic) ![GitHub Release Date](https://img.shields.io/github/release-date/zgfg/SystemlessDebloater?label=Release%20Date&style=plastic) ![GitHub Releases](https://img.shields.io/github/downloads/zgfg/SystemlessDebloater/latest/total?label=Downloads%20%28Latest%20Release%29&style=plastic) ![GitHub All Releases](https://img.shields.io/github/downloads/zgfg/SystemlessDebloater/total?label=Total%20Downloads%20%28All%20Releases%29&style=plastic) -Alt-Repo (new): +Alt-Repo: ![GitHub release (latest by date)](https://img.shields.io/github/v/release/Magisk-Modules-Alt-Repo/SystemlessDebloater?label=Release&style=plastic) ![GitHub Release Date](https://img.shields.io/github/release-date/Magisk-Modules-Alt-Repo/SystemlessDebloater?label=Release%20Date&style=plastic) ![GitHub Releases](https://img.shields.io/github/downloads/Magisk-Modules-Alt-Repo/SystemlessDebloater/latest/total?label=Downloads%20%28Latest%20Release%29&style=plastic) diff --git a/customize.sh b/customize.sh index 456a89d..b558d9f 100644 --- a/customize.sh +++ b/customize.sh @@ -2,6 +2,7 @@ # Installation script customize.sh for Magisk Module Systemless Debloater (REPLACE). # XDA thread: https://forum.xda-developers.com/mi-9t/how-to/magisk-module-systemless-debloater-t4180083 +# GitHub source: https://github.com/zgfg/SystemlessDebloater # Module debloates /system, /system_ext, /product, /vendor and /india apps by searching (at the time of module installation) and listing their paths to the Magisk Module Installer REPLACE variable. # Magisk then creates local system tree that will be (systemlessly) overlaid into the /system at every (re)boot. # It can be used for any Android - just add/remove your unwanted stock app names to /Download/SystemlessDebloaterList.sh script on Internal memory, (re)install the module and reboot. @@ -19,7 +20,7 @@ MyFolder=/storage/emulated/0/Download # MyFolder=/sdcard/Download # Module's version -MyVersion=v1.4.6 +MyVersion=v1.4.7 # Log file LogFile=$MyFolder/SystemlessDebloater.log @@ -45,6 +46,11 @@ if [ ! -z "$Prop" ] && [ "$Prop" ] then LogLine=$LogLine' A/B' fi +Prop=$(getprop ro.boot.slot_suffix) +if [ ! -z "$Prop" ] && [ "$Prop" ] +then + LogLine=$LogLine" ($Prop)" +fi echo "$LogLine" echo "$LogLine" >> $LogFile LogLine=$(magisk -c) diff --git a/module.prop b/module.prop index 006d7b4..d83ea55 100644 --- a/module.prop +++ b/module.prop @@ -1,8 +1,8 @@ id=SystemlessDebloater name=Systemless Debloater (REPLACE) -version=1.4.6 -versionCode=146 +version=1.4.7 +versionCode=147 author=zgfg @ xda support=https://forum.xda-developers.com/mi-9t/how-to/magisk-module-systemless-debloater-t4180083 -updateJson=https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/SystemlessDebloater/main/update.json +updateJson=https://raw.githubusercontent.com/zgfg/SystemlessDebloater/main/update.json description=Select and debloat preinstalled system apps. Supported up to SAR, Dynamic partitions and A12. Module must be installed through Magisk app, not TWRP - see OP instructions in the XDA thread.