├── .github └── workflows │ ├── build-alpha.yml │ ├── build-release.yml │ └── main.yml ├── .gitignore ├── .vscode └── settings.json ├── CLAUDE.md ├── LICENSE ├── README.en.md ├── README.md ├── assets ├── openwrt-builder.desktop ├── screentshot1.png └── screentshot2.png ├── changelog.txt ├── modules ├── add-all-device-to-lan │ ├── README.en.md │ ├── README.md │ └── files │ │ └── etc │ │ └── uci-defaults │ │ └── 99-add-all-device-to-lan ├── argon │ ├── README.en.md │ ├── README.md │ └── packages ├── base │ ├── README.en.md │ ├── README.md │ └── packages ├── daed-as-default │ ├── README.en.md │ ├── README.md │ └── files │ │ └── etc │ │ ├── hotplug.d │ │ └── iface │ │ │ └── 99-daed │ │ └── uci-defaults │ │ └── 99-daed ├── daed │ ├── README.en.md │ ├── README.md │ ├── packages │ └── post-files.sh ├── lan │ ├── README.en.md │ ├── README.md │ ├── example.env │ └── files │ │ └── etc │ │ └── uci-defaults │ │ └── 89-lan ├── nikki-as-default │ ├── README.en.md │ ├── README.md │ └── files │ │ └── etc │ │ └── hotplug.d │ │ └── iface │ │ └── 99-mihomo-as-default ├── nikki-ekko-prefer │ ├── README.en.md │ ├── README.md │ └── files │ │ └── etc │ │ ├── nikki │ │ └── mixin.yaml │ │ └── uci-defaults │ │ └── 91-mihomo ├── openclash-as-default │ ├── README.en.md │ ├── README.md │ └── files │ │ └── etc │ │ └── hotplug.d │ │ └── iface │ │ └── 99-clash ├── openclash-stun-direct │ ├── README.en.md │ ├── README.md │ └── files │ │ └── etc │ │ └── openclash │ │ └── custom │ │ └── openclash_custom_firewall_rules.sh ├── openclash │ ├── README.en.md │ ├── README.md │ ├── example.env │ ├── files │ │ └── etc │ │ │ ├── openclash │ │ │ └── custom │ │ │ │ └── openclash_custom_fallback_filter.yaml │ │ │ └── uci-defaults │ │ │ └── 90-openclash │ ├── packages │ └── post-files.sh ├── openwrt-nikki │ ├── README.en.md │ ├── README.md │ ├── example.env │ ├── files │ │ └── etc │ │ │ ├── opkg │ │ │ └── keys │ │ │ │ └── ab017c88aab7a08b │ │ │ └── uci-defaults │ │ │ └── 90-mihomo │ ├── packages │ └── post-files.sh ├── opkg-mirror │ ├── README.en.md │ ├── README.md │ └── files │ │ └── etc │ │ └── uci-defaults │ │ └── 99-opkg ├── passwall │ ├── README.en.md │ ├── README.md │ ├── example.env │ ├── files │ │ └── etc │ │ │ ├── opkg │ │ │ └── keys │ │ │ │ └── 0abda65a492b4887 │ │ │ └── uci-defaults │ │ │ └── 90-passwall │ ├── packages │ └── post-files.sh ├── pppoe │ ├── README.en.md │ ├── README.md │ ├── example.env │ └── files │ │ └── etc │ │ └── uci-defaults │ │ └── 89-pppoe ├── prefer-ipv6-settings │ ├── README.en.md │ ├── README.md │ └── files │ │ └── etc │ │ ├── hotplug.d │ │ └── iface │ │ │ └── 99-odhcpd │ │ └── uci-defaults │ │ └── 99-ipv6 ├── python │ ├── README.en.md │ ├── README.md │ └── packages ├── reject-netflix-ipv6 │ ├── README.en.md │ ├── README.md │ └── files │ │ └── etc │ │ ├── dnsmasq.d │ │ └── netflix.conf │ │ └── uci-defaults │ │ └── 99-reject-netflix-ipv6 ├── root-password │ ├── README.en.md │ ├── README.md │ ├── example.env │ └── files │ │ └── etc │ │ └── uci-defaults │ │ └── 92-system ├── ssh-permission │ ├── README.en.md │ ├── README.md │ └── files │ │ └── etc │ │ └── uci-defaults │ │ └── 99-ssh ├── statistics │ ├── README.en.md │ ├── README.md │ ├── files │ │ └── etc │ │ │ └── uci-defaults │ │ │ └── 99-statistics │ └── packages ├── system │ ├── README.en.md │ ├── README.md │ └── files │ │ └── etc │ │ └── uci-defaults │ │ └── 91-system └── tools │ ├── README.en.md │ ├── README.md │ └── packages ├── run.ps1 ├── run.sh ├── setup ├── build-setup.sh └── keys │ └── cd5844109a8e9dda └── tauri-app ├── .gitignore ├── README.en.md ├── README.md ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public ├── tauri.svg └── vite.svg ├── src-tauri ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── capabilities │ └── default.json ├── icons │ ├── 128x128.png │ ├── 128x128@2x.png │ ├── 32x32.png │ ├── icon.icns │ └── icon.ico ├── src │ ├── app_mode.rs │ ├── build.rs │ ├── config_manager.rs │ ├── docker.rs │ ├── lib.rs │ ├── main.rs │ ├── modules.rs │ └── settings.rs └── tauri.conf.json ├── src ├── App.vue ├── assets │ └── vue.svg ├── components │ ├── AdvancedBuildOptions.vue │ ├── ConfigQuickSelector.vue │ ├── ConfigurationManager.vue │ └── ModuleDetailDialog.vue ├── i18n │ ├── index.ts │ └── locales │ │ ├── en-US.ts │ │ └── zh-CN.ts ├── main.ts ├── plugins │ └── vuetify.ts ├── router │ └── index.ts ├── stores │ ├── app.ts │ └── config.ts ├── views │ ├── BuildView.vue │ ├── ConfigView.vue │ ├── ModulesView.vue │ └── SettingsView.vue └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.github/workflows/build-alpha.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/.github/workflows/build-alpha.yml -------------------------------------------------------------------------------- /.github/workflows/build-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/.github/workflows/build-release.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- 1 | 包管理是 pnpm -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/README.md -------------------------------------------------------------------------------- /assets/openwrt-builder.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/assets/openwrt-builder.desktop -------------------------------------------------------------------------------- /assets/screentshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/assets/screentshot1.png -------------------------------------------------------------------------------- /assets/screentshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/assets/screentshot2.png -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/changelog.txt -------------------------------------------------------------------------------- /modules/add-all-device-to-lan/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/add-all-device-to-lan/README.en.md -------------------------------------------------------------------------------- /modules/add-all-device-to-lan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/add-all-device-to-lan/README.md -------------------------------------------------------------------------------- /modules/add-all-device-to-lan/files/etc/uci-defaults/99-add-all-device-to-lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/add-all-device-to-lan/files/etc/uci-defaults/99-add-all-device-to-lan -------------------------------------------------------------------------------- /modules/argon/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/argon/README.en.md -------------------------------------------------------------------------------- /modules/argon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/argon/README.md -------------------------------------------------------------------------------- /modules/argon/packages: -------------------------------------------------------------------------------- 1 | luci-theme-argon -------------------------------------------------------------------------------- /modules/base/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/base/README.en.md -------------------------------------------------------------------------------- /modules/base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/base/README.md -------------------------------------------------------------------------------- /modules/base/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/base/packages -------------------------------------------------------------------------------- /modules/daed-as-default/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/daed-as-default/README.en.md -------------------------------------------------------------------------------- /modules/daed-as-default/README.md: -------------------------------------------------------------------------------- 1 | 开机自动启动,只在第一次启动时等待网络后生效 -------------------------------------------------------------------------------- /modules/daed-as-default/files/etc/hotplug.d/iface/99-daed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/daed-as-default/files/etc/hotplug.d/iface/99-daed -------------------------------------------------------------------------------- /modules/daed-as-default/files/etc/uci-defaults/99-daed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/daed-as-default/files/etc/uci-defaults/99-daed -------------------------------------------------------------------------------- /modules/daed/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/daed/README.en.md -------------------------------------------------------------------------------- /modules/daed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/daed/README.md -------------------------------------------------------------------------------- /modules/daed/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/daed/packages -------------------------------------------------------------------------------- /modules/daed/post-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/daed/post-files.sh -------------------------------------------------------------------------------- /modules/lan/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/lan/README.en.md -------------------------------------------------------------------------------- /modules/lan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/lan/README.md -------------------------------------------------------------------------------- /modules/lan/example.env: -------------------------------------------------------------------------------- 1 | LAN_IP=192.168.2.1 -------------------------------------------------------------------------------- /modules/lan/files/etc/uci-defaults/89-lan: -------------------------------------------------------------------------------- 1 | 2 | uci batch << EOF 3 | 4 | set network.lan.ipaddr='$LAN_IP' 5 | 6 | commit 7 | EOF -------------------------------------------------------------------------------- /modules/nikki-as-default/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/nikki-as-default/README.en.md -------------------------------------------------------------------------------- /modules/nikki-as-default/README.md: -------------------------------------------------------------------------------- 1 | 开机自动启动,只在第一次启动时等待网络后生效 -------------------------------------------------------------------------------- /modules/nikki-as-default/files/etc/hotplug.d/iface/99-mihomo-as-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/nikki-as-default/files/etc/hotplug.d/iface/99-mihomo-as-default -------------------------------------------------------------------------------- /modules/nikki-ekko-prefer/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/nikki-ekko-prefer/README.en.md -------------------------------------------------------------------------------- /modules/nikki-ekko-prefer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/nikki-ekko-prefer/README.md -------------------------------------------------------------------------------- /modules/nikki-ekko-prefer/files/etc/nikki/mixin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/nikki-ekko-prefer/files/etc/nikki/mixin.yaml -------------------------------------------------------------------------------- /modules/nikki-ekko-prefer/files/etc/uci-defaults/91-mihomo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/nikki-ekko-prefer/files/etc/uci-defaults/91-mihomo -------------------------------------------------------------------------------- /modules/openclash-as-default/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/openclash-as-default/README.en.md -------------------------------------------------------------------------------- /modules/openclash-as-default/README.md: -------------------------------------------------------------------------------- 1 | 开机自动启动,只在第一次启动时等待网络后生效 -------------------------------------------------------------------------------- /modules/openclash-as-default/files/etc/hotplug.d/iface/99-clash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/openclash-as-default/files/etc/hotplug.d/iface/99-clash -------------------------------------------------------------------------------- /modules/openclash-stun-direct/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/openclash-stun-direct/README.en.md -------------------------------------------------------------------------------- /modules/openclash-stun-direct/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/openclash-stun-direct/README.md -------------------------------------------------------------------------------- /modules/openclash-stun-direct/files/etc/openclash/custom/openclash_custom_firewall_rules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/openclash-stun-direct/files/etc/openclash/custom/openclash_custom_firewall_rules.sh -------------------------------------------------------------------------------- /modules/openclash/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/openclash/README.en.md -------------------------------------------------------------------------------- /modules/openclash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/openclash/README.md -------------------------------------------------------------------------------- /modules/openclash/example.env: -------------------------------------------------------------------------------- 1 | CLASH_CONFIG_URL=https://a.com/config.yml 2 | DASHBOARD_PASSWORD=f871978 -------------------------------------------------------------------------------- /modules/openclash/files/etc/openclash/custom/openclash_custom_fallback_filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/openclash/files/etc/openclash/custom/openclash_custom_fallback_filter.yaml -------------------------------------------------------------------------------- /modules/openclash/files/etc/uci-defaults/90-openclash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/openclash/files/etc/uci-defaults/90-openclash -------------------------------------------------------------------------------- /modules/openclash/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/openclash/packages -------------------------------------------------------------------------------- /modules/openclash/post-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/openclash/post-files.sh -------------------------------------------------------------------------------- /modules/openwrt-nikki/README.en.md: -------------------------------------------------------------------------------- 1 | # OpenWrt Nikki 2 | 3 | All defaults; only the subscription URL is configured. 4 | -------------------------------------------------------------------------------- /modules/openwrt-nikki/README.md: -------------------------------------------------------------------------------- 1 | 全默认配置,只配置订阅地址 -------------------------------------------------------------------------------- /modules/openwrt-nikki/example.env: -------------------------------------------------------------------------------- 1 | CLASH_CONFIG_URL=https://a.com/config.yml -------------------------------------------------------------------------------- /modules/openwrt-nikki/files/etc/opkg/keys/ab017c88aab7a08b: -------------------------------------------------------------------------------- 1 | untrusted comment: MihomoTProxy 2 | RWSrAXyIqregizvXvG9kJI/JoTkaCCPDy6CQrrVQ4IZ8Qgu+iWMql0UW -------------------------------------------------------------------------------- /modules/openwrt-nikki/files/etc/uci-defaults/90-mihomo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/openwrt-nikki/files/etc/uci-defaults/90-mihomo -------------------------------------------------------------------------------- /modules/openwrt-nikki/packages: -------------------------------------------------------------------------------- 1 | luci-i18n-nikki-zh-cn -------------------------------------------------------------------------------- /modules/openwrt-nikki/post-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/openwrt-nikki/post-files.sh -------------------------------------------------------------------------------- /modules/opkg-mirror/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/opkg-mirror/README.en.md -------------------------------------------------------------------------------- /modules/opkg-mirror/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/opkg-mirror/README.md -------------------------------------------------------------------------------- /modules/opkg-mirror/files/etc/uci-defaults/99-opkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/opkg-mirror/files/etc/uci-defaults/99-opkg -------------------------------------------------------------------------------- /modules/passwall/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/passwall/README.en.md -------------------------------------------------------------------------------- /modules/passwall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/passwall/README.md -------------------------------------------------------------------------------- /modules/passwall/example.env: -------------------------------------------------------------------------------- 1 | PASSWALL_SUBSCRIBE_URL=https://passwall.example.com/subscribe -------------------------------------------------------------------------------- /modules/passwall/files/etc/opkg/keys/0abda65a492b4887: -------------------------------------------------------------------------------- 1 | untrusted comment: OpenWRT usign key of dianlujitao 2 | RWQKvaZaSStIhx4t06ISyV42CIpK7niKfR+Yro/WHiKLa122SEh2j3Z4 3 | -------------------------------------------------------------------------------- /modules/passwall/files/etc/uci-defaults/90-passwall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/passwall/files/etc/uci-defaults/90-passwall -------------------------------------------------------------------------------- /modules/passwall/packages: -------------------------------------------------------------------------------- 1 | luci-i18n-passwall-zh-cn -------------------------------------------------------------------------------- /modules/passwall/post-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/passwall/post-files.sh -------------------------------------------------------------------------------- /modules/pppoe/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/pppoe/README.en.md -------------------------------------------------------------------------------- /modules/pppoe/README.md: -------------------------------------------------------------------------------- 1 | 用于开机配置 PPPoE 账号密码,环境变量参考 exapmle.env -------------------------------------------------------------------------------- /modules/pppoe/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/pppoe/example.env -------------------------------------------------------------------------------- /modules/pppoe/files/etc/uci-defaults/89-pppoe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/pppoe/files/etc/uci-defaults/89-pppoe -------------------------------------------------------------------------------- /modules/prefer-ipv6-settings/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/prefer-ipv6-settings/README.en.md -------------------------------------------------------------------------------- /modules/prefer-ipv6-settings/README.md: -------------------------------------------------------------------------------- 1 | 推荐的 IPv6 配置 -------------------------------------------------------------------------------- /modules/prefer-ipv6-settings/files/etc/hotplug.d/iface/99-odhcpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/prefer-ipv6-settings/files/etc/hotplug.d/iface/99-odhcpd -------------------------------------------------------------------------------- /modules/prefer-ipv6-settings/files/etc/uci-defaults/99-ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/prefer-ipv6-settings/files/etc/uci-defaults/99-ipv6 -------------------------------------------------------------------------------- /modules/python/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/python/README.en.md -------------------------------------------------------------------------------- /modules/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/python/README.md -------------------------------------------------------------------------------- /modules/python/packages: -------------------------------------------------------------------------------- 1 | python3-light -------------------------------------------------------------------------------- /modules/reject-netflix-ipv6/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/reject-netflix-ipv6/README.en.md -------------------------------------------------------------------------------- /modules/reject-netflix-ipv6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/reject-netflix-ipv6/README.md -------------------------------------------------------------------------------- /modules/reject-netflix-ipv6/files/etc/dnsmasq.d/netflix.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/reject-netflix-ipv6/files/etc/dnsmasq.d/netflix.conf -------------------------------------------------------------------------------- /modules/reject-netflix-ipv6/files/etc/uci-defaults/99-reject-netflix-ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/reject-netflix-ipv6/files/etc/uci-defaults/99-reject-netflix-ipv6 -------------------------------------------------------------------------------- /modules/root-password/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/root-password/README.en.md -------------------------------------------------------------------------------- /modules/root-password/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/root-password/README.md -------------------------------------------------------------------------------- /modules/root-password/example.env: -------------------------------------------------------------------------------- 1 | ROOT_PASSWORD=random -------------------------------------------------------------------------------- /modules/root-password/files/etc/uci-defaults/92-system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/root-password/files/etc/uci-defaults/92-system -------------------------------------------------------------------------------- /modules/ssh-permission/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/ssh-permission/README.en.md -------------------------------------------------------------------------------- /modules/ssh-permission/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/ssh-permission/README.md -------------------------------------------------------------------------------- /modules/ssh-permission/files/etc/uci-defaults/99-ssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/ssh-permission/files/etc/uci-defaults/99-ssh -------------------------------------------------------------------------------- /modules/statistics/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/statistics/README.en.md -------------------------------------------------------------------------------- /modules/statistics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/statistics/README.md -------------------------------------------------------------------------------- /modules/statistics/files/etc/uci-defaults/99-statistics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/statistics/files/etc/uci-defaults/99-statistics -------------------------------------------------------------------------------- /modules/statistics/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/statistics/packages -------------------------------------------------------------------------------- /modules/system/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/system/README.en.md -------------------------------------------------------------------------------- /modules/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/system/README.md -------------------------------------------------------------------------------- /modules/system/files/etc/uci-defaults/91-system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/system/files/etc/uci-defaults/91-system -------------------------------------------------------------------------------- /modules/tools/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/tools/README.en.md -------------------------------------------------------------------------------- /modules/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/tools/README.md -------------------------------------------------------------------------------- /modules/tools/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/modules/tools/packages -------------------------------------------------------------------------------- /run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/run.ps1 -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/run.sh -------------------------------------------------------------------------------- /setup/build-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/setup/build-setup.sh -------------------------------------------------------------------------------- /setup/keys/cd5844109a8e9dda: -------------------------------------------------------------------------------- 1 | untrusted comment: ekkog openwrt dist sign 2 | RWTNWEQQmo6d2m4v8HCtbcfJkfiX91+OmTVEHPu7c+oVX56FPGay5Kt+ 3 | -------------------------------------------------------------------------------- /tauri-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/.gitignore -------------------------------------------------------------------------------- /tauri-app/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/README.en.md -------------------------------------------------------------------------------- /tauri-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/README.md -------------------------------------------------------------------------------- /tauri-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/index.html -------------------------------------------------------------------------------- /tauri-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/package.json -------------------------------------------------------------------------------- /tauri-app/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/pnpm-lock.yaml -------------------------------------------------------------------------------- /tauri-app/public/tauri.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/public/tauri.svg -------------------------------------------------------------------------------- /tauri-app/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/public/vite.svg -------------------------------------------------------------------------------- /tauri-app/src-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src-tauri/.gitignore -------------------------------------------------------------------------------- /tauri-app/src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /tauri-app/src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /tauri-app/src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src-tauri/build.rs -------------------------------------------------------------------------------- /tauri-app/src-tauri/capabilities/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src-tauri/capabilities/default.json -------------------------------------------------------------------------------- /tauri-app/src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /tauri-app/src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /tauri-app/src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /tauri-app/src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /tauri-app/src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /tauri-app/src-tauri/src/app_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src-tauri/src/app_mode.rs -------------------------------------------------------------------------------- /tauri-app/src-tauri/src/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src-tauri/src/build.rs -------------------------------------------------------------------------------- /tauri-app/src-tauri/src/config_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src-tauri/src/config_manager.rs -------------------------------------------------------------------------------- /tauri-app/src-tauri/src/docker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src-tauri/src/docker.rs -------------------------------------------------------------------------------- /tauri-app/src-tauri/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src-tauri/src/lib.rs -------------------------------------------------------------------------------- /tauri-app/src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src-tauri/src/main.rs -------------------------------------------------------------------------------- /tauri-app/src-tauri/src/modules.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src-tauri/src/modules.rs -------------------------------------------------------------------------------- /tauri-app/src-tauri/src/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src-tauri/src/settings.rs -------------------------------------------------------------------------------- /tauri-app/src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /tauri-app/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src/App.vue -------------------------------------------------------------------------------- /tauri-app/src/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src/assets/vue.svg -------------------------------------------------------------------------------- /tauri-app/src/components/AdvancedBuildOptions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src/components/AdvancedBuildOptions.vue -------------------------------------------------------------------------------- /tauri-app/src/components/ConfigQuickSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src/components/ConfigQuickSelector.vue -------------------------------------------------------------------------------- /tauri-app/src/components/ConfigurationManager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src/components/ConfigurationManager.vue -------------------------------------------------------------------------------- /tauri-app/src/components/ModuleDetailDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src/components/ModuleDetailDialog.vue -------------------------------------------------------------------------------- /tauri-app/src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src/i18n/index.ts -------------------------------------------------------------------------------- /tauri-app/src/i18n/locales/en-US.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src/i18n/locales/en-US.ts -------------------------------------------------------------------------------- /tauri-app/src/i18n/locales/zh-CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src/i18n/locales/zh-CN.ts -------------------------------------------------------------------------------- /tauri-app/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src/main.ts -------------------------------------------------------------------------------- /tauri-app/src/plugins/vuetify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src/plugins/vuetify.ts -------------------------------------------------------------------------------- /tauri-app/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src/router/index.ts -------------------------------------------------------------------------------- /tauri-app/src/stores/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src/stores/app.ts -------------------------------------------------------------------------------- /tauri-app/src/stores/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src/stores/config.ts -------------------------------------------------------------------------------- /tauri-app/src/views/BuildView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src/views/BuildView.vue -------------------------------------------------------------------------------- /tauri-app/src/views/ConfigView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src/views/ConfigView.vue -------------------------------------------------------------------------------- /tauri-app/src/views/ModulesView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src/views/ModulesView.vue -------------------------------------------------------------------------------- /tauri-app/src/views/SettingsView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src/views/SettingsView.vue -------------------------------------------------------------------------------- /tauri-app/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/src/vite-env.d.ts -------------------------------------------------------------------------------- /tauri-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/tsconfig.json -------------------------------------------------------------------------------- /tauri-app/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/tsconfig.node.json -------------------------------------------------------------------------------- /tauri-app/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkkoG/OpenWrt/HEAD/tauri-app/vite.config.ts --------------------------------------------------------------------------------