update 2024-12-06 04:24:46

This commit is contained in:
kenzok8 2024-12-06 04:24:46 +08:00
parent a686a4f33c
commit c220b9f787
4 changed files with 17 additions and 2 deletions

View File

@ -2,7 +2,7 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_VERSION:=1.0.6-20241113 PKG_VERSION:=1.0.7-20241206
PKG_RELEASE:= PKG_RELEASE:=
LUCI_TITLE:=LuCI support for SysTools LUCI_TITLE:=LuCI support for SysTools

View File

@ -87,8 +87,9 @@ function main_container(data, extra)
required = true, required = true,
title = "可执行操作", title = "可执行操作",
type = "string", type = "string",
enum = {"turn_off_ipv6", "full_ipv6", "half_ipv6", "reset_rom_pkgs", "qb_reset_password", "disk_power_mode", "speedtest", "openssl-aes256gcm", "openssl-chacha20-poly1305", "istore-reinstall", "disable-wandrop"}, enum = {"disable-planb", "turn_off_ipv6", "full_ipv6", "half_ipv6", "reset_rom_pkgs", "qb_reset_password", "disk_power_mode", "speedtest", "openssl-aes256gcm", "openssl-chacha20-poly1305", "istore-reinstall", "disable-wandrop"},
enumNames = { enumNames = {
lng.translate("Disable LAN port keepalive"),
lng.translate("Turn off IPv6"), lng.translate("Turn off IPv6"),
lng.translate("Full IPv6"), lng.translate("Full IPv6"),
lng.translate("Half IPv6 (Only Router)"), lng.translate("Half IPv6 (Only Router)"),

View File

@ -7,6 +7,9 @@ msgstr "执行"
msgid "Some convenient tools which can fix some errors." msgid "Some convenient tools which can fix some errors."
msgstr "一些便利的工具集,方便修复一些问题。" msgstr "一些便利的工具集,方便修复一些问题。"
msgid "Disable LAN port keepalive"
msgstr "禁用 LAN 口保活"
msgid "Reset rom pkgs" msgid "Reset rom pkgs"
msgstr "修复系统软件" msgstr "修复系统软件"

View File

@ -0,0 +1,11 @@
#!/bin/sh
if [ "x$(uci -q get quickstart.main.disable_dhns)" = x1 ]; then
echo "Already disabled!"
else
echo "Disabling..."
uci set quickstart.main.disable_dhns=1
uci commit quickstart
/etc/init.d/quickstart restart
echo "Done"
fi