From 52cab0d8750f0f50d60a4dacdcacc5691ed828b8 Mon Sep 17 00:00:00 2001 From: yoyo <212647593+frzb2023@users.noreply.github.com> Date: Fri, 31 Oct 2025 23:25:31 +0800 Subject: [PATCH 1/5] Update 99-custom.sh --- files/etc/uci-defaults/99-custom.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/etc/uci-defaults/99-custom.sh b/files/etc/uci-defaults/99-custom.sh index 7bc6fa583..9f585db08 100644 --- a/files/etc/uci-defaults/99-custom.sh +++ b/files/etc/uci-defaults/99-custom.sh @@ -185,7 +185,7 @@ uci commit # 设置编译作者信息 FILE_PATH="/etc/openwrt_release" -NEW_DESCRIPTION="Packaged by wukongdaily" +NEW_DESCRIPTION="by mo" sed -i "s/DISTRIB_DESCRIPTION='[^']*'/DISTRIB_DESCRIPTION='$NEW_DESCRIPTION'/" "$FILE_PATH" # 若luci-app-advancedplus (进阶设置)已安装 则去除zsh的调用 防止命令行报 /usb/bin/zsh: not found的提示 From aa655c1dd29585dbc6d33a411e75aea20638a9d1 Mon Sep 17 00:00:00 2001 From: yoyo <212647593+frzb2023@users.noreply.github.com> Date: Fri, 31 Oct 2025 23:28:11 +0800 Subject: [PATCH 2/5] Update build.sh --- raspberrypi/24.10/build.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/raspberrypi/24.10/build.sh b/raspberrypi/24.10/build.sh index d1140ac99..880f78cfe 100644 --- a/raspberrypi/24.10/build.sh +++ b/raspberrypi/24.10/build.sh @@ -39,8 +39,6 @@ PACKAGES="$PACKAGES luci-i18n-firewall-zh-cn" # 服务——FileBrowser 用户名admin 密码admin PACKAGES="$PACKAGES luci-i18n-filebrowser-go-zh-cn" PACKAGES="$PACKAGES luci-theme-argon" -PACKAGES="$PACKAGES luci-app-argon-config" -PACKAGES="$PACKAGES luci-i18n-argon-config-zh-cn" PACKAGES="$PACKAGES luci-i18n-diskman-zh-cn" #24.10 @@ -48,8 +46,6 @@ PACKAGES="$PACKAGES luci-i18n-package-manager-zh-cn" PACKAGES="$PACKAGES luci-i18n-ttyd-zh-cn" PACKAGES="$PACKAGES luci-i18n-passwall-zh-cn" PACKAGES="$PACKAGES luci-app-openclash" -PACKAGES="$PACKAGES luci-i18n-homeproxy-zh-cn" -PACKAGES="$PACKAGES openssh-sftp-server" # ======== shell/custom-packages.sh ======= # 合并imm仓库以外的第三方插件 PACKAGES="$PACKAGES $CUSTOM_PACKAGES" From e0118bdd6fbfda4f60c580368426985161010807 Mon Sep 17 00:00:00 2001 From: yoyo <212647593+frzb2023@users.noreply.github.com> Date: Fri, 31 Oct 2025 23:31:57 +0800 Subject: [PATCH 3/5] Enable custom packages for proxy and network tools --- shell/custom-packages.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shell/custom-packages.sh b/shell/custom-packages.sh index 8151e0f8e..71c64e065 100644 --- a/shell/custom-packages.sh +++ b/shell/custom-packages.sh @@ -11,8 +11,8 @@ # 去广告adghome #CUSTOM_PACKAGES="$CUSTOM_PACKAGES luci-app-adguardhome" # 代理相关 -#CUSTOM_PACKAGES="$CUSTOM_PACKAGES luci-i18n-passwall-zh-cn" -#CUSTOM_PACKAGES="$CUSTOM_PACKAGES luci-app-ssr-plus" +CUSTOM_PACKAGES="$CUSTOM_PACKAGES luci-i18n-passwall-zh-cn" +CUSTOM_PACKAGES="$CUSTOM_PACKAGES luci-app-openclash" #CUSTOM_PACKAGES="$CUSTOM_PACKAGES luci-app-passwall2" #CUSTOM_PACKAGES="$CUSTOM_PACKAGES luci-i18n-nikki-zh-cn" #CUSTOM_PACKAGES="$CUSTOM_PACKAGES luci-app-nekobox" @@ -33,7 +33,7 @@ # MosDNS #CUSTOM_PACKAGES="$CUSTOM_PACKAGES luci-app-mosdns luci-i18n-mosdns-zh-cn" # Turbo ACC 网络加速 -#CUSTOM_PACKAGES="$CUSTOM_PACKAGES luci-app-turboacc" +CUSTOM_PACKAGES="$CUSTOM_PACKAGES luci-app-turboacc" # 应用过滤 openappfilter.com #CUSTOM_PACKAGES="$CUSTOM_PACKAGES luci-app-appfilter luci-i18n-appfilter-zh-cn" # 设置向导 by sirpdboy From 7f5b5f18573e96e1da4c3c86dc7ecd1afe93e1e5 Mon Sep 17 00:00:00 2001 From: yoyo <212647593+frzb2023@users.noreply.github.com> Date: Fri, 31 Oct 2025 23:35:55 +0800 Subject: [PATCH 4/5] Update build24.sh --- mediatek-filogic/build24.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/mediatek-filogic/build24.sh b/mediatek-filogic/build24.sh index 961991b63..5d24e3d44 100644 --- a/mediatek-filogic/build24.sh +++ b/mediatek-filogic/build24.sh @@ -49,13 +49,10 @@ PACKAGES="" PACKAGES="$PACKAGES curl luci luci-i18n-base-zh-cn" PACKAGES="$PACKAGES luci-i18n-firewall-zh-cn" PACKAGES="$PACKAGES luci-theme-argon" -PACKAGES="$PACKAGES luci-app-argon-config" -PACKAGES="$PACKAGES luci-i18n-argon-config-zh-cn" PACKAGES="$PACKAGES luci-i18n-diskman-zh-cn" #24.10.0 PACKAGES="$PACKAGES luci-i18n-package-manager-zh-cn" PACKAGES="$PACKAGES luci-i18n-ttyd-zh-cn" -PACKAGES="$PACKAGES openssh-sftp-server" # 文件管理器 PACKAGES="$PACKAGES luci-i18n-filemanager-zh-cn" # 静态文件服务器dufs(推荐) From c7a0fef05fc0691a592254ba0c77e4d475d6564a Mon Sep 17 00:00:00 2001 From: yoyo <212647593+frzb2023@users.noreply.github.com> Date: Tue, 25 Nov 2025 23:06:48 +0800 Subject: [PATCH 5/5] Update build24.sh --- mediatek-filogic/build24.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/mediatek-filogic/build24.sh b/mediatek-filogic/build24.sh index 5d24e3d44..111b152e4 100644 --- a/mediatek-filogic/build24.sh +++ b/mediatek-filogic/build24.sh @@ -50,6 +50,7 @@ PACKAGES="$PACKAGES curl luci luci-i18n-base-zh-cn" PACKAGES="$PACKAGES luci-i18n-firewall-zh-cn" PACKAGES="$PACKAGES luci-theme-argon" PACKAGES="$PACKAGES luci-i18n-diskman-zh-cn" +PACKAGES="$PACKAGES luci-app-openclash" #24.10.0 PACKAGES="$PACKAGES luci-i18n-package-manager-zh-cn" PACKAGES="$PACKAGES luci-i18n-ttyd-zh-cn"