Skip to content

Commit

Permalink
Merge branch 'RROrg:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
offsoc authored Jan 27, 2025
2 parents 3488715 + 545bc2a commit 26229a4
Show file tree
Hide file tree
Showing 12 changed files with 5 additions and 27 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
25.1.3
25.1.4
20 changes: 0 additions & 20 deletions docs/addons.json
Original file line number Diff line number Diff line change
Expand Up @@ -559,26 +559,6 @@
"zh_TW": "還原插件修改."
}
},
"rndis": {
"system": true,
"description": {
"en_US": "Android USB Network Adapter.",
"ar_SA": "محول شبكة USB لنظام Android.",
"de_DE": "Android USB-Netzwerkadapter.",
"es_ES": "Adaptador de red USB de Android.",
"fr_FR": "Adaptateur réseau USB Android.",
"ja_JP": "Android USB ネットワークアダプター",
"ko_KR": "안드로이드 USB 네트워크 어댑터.",
"ru_RU": "Адаптер сети USB для Android.",
"th_TH": "อะแดปเตอร์เครือข่าย USB สำหรับ Android",
"tr_TR": "Android USB Ağ Adaptörü.",
"uk_UA": "Адаптер мережі USB для Android.",
"vi_VN": "Bộ chuyển đổi mạng USB Android.",
"zh_CN": "Android USB 网络适配器.",
"zh_HK": "Android USB 網路適配器",
"zh_TW": "Android USB 網路介面卡."
}
},
"sensors": {
"system": false,
"description": {
Expand Down
Binary file modified docs/addons.xlsx
Binary file not shown.
Binary file modified docs/models.xlsx
Binary file not shown.
Binary file modified docs/modules.xlsx
Binary file not shown.
Binary file modified docs/pats.xlsx
Binary file not shown.
2 changes: 1 addition & 1 deletion files/initrd/opt/rr/include/consts.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
RR_VERSION="25.1.3"
RR_VERSION="25.1.4"
RR_RELEASE=""
RR_TITLE="RR v${RR_VERSION}"

Expand Down
1 change: 0 additions & 1 deletion files/initrd/opt/rr/include/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ def getmodels(platforms=None):
req = session.get(url, timeout=10, verify=False)
req.encoding = "utf-8"
p = re.compile(r"<mUnique>(.*?)</mUnique>.*?<mLink>(.*?)</mLink>", re.MULTILINE | re.DOTALL)

data = p.findall(req.text)
for item in data:
if not "DSM" in item[1]:
Expand Down
2 changes: 1 addition & 1 deletion files/initrd/opt/rr/include/functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ function connectwlanif() {
kill -9 "$(cat /var/run/wpa_supplicant.pid.${1})"
rm -f "/var/run/wpa_supplicant.pid.${1}"
fi
wpa_supplicant -i "${1}" -c "${CONF}" -B -P "/var/run/wpa_supplicant.pid.${1}" >/dev/null 2>&1
wpa_supplicant -i "${1}" -c "${CONF}" -qq -B -P "/var/run/wpa_supplicant.pid.${1}" >/dev/null 2>&1
fi
return 0
}
Expand Down
2 changes: 1 addition & 1 deletion files/initrd/opt/rr/ramdisk-patch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ mkdir -p "${RAMDISK_PATH}/addons"
chmod +x "${RAMDISK_PATH}/addons/addons.sh"

# This order cannot be changed.
for ADDON in "redpill" "revert" "misc" "eudev" "disks" "localrss" "notify" "wol" "rndis"; do
for ADDON in "redpill" "revert" "misc" "eudev" "disks" "localrss" "notify" "wol"; do
PARAMS=""
if [ "${ADDON}" = "disks" ]; then
PARAMS=${HDDSORT}
Expand Down
2 changes: 1 addition & 1 deletion files/mnt/p1/RR_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
25.1.3
25.1.4
1 change: 0 additions & 1 deletion scripts/func.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ def getmodels(workpath, jsonpath, xlsxpath):
req = session.get(url, timeout=10, verify=False)
req.encoding = "utf-8"
p = re.compile(r"<mUnique>(.*?)</mUnique>.*?<mLink>(.*?)</mLink>", re.MULTILINE | re.DOTALL)

data = p.findall(req.text)
except Exception as e:
click.echo(f"Error: {e}")
Expand Down

0 comments on commit 26229a4

Please sign in to comment.