You've already forked Tricky-Addon-Update-Target-List
mirror of
https://github.com/KOWX712/Tricky-Addon-Update-Target-List.git
synced 2025-09-06 06:37:09 +00:00
migrate to main
This commit is contained in:
@@ -30,7 +30,7 @@ A **KSU WebUI** to configure tricky store target.txt
|
|||||||
- MT manager is recommened for this method
|
- MT manager is recommened for this method
|
||||||
|
|
||||||
## Translation
|
## Translation
|
||||||
- Read [Translation Guide](https://github.com/KOWX712/Tricky-Addon-Update-Target-List/tree/master/module/webroot/locales/A-translate.md)
|
- Read [Translation Guide](https://github.com/KOWX712/Tricky-Addon-Update-Target-List/blob/main/module/webroot/locales/A-translate.md)
|
||||||
|
|
||||||
## Acknowledgement
|
## Acknowledgement
|
||||||
- [j-hc/zygisk-detach](https://github.com/j-hc/zygisk-detach) - KSU WebUI template
|
- [j-hc/zygisk-detach](https://github.com/j-hc/zygisk-detach) - KSU WebUI template
|
||||||
@@ -38,6 +38,6 @@ A **KSU WebUI** to configure tricky store target.txt
|
|||||||
## Links
|
## Links
|
||||||
Download: [GitHub release](https://github.com/KOWX712/Tricky-Addon-Update-Target-List/releases)
|
Download: [GitHub release](https://github.com/KOWX712/Tricky-Addon-Update-Target-List/releases)
|
||||||
|
|
||||||
Update log: Read [ChangeLog](https://github.com/KOWX712/Tricky-Addon-Update-Target-List/blob/master/changelog.md)
|
Update log: Read [ChangeLog](https://github.com/KOWX712/Tricky-Addon-Update-Target-List/blob/main/changelog.md)
|
||||||
|
|
||||||
Telegram channel: [KOW's Little World](https://t.me/kowchannel)
|
Telegram channel: [KOW's Little World](https://t.me/kowchannel)
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ Telegram channel: [KOW's Little World](https://t.me/kowchannel)
|
|||||||
### v2.2
|
### v2.2
|
||||||
**KSU WebUI:**
|
**KSU WebUI:**
|
||||||
- Added help menu
|
- Added help menu
|
||||||
- Added extra [unnecessary app](https://raw.githubusercontent.com/KOWX712/Tricky-Addon-Update-Target-List/master/more-excldue.json) exclude option
|
- Added extra [unnecessary app](https://raw.githubusercontent.com/KOWX712/Tricky-Addon-Update-Target-List/main/more-excldue.json) exclude option
|
||||||
- Added no Internet connection prompt
|
- Added no Internet connection prompt
|
||||||
|
|
||||||
### v2.1
|
### v2.1
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ find_busybox
|
|||||||
check_wget
|
check_wget
|
||||||
|
|
||||||
# Fetch additional package names
|
# Fetch additional package names
|
||||||
wget --no-check-certificate -q -O - "https://raw.githubusercontent.com/KOWX712/Tricky-Addon-Update-Target-List/master/more-excldue.json" 2>/dev/null | \
|
wget --no-check-certificate -q -O - "https://raw.githubusercontent.com/KOWX712/Tricky-Addon-Update-Target-List/main/more-excldue.json" 2>/dev/null | \
|
||||||
grep -o '"package-name": *"[^"]*"' | \
|
grep -o '"package-name": *"[^"]*"' | \
|
||||||
awk -F'"' '{print $4}' > "$OUTPUT"
|
awk -F'"' '{print $4}' > "$OUTPUT"
|
||||||
|
|
||||||
@@ -30,14 +30,14 @@ pm list packages -3 </dev/null 2>&1 | cat | awk -F: '{print $2}' | while read -
|
|||||||
done
|
done
|
||||||
|
|
||||||
if [ "$skipfetch" != "true" ]; then
|
if [ "$skipfetch" != "true" ]; then
|
||||||
wget --no-check-certificate -qO "$KBOUTPUT" "https://raw.githubusercontent.com/KOWX712/Tricky-Addon-Update-Target-List/master/.extra"
|
wget --no-check-certificate -qO "$KBOUTPUT" "https://raw.githubusercontent.com/KOWX712/Tricky-Addon-Update-Target-List/main/.extra"
|
||||||
|
|
||||||
if [ ! -s "$KBOUTPUT" ]; then
|
if [ ! -s "$KBOUTPUT" ]; then
|
||||||
rm -f "$KBOUTPUT"
|
rm -f "$KBOUTPUT"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -d "$MODPATH/temp" ]; then
|
if [ -d "$MODPATH/temp" ]; then
|
||||||
JSON=$(wget --no-check-certificate -q -O - "https://raw.githubusercontent.com/KOWX712/Tricky-Addon-Update-Target-List/master/update.json")
|
JSON=$(wget --no-check-certificate -q -O - "https://raw.githubusercontent.com/KOWX712/Tricky-Addon-Update-Target-List/main/update.json")
|
||||||
REMOTE_VERSION=$(echo "$JSON" | grep -o '"versionCode": *[0-9]*' | awk -F: '{print $2}' | tr -d ' ')
|
REMOTE_VERSION=$(echo "$JSON" | grep -o '"versionCode": *[0-9]*' | awk -F: '{print $2}' | tr -d ' ')
|
||||||
LOCAL_VERSION=$(grep -o 'versionCode=[0-9]*' "$MODPATH/temp/module.prop" | awk -F= '{print $2}')
|
LOCAL_VERSION=$(grep -o 'versionCode=[0-9]*' "$MODPATH/temp/module.prop" | awk -F= '{print $2}')
|
||||||
if [ "$REMOTE_VERSION" -gt "$LOCAL_VERSION" ]; then
|
if [ "$REMOTE_VERSION" -gt "$LOCAL_VERSION" ]; then
|
||||||
|
|||||||
@@ -4,4 +4,4 @@ version=v2.6-beta.3
|
|||||||
versionCode=250
|
versionCode=250
|
||||||
author=KOWX712
|
author=KOWX712
|
||||||
description=A WebUI to conifgure tricky store target.txt
|
description=A WebUI to conifgure tricky store target.txt
|
||||||
updateJson=https://raw.githubusercontent.com/KOWX712/Tricky-Addon-Update-Target-List/master/update.json
|
updateJson=https://raw.githubusercontent.com/KOWX712/Tricky-Addon-Update-Target-List/main/update.json
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"description": "Unnecessary app list",
|
"description": "Unnecessary app list",
|
||||||
"repo-link": "https://github.com/KOWX712/Tricky-Addon-Update-Target-List",
|
"repo-link": "https://github.com/KOWX712/Tricky-Addon-Update-Target-List",
|
||||||
"json-link": "https://raw.githubusercontent.com/KOWX712/Tricky-Addon-Update-Target-List/master/more-excldue.json",
|
"json-link": "https://raw.githubusercontent.com/KOWX712/Tricky-Addon-Update-Target-List/main/more-excldue.json",
|
||||||
"data": [
|
"data": [
|
||||||
{
|
{
|
||||||
"info": "Root manager",
|
"info": "Root manager",
|
||||||
|
|||||||
@@ -2,5 +2,5 @@
|
|||||||
"versionCode": 250,
|
"versionCode": 250,
|
||||||
"version": "v2.5",
|
"version": "v2.5",
|
||||||
"zipUrl": "https://github.com/KOWX712/Tricky-Addon-Update-Target-List/releases/download/v2.5/TrickyAddonModule-v2.5.zip",
|
"zipUrl": "https://github.com/KOWX712/Tricky-Addon-Update-Target-List/releases/download/v2.5/TrickyAddonModule-v2.5.zip",
|
||||||
"changelog": "https://raw.githubusercontent.com/KOWX712/Tricky-Addon-Update-Target-List/master/changelog.md"
|
"changelog": "https://raw.githubusercontent.com/KOWX712/Tricky-Addon-Update-Target-List/main/changelog.md"
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user