Skip to content

Commit ed209e3

Browse files
authored
Add files via upload
1 parent 554a34c commit ed209e3

File tree

4 files changed

+28
-11
lines changed

4 files changed

+28
-11
lines changed

changelog.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
1+
#### v1.4.8
2+
3+
Verbose logging by default: logging all not debloated stock system apps
4+
5+
#### v1.4.7
6+
7+
Logging additional info about SAR devices
8+
19
#### v1.4.6
210

311
Configurable list of SAR partitions to debloat
412

513
#### v1.4.5
614

7-
Support for module's Update in Magisk 23018
15+
Support for module's Update in Magisk 24000
816

917
#### v1.4.4
1018

customize.sh

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
# Installation script customize.sh for Magisk Module Systemless Debloater (REPLACE).
44
# XDA thread: https://forum.xda-developers.com/mi-9t/how-to/magisk-module-systemless-debloater-t4180083
5+
# GitHub source: https://github.com/zgfg/SystemlessDebloater
56
# 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.
67
# Magisk then creates local system tree that will be (systemlessly) overlaid into the /system at every (re)boot.
78
# 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
1920
# MyFolder=/sdcard/Download
2021

2122
# Module's version
22-
MyVersion=v1.4.6
23+
MyVersion=v1.4.8
2324

2425
# Log file
2526
LogFile=$MyFolder/SystemlessDebloater.log
@@ -45,6 +46,11 @@ if [ ! -z "$Prop" ] && [ "$Prop" ]
4546
then
4647
LogLine=$LogLine' A/B'
4748
fi
49+
Prop=$(getprop ro.boot.slot_suffix)
50+
if [ ! -z "$Prop" ] && [ "$Prop" ]
51+
then
52+
LogLine=$LogLine" ($Prop)"
53+
fi
4854
echo "$LogLine"
4955
echo "$LogLine" >> $LogFile
5056
LogLine=$(magisk -c)
@@ -61,7 +67,7 @@ DebloatList=""
6167
DebloatedList=""
6268

6369
# Verbose logging
64-
VerboseLog=""
70+
VerboseLog="true"
6571

6672
# Searching for possible several instances of system apps for debloating
6773
MultiDebloat="true"

module.prop

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
id=SystemlessDebloater
22
name=Systemless Debloater (REPLACE)
3-
version=1.4.6
4-
versionCode=146
5-
author=zgfg @ xda
3+
version=1.4.8
4+
versionCode=148
5+
author=zgfg @ xda
6+
7+
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.
8+
69
support=https://forum.xda-developers.com/mi-9t/how-to/magisk-module-systemless-debloater-t4180083
10+
711
updateJson=https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/SystemlessDebloater/main/update.json
8-
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.

update.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"versionCode": 147,
3-
"version": "v1.4.7",
4-
"zipUrl": "https://github.com/zgfg/SystemlessDebloater/releases/download/147/SystemlessDebloater_v1.4.7.zip",
5-
"changelog": "https://raw.githubusercontent.com/zgfg/SystemlessDebloater/main/changelog.md"
2+
"versionCode": 148,
3+
"version": "v1.4.8",
4+
"zipUrl": "https://github.com/Magisk-Modules-Alt-Repo/SystemlessDebloater/releases/download/148/SystemlessDebloater_v1.4.8.zip",
5+
"changelog": "https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/SystemlessDebloater/main/changelog.md"
66
}

0 commit comments

Comments
 (0)