diff --git a/changelog.md b/changelog.md index b403089..70938a4 100755 --- a/changelog.md +++ b/changelog.md @@ -10,6 +10,16 @@ GitHub release: [Tricky Addon: Update Target List](https://github.com/KOWX712/Tr Telegram channel: [KOW's Little World](https://t.me/kowchannel) ## Changelog +### v2.3 +- Removed curl binary +- Moved boot_hash to /data/adb to prevent overwrite +- Stop TSP-A auto target to prevent overwrite +- Abandoned action button in KernelSU and Apatch +- Magisk action button: open WebUI, automatic download if not installed (optional) + +**KSU WebUI** +- Option to select app from DenyList (Magisk) + ### v2.2 **KSU WebUI:** - Added help menu diff --git a/lite-script_only/README.md b/lite-script_only/README.md index 10a529a..297e95a 100644 --- a/lite-script_only/README.md +++ b/lite-script_only/README.md @@ -4,7 +4,7 @@ - Recommend to run with MT manager ## Changelog -### v2.1, v2.2 +### v2.1, v2.2, v2.3 - Remain same with v2.0 ### v2.0 diff --git a/lite-script_only/UpdateTargetList.sh b/lite-script_only/UpdateTargetList.sh index 0036fba..24ca58d 100644 --- a/lite-script_only/UpdateTargetList.sh +++ b/lite-script_only/UpdateTargetList.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Tricky Addon Lite: Update Target List Script v2.2 +# Tricky Addon Lite: Update Target List Script v2.3 # GitHub Repository: https://github.com/KOWX712/Tricky-Addon-Update-Target-List/blob/master/lite-script_only/README.md # Telegram channel: https://t.me/kowchannel diff --git a/module/common/get_denylist.sh b/module/common/get_denylist.sh index 6083a49..2bf25f7 100644 --- a/module/common/get_denylist.sh +++ b/module/common/get_denylist.sh @@ -13,7 +13,6 @@ awk -F'|' '{print $1}' | \ grep -v "isolated" | \ sort | uniq > "$OUTPUT" -# Check if the output file is successfully created if [ ! -s "$OUTPUT" ]; then echo "Failed to retrieve Magisk denylist or no packages found." > "$OUTPUT" exit 1 diff --git a/module/common/get_exclude-list.sh b/module/common/get_exclude-list.sh index 5838f17..a164ebe 100644 --- a/module/common/get_exclude-list.sh +++ b/module/common/get_exclude-list.sh @@ -18,7 +18,6 @@ wget --no-check-certificate -q -O - "https://raw.githubusercontent.com/KOWX712/T grep -o '"package-name": *"[^"]*"' | \ awk -F'"' '{print $4}' >> "$OUTPUT" -# Check if the output directory is empty if [ ! -s "$OUTPUT" ]; then echo "Error: Failed to fetch data." > "$OUTPUT" exit 1 diff --git a/module/module.prop b/module/module.prop index 54c2471..c3e2bc5 100644 --- a/module/module.prop +++ b/module/module.prop @@ -1,7 +1,7 @@ id=TA_utl name=Tricky Addon - Update Target List -version=v2.2 -versionCode=220 +version=v2.3 +versionCode=230 author=KOWX712 -description=Update tricky store target.txt. Custom config: ADDITION and EXCLUDE in /data/adb/tricky_store/target_list_config +description=A WebUI to conifgure tricky store target.txt updateJson=https://raw.githubusercontent.com/KOWX712/Tricky-Addon-Update-Target-List/master/update.json