├── LICENSE ├── README.md ├── luci-app-adguardhome ├── Makefile ├── luasrc │ ├── controller │ │ └── AdGuardHome.lua │ ├── model │ │ └── cbi │ │ │ └── AdGuardHome │ │ │ ├── base.lua │ │ │ ├── log.lua │ │ │ └── manual.lua │ └── view │ │ └── AdGuardHome │ │ ├── AdGuardHome_check.htm │ │ ├── AdGuardHome_chpass.htm │ │ ├── AdGuardHome_status.htm │ │ ├── log.htm │ │ └── yamleditor.htm ├── po │ └── zh-cn │ │ └── AdGuardHome.po └── root │ ├── etc │ ├── config │ │ ├── AdGuardHome │ │ └── AdGuardHome.yaml │ ├── init.d │ │ └── AdGuardHome │ └── uci-defaults │ │ └── 40_luci-AdGuardHome │ ├── usr │ └── share │ │ ├── AdGuardHome │ │ ├── AdGuardHome_template.yaml │ │ ├── addhost.sh │ │ ├── firewall.start │ │ ├── getsyslog.sh │ │ ├── gfw2adg.sh │ │ ├── links.txt │ │ ├── tailto.sh │ │ ├── update_core.sh │ │ ├── waitnet.sh │ │ └── watchconfig.sh │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-adguardhome.json │ └── www │ └── luci-static │ └── resources │ ├── codemirror │ ├── addon │ │ └── fold │ │ │ ├── foldcode.js │ │ │ ├── foldgutter.css │ │ │ ├── foldgutter.js │ │ │ └── indent-fold.js │ ├── lib │ │ ├── codemirror.css │ │ └── codemirror.js │ ├── mode │ │ └── yaml │ │ │ └── yaml.js │ └── theme │ │ └── dracula.css │ └── twin-bcrypt.min.js ├── luci-app-alist ├── Makefile ├── luasrc │ ├── controller │ │ └── alist.lua │ ├── model │ │ └── cbi │ │ │ └── alist │ │ │ ├── basic.lua │ │ │ └── log.lua │ └── view │ │ └── alist │ │ ├── admin_info.htm │ │ ├── alist_log.htm │ │ └── alist_status.htm ├── po │ └── zh-cn │ │ └── alist.po └── root │ ├── etc │ └── uci-defaults │ │ └── 50-luci-alist │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-alist.json ├── luci-app-amlogic ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── amlogic │ │ ├── author.svg │ │ ├── loading.gif │ │ ├── logo.png │ │ ├── packit.svg │ │ ├── plugin.svg │ │ ├── poweroff.png │ │ └── switch.png ├── luasrc │ ├── controller │ │ └── amlogic.lua │ ├── model │ │ └── cbi │ │ │ └── amlogic │ │ │ ├── amlogic_armcpu.lua │ │ │ ├── amlogic_backup.lua │ │ │ ├── amlogic_backuplist.lua │ │ │ ├── amlogic_check.lua │ │ │ ├── amlogic_config.lua │ │ │ ├── amlogic_info.lua │ │ │ ├── amlogic_install.lua │ │ │ ├── amlogic_log.lua │ │ │ ├── amlogic_poweroff.lua │ │ │ └── amlogic_upload.lua │ └── view │ │ └── amlogic │ │ ├── other_button.htm │ │ ├── other_check.htm │ │ ├── other_dvalue.htm │ │ ├── other_info.htm │ │ ├── other_install.htm │ │ ├── other_kvm.htm │ │ ├── other_log.htm │ │ ├── other_poweroff.htm │ │ ├── other_rescue.htm │ │ ├── other_snapshot.htm │ │ ├── other_upfiles.htm │ │ └── other_upload.htm ├── po │ └── zh-cn │ │ └── amlogic.po └── root │ ├── etc │ ├── config │ │ └── amlogic │ ├── init.d │ │ └── amlogic │ └── uci-defaults │ │ └── luci-amlogic │ └── usr │ ├── sbin │ ├── fixcpufreq.pl │ ├── openwrt-backup │ ├── openwrt-ddbr │ ├── openwrt-install-amlogic │ ├── openwrt-kernel │ ├── openwrt-update-allwinner │ ├── openwrt-update-amlogic │ ├── openwrt-update-kvm │ └── openwrt-update-rockchip │ └── share │ ├── amlogic │ ├── amlogic_check_firmware.sh │ ├── amlogic_check_kernel.sh │ └── amlogic_check_plugin.sh │ └── rpcd │ └── acl.d │ └── luci-app-amlogic.json ├── luci-app-autoipsetadder ├── Makefile ├── luasrc │ ├── controller │ │ └── autoipsetadder.lua │ ├── model │ │ └── cbi │ │ │ └── autoipsetadder.lua │ └── view │ │ └── autoipsetadder │ │ ├── check.htm │ │ └── status.htm └── root │ ├── etc │ ├── config │ │ └── autoipsetadder │ ├── init.d │ │ └── autoipsetadder │ └── uci-defaults │ │ └── 40_luci-autoipsetadder │ └── usr │ └── bin │ └── autoipsetadder │ ├── autoaddlist.sh │ ├── debugip.sh │ ├── tailto.sh │ └── testip.sh ├── luci-app-autotimeset ├── doc │ ├── taskplan1.png │ ├── taskplan2.png │ ├── taskplan3.png │ ├── view.png │ └── view2.png └── luci-app-taskplan │ ├── Makefile │ ├── luasrc │ ├── controller │ │ └── taskplan.lua │ ├── model │ │ └── cbi │ │ │ └── taskplan │ │ │ ├── log.lua │ │ │ ├── scheduledtask.lua │ │ │ └── startuptask.lua │ └── view │ │ └── taskplan │ │ └── log.htm │ ├── po │ └── zh-cn │ │ └── taskplan.po │ └── root │ ├── etc │ ├── config │ │ └── taskplan │ ├── init.d │ │ └── taskplan │ ├── taskplan │ │ ├── taskplancustomscript │ │ ├── taskplancustomscript2 │ │ └── taskplanrun │ └── uci-defaults │ │ └── luci-taskplan │ └── usr │ ├── bin │ └── taskplanhandler │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-taskplan.json ├── luci-app-chatgpt ├── Makefile ├── doc │ ├── chatgpt1.png │ ├── chatgpt2.png │ └── chatgpt3.png ├── luasrc │ ├── controller │ │ └── chatgpt-web.lua │ ├── model │ │ └── cbi │ │ │ ├── chatgpt-web.lua │ │ │ └── chatgpt.lua │ └── view │ │ └── chatgpt-web.htm ├── po │ └── zh-cn │ │ └── chatgpt-web.po └── root │ ├── etc │ └── config │ │ └── chatgpt-web │ ├── usr │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-chatgpt-web.json │ └── www │ └── luci-static │ └── chatgpt-web │ ├── 11.11.1github.min.css │ ├── chatgpt-web.css │ ├── github-dark-markdown-light.css │ ├── github-markdown-light.css │ ├── github-markdown-light.min.css │ ├── github.min.css │ ├── highlight.min.js │ ├── katex.min.css │ ├── katex.min.js │ ├── list.json │ ├── markdown-it-link-attributes.min.js │ ├── markdown-it.min.js │ ├── mermaid.min.js │ ├── mobile-drag-drop3.0.0-rc.0.min.js │ ├── mobile-drag-drop3.0.0-rc.0default.css │ ├── notyf.min.css │ ├── notyf.min.js │ ├── notyf3.10.0notyf.min.js │ ├── prompts-zh-TW.json │ ├── prompts-zh.json │ ├── prompts.csv │ ├── texmath.css │ ├── texmath.js │ └── user │ ├── boy.jpg │ ├── boy2.jpg │ ├── boy3.jpg │ ├── cartoon.jpg │ ├── cartoonboy.jpg │ ├── cartoonboy2.jpg │ ├── cartoongirl.jpg │ ├── cartoongirl2.jpg │ ├── cartoongirl3.jpg │ ├── dog.jpg │ ├── girl.jpg │ ├── girl2.jpg │ └── girl3.jpg ├── luci-app-cifs-mount ├── Makefile ├── luasrc │ ├── controller │ │ └── cifs.lua │ └── model │ │ └── cbi │ │ └── cifs.lua ├── po │ └── zh-cn │ │ └── cifs.po └── root │ └── etc │ ├── config │ └── cifs │ ├── init.d │ └── cifs │ └── uci-defaults │ └── luci-cifs ├── luci-app-clash ├── Makefile ├── luasrc │ ├── clash.lua │ ├── controller │ │ └── clash.lua │ ├── model │ │ └── cbi │ │ │ └── clash │ │ │ ├── client │ │ │ └── client.lua │ │ │ ├── config │ │ │ ├── config.lua │ │ │ ├── create.lua │ │ │ ├── groups.lua │ │ │ ├── import.lua │ │ │ ├── ip-rules.lua │ │ │ ├── proxy_provider.lua │ │ │ ├── rule_provider.lua │ │ │ ├── ruleprovider_manager.lua │ │ │ ├── rules.lua │ │ │ └── servers-config.lua │ │ │ ├── dns │ │ │ ├── advance.lua │ │ │ ├── dns.lua │ │ │ └── port.lua │ │ │ ├── game │ │ │ ├── game-rule.lua │ │ │ └── game-settings.lua │ │ │ ├── geoip │ │ │ └── geoip.lua │ │ │ ├── logs │ │ │ └── log.lua │ │ │ ├── other.lua │ │ │ ├── overview.lua │ │ │ └── update │ │ │ └── update.lua │ └── view │ │ └── clash │ │ ├── clash_dvalue.htm │ │ ├── clash_upload.htm │ │ ├── conf.htm │ │ ├── core_check.htm │ │ ├── game_rule.htm │ │ ├── geoip.htm │ │ ├── list.htm │ │ ├── other_button.htm │ │ ├── ping.htm │ │ ├── rulep.htm │ │ ├── ssrurl.htm │ │ ├── start_stop.htm │ │ ├── status.htm │ │ ├── status_log.htm │ │ ├── tvalue.htm │ │ ├── update.htm │ │ └── upload_core.htm ├── po │ └── zh-cn │ │ └── clash.po ├── root │ ├── etc │ │ ├── clash │ │ │ └── Country.mmdb │ │ ├── config │ │ │ └── clash │ │ └── init.d │ │ │ └── clash │ └── usr │ │ └── share │ │ ├── clash │ │ ├── backup.sh │ │ ├── check_clashtun_core_version.sh │ │ ├── check_core_version.sh │ │ ├── check_dtun_core_version.sh │ │ ├── check_luci_version.sh │ │ ├── china_ip.txt │ │ ├── chinaipset.sh │ │ ├── clash-watchdog.sh │ │ ├── clash.sh │ │ ├── clash.txt │ │ ├── clash_game_rule.sh │ │ ├── clash_real.txt │ │ ├── core_download.sh │ │ ├── create │ │ │ ├── clash_rule_provider.sh │ │ │ ├── create.sh │ │ │ ├── pgroups.sh │ │ │ ├── rule_provider.list │ │ │ ├── rules.sh │ │ │ └── script.yaml │ │ ├── cuslist.sh │ │ ├── dashboard │ │ │ ├── img │ │ │ │ └── ffac0fa1d89f15922b4594863b8b32e9.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── 1.bundle.658aa6a6e3feec8f168b.min.js │ │ │ │ └── bundle.658aa6a6e3feec8f168b.min.js │ │ │ └── main.658aa6a6e3feec8f168b.css │ │ ├── game-groups.sh │ │ ├── game.sh │ │ ├── geoip.sh │ │ ├── groups.sh │ │ ├── iprules.sh │ │ ├── kill_watchdog.sh │ │ ├── load_groups.sh │ │ ├── logstatus_check │ │ ├── luci_version │ │ ├── restore.sh │ │ ├── rmlist.sh │ │ ├── rule.sh │ │ ├── rule.yaml │ │ ├── rules │ │ │ ├── g_rules │ │ │ │ └── Steam.rules │ │ │ └── rules.list │ │ ├── server.list │ │ ├── update.sh │ │ ├── update_all.sh │ │ ├── uplist.sh │ │ ├── yacd │ │ │ ├── 14.b009c101831cfb4d346c.js │ │ │ ├── CNAME │ │ │ ├── _headers │ │ │ ├── app.5f32612351603f3dc36a.css │ │ │ ├── app.8bd641dadb8c0be21576.js │ │ │ ├── app.8bd641dadb8c0be21576.js.LICENSE.txt │ │ │ ├── config.185469682369eea7ed5e.js │ │ │ ├── config.683c5e4f78100df80abd.css │ │ │ ├── conns.a55d943aa09565fccb1a.js │ │ │ ├── conns.a8987b95653cf010754d.css │ │ │ ├── core-js~app.d6acbd497dd781bcb87a.js │ │ │ ├── index.html │ │ │ ├── logs.367e6b30d27de1213a87.js │ │ │ ├── logs.bf8d3190ebe74f5f5c12.css │ │ │ ├── open-sans-latin-400.woff2 │ │ │ ├── open-sans-latin-700.woff2 │ │ │ ├── proxies.2054c162aeb581d56063.css │ │ │ ├── proxies.fe3172e32076eb8749e4.js │ │ │ ├── react~app.85a6af7ab221658559e3.js │ │ │ ├── react~app.85a6af7ab221658559e3.js.LICENSE.txt │ │ │ ├── report.html │ │ │ ├── roboto-mono-latin-400.woff2 │ │ │ ├── rules.ebacd344d22f80adb7f8.css │ │ │ ├── rules.fe5dbfb2f26ad4211d1e.js │ │ │ ├── runtime.41c657849345d551b223.js │ │ │ ├── vendors~chartjs.c749992ca47ba67623b4.js │ │ │ ├── vendors~chartjs.c749992ca47ba67623b4.js.LICENSE.txt │ │ │ ├── vendors~conns.2d8ba1925a9d128867eb.js │ │ │ ├── vendors~conns~proxies~rules.99b1a71b3d76d3035e41.js │ │ │ ├── vendors~logs~rules.1b69c8ae2dc5929cac38.js │ │ │ ├── vendors~proxies.8fcc0e726f340a602edf.js │ │ │ ├── yacd-128.png │ │ │ ├── yacd-64.png │ │ │ └── yacd.ico │ │ └── yum_change.sh │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-clash.json └── tools │ └── po2lmo │ ├── Makefile │ └── src │ ├── po2lmo.c │ ├── template_lmo.c │ └── template_lmo.h ├── luci-app-cloudflared ├── Makefile ├── luasrc │ ├── controller │ │ └── cloudflared.lua │ ├── model │ │ └── cbi │ │ │ └── cloudflared │ │ │ ├── info.lua │ │ │ └── settings.lua │ └── view │ │ └── cloudflared │ │ └── cloudflared_status.htm └── root │ ├── etc │ ├── cloudflared │ │ └── config.yml │ ├── config │ │ └── cloudflared │ ├── init.d │ │ └── cloudflared │ └── uci-defaults │ │ └── 41_luci-cloudflared │ └── lib │ └── upgrade │ └── keep.d │ └── cloudflared ├── luci-app-cloudflarespeedtest ├── Makefile ├── luasrc │ ├── controller │ │ └── cloudflarespeedtest.lua │ ├── model │ │ └── cbi │ │ │ └── cloudflarespeedtest │ │ │ ├── cloudflarespeedtest.lua │ │ │ └── logread.lua │ └── view │ │ └── cloudflarespeedtest │ │ ├── actions.htm │ │ └── logread.htm ├── po │ └── zh-cn │ │ └── cloudflarespeedtest.po └── root │ ├── etc │ ├── config │ │ └── cloudflarespeedtest │ └── init.d │ │ └── cloudflarespeedtest │ └── usr │ ├── bin │ └── cloudflarespeedtest │ │ ├── aliddns.sh │ │ └── cloudflarespeedtest.sh │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-cloudflarespeedtest.json ├── luci-app-control-timewol ├── Makefile ├── luasrc │ ├── controller │ │ └── timewol.lua │ ├── model │ │ └── cbi │ │ │ └── timewol.lua │ └── view │ │ └── timewol │ │ ├── index.htm │ │ └── timewol.htm ├── po │ └── zh-cn │ │ └── timewol.po └── root │ ├── etc │ ├── config │ │ └── timewol │ ├── init.d │ │ └── timewol │ └── uci-defaults │ │ └── luci-app-control-timewol │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-control-timewol.json ├── luci-app-control-webrestriction ├── Makefile ├── luasrc │ ├── controller │ │ └── webrestriction.lua │ ├── model │ │ └── cbi │ │ │ └── webrestriction.lua │ └── view │ │ └── webrestriction │ │ ├── index.htm │ │ └── webrestriction.htm ├── po │ └── zh-cn │ │ └── webrestriction.po └── root │ ├── etc │ ├── config │ │ └── webrestriction │ ├── init.d │ │ └── webrestriction │ └── uci-defaults │ │ └── luci-app-control-webrestriction │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-control-webrestriction.json ├── luci-app-control-weburl ├── Makefile ├── luasrc │ ├── controller │ │ └── weburl.lua │ ├── model │ │ └── cbi │ │ │ └── weburl.lua │ └── view │ │ └── weburl │ │ ├── index.htm │ │ └── weburl.htm ├── po │ └── zh-cn │ │ └── weburl.po └── root │ ├── etc │ ├── config │ │ └── weburl │ ├── init.d │ │ └── weburl │ └── uci-defaults │ │ └── luci-app-control-weburl │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-control-weburl.json ├── luci-app-cpulimit ├── Makefile ├── luasrc │ ├── controller │ │ └── cpulimit.lua │ └── model │ │ └── cbi │ │ └── cpulimit.lua ├── po │ └── zh-cn │ │ └── cpulimit.po └── root │ ├── etc │ ├── config │ │ └── cpulimit │ └── init.d │ │ └── cpulimit │ └── usr │ ├── bin │ └── cpulimit.sh │ └── share │ ├── rpcd │ └── acl.d │ │ └── luci-app-cpulimit.json │ └── ucitrack │ └── luci-app-cpulimit.json ├── luci-app-ddnsto ├── Makefile ├── luasrc │ ├── controller │ │ └── ddnsto.lua │ ├── model │ │ └── cbi │ │ │ └── ddnsto.lua │ └── view │ │ └── ddnsto │ │ └── main.htm ├── po │ └── zh-cn │ │ └── ddnsto.po └── root │ ├── etc │ └── uci-defaults │ │ └── 50_luci-ddnsto │ └── www │ └── luci-static │ └── ddnsto │ ├── index.js │ └── style.css ├── luci-app-diskman ├── Makefile ├── luasrc │ ├── controller │ │ └── diskman.lua │ ├── model │ │ ├── cbi │ │ │ └── diskman │ │ │ │ ├── btrfs.lua │ │ │ │ ├── disks.lua │ │ │ │ └── partition.lua │ │ └── diskman.lua │ └── view │ │ └── diskman │ │ ├── cbi │ │ ├── disabled_button.htm │ │ ├── format_button.htm │ │ ├── inlinebutton.htm │ │ ├── xnullsection.htm │ │ └── xsimpleform.htm │ │ ├── disk_info.htm │ │ ├── partition_info.htm │ │ └── smart_detail.htm └── po │ ├── zh-cn │ └── diskman.po │ └── zh-tw │ └── diskman.po ├── luci-app-fileassistant ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── fileassistant │ │ ├── fb.css │ │ ├── fb.js │ │ ├── file-icon.png │ │ ├── folder-icon.png │ │ └── link-icon.png └── luasrc │ ├── controller │ └── fileassistant.lua │ └── view │ └── fileassistant.htm ├── luci-app-filebrowser ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── system │ │ └── filebrowser.js ├── po │ ├── ar │ │ └── filebrowser.po │ ├── ast │ │ └── filebrowser.po │ ├── cs │ │ └── filebrowser.po │ ├── da │ │ └── filebrowser.po │ ├── de │ │ └── filebrowser.po │ ├── eo │ │ └── filebrowser.po │ ├── es │ │ └── filebrowser.po │ ├── et │ │ └── filebrowser.po │ ├── fa │ │ └── filebrowser.po │ ├── fi │ │ └── filebrowser.po │ ├── fr │ │ └── filebrowser.po │ ├── ga │ │ └── filebrowser.po │ ├── hu │ │ └── filebrowser.po │ ├── it │ │ └── filebrowser.po │ ├── ja │ │ └── filebrowser.po │ ├── lt │ │ └── filebrowser.po │ ├── lv │ │ └── filebrowser.po │ ├── nl │ │ └── filebrowser.po │ ├── pl │ │ └── filebrowser.po │ ├── pt │ │ └── filebrowser.po │ ├── pt_BR │ │ └── filebrowser.po │ ├── ro │ │ └── filebrowser.po │ ├── ru │ │ └── filebrowser.po │ ├── sk │ │ └── filebrowser.po │ ├── sv │ │ └── filebrowser.po │ ├── ta │ │ └── filebrowser.po │ ├── templates │ │ └── filebrowser.pot │ ├── tr │ │ └── filebrowser.po │ ├── uk │ │ └── filebrowser.po │ ├── vi │ │ └── filebrowser.po │ ├── yua │ │ └── filebrowser.po │ ├── zh-cn │ │ └── filebrowser.po │ └── zh_Hant │ │ └── filebrowser.po └── root │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-filebrowser.json │ └── rpcd │ └── acl.d │ └── luci-app-filebrowser.json ├── luci-app-floatip ├── Makefile ├── luasrc │ ├── controller │ │ └── floatip.lua │ ├── model │ │ └── cbi │ │ │ └── floatip.lua │ └── view │ │ └── floatip_status.htm └── po │ └── zh-cn │ └── floatip.po ├── luci-app-gost ├── Makefile ├── luasrc │ ├── controller │ │ └── gost.lua │ ├── model │ │ └── cbi │ │ │ └── gost.lua │ └── view │ │ └── gost │ │ └── gost_status.htm ├── po │ └── zh-cn │ │ └── gost.po └── root │ ├── etc │ └── uci-defaults │ │ └── gost │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-gost.json ├── luci-app-ikoolproxy ├── Makefile ├── change.log ├── development.doc ├── koolproxy │ ├── Makefile │ └── files │ │ ├── aarch64 │ │ ├── arm │ │ ├── i386 │ │ ├── mips │ │ ├── mipsel │ │ └── x86_64 ├── luasrc │ ├── controller │ │ └── koolproxy.lua │ ├── model │ │ └── cbi │ │ │ └── koolproxy │ │ │ ├── add_rule.lua │ │ │ ├── basic.lua │ │ │ ├── black_list.lua │ │ │ ├── cert.lua │ │ │ ├── control.lua │ │ │ ├── custom_rule.lua │ │ │ ├── ip_black_list.lua │ │ │ ├── ip_white_list.lua │ │ │ ├── rss_rule.lua │ │ │ ├── tips.lua │ │ │ ├── update_log.lua │ │ │ └── white_list.lua │ └── view │ │ └── koolproxy │ │ ├── cadvalue.htm │ │ ├── caupload.htm │ │ ├── koolproxy_status.htm │ │ └── tips.htm └── root │ ├── etc │ ├── adblocklist │ │ ├── adblock │ │ ├── adblockip │ │ ├── adbypass │ │ └── adbypassip │ ├── config │ │ └── koolproxy │ ├── init.d │ │ └── koolproxy │ └── uci-defaults │ │ └── luci-koolproxy │ ├── lib │ └── upgrade │ │ └── keep.d │ │ └── koolproxy │ └── usr │ ├── sbin │ └── adblockplus │ └── share │ ├── koolproxy │ ├── adblock.conf │ ├── camanagement │ ├── data │ │ ├── gen_ca.sh │ │ ├── openssl.cnf │ │ ├── rules │ │ │ └── user.txt │ │ ├── source.list │ │ └── user.txt │ ├── dnsmasq.adblock │ ├── koolproxy_ipset.conf │ └── kpupdate │ ├── rpcd │ └── acl.d │ │ └── luci-app-ikoolproxy.json │ └── ucitrack │ └── luci-app-ikoolproxy.json ├── luci-app-istoreenhance ├── Makefile ├── luasrc │ ├── controller │ │ └── istoreenhance.lua │ ├── model │ │ ├── cbi │ │ │ └── istoreenhance.lua │ │ └── istoreenhance.lua │ └── view │ │ └── istoreenhance_status.htm ├── po │ ├── zh-cn │ │ └── istoreenhance.po │ └── zh_Hans └── root │ └── etc │ └── uci-defaults │ └── 50_luci-istoreenhance ├── luci-app-istorex ├── Makefile ├── htdocs │ └── luci-static │ │ └── istorex │ │ ├── bg.jpg │ │ ├── chunk.167c223d.js │ │ ├── chunk.18e0c91d.js │ │ ├── chunk.211ffb47.js │ │ ├── chunk.2147605f.js │ │ ├── chunk.25dae49f.js │ │ ├── chunk.403244cc.js │ │ ├── chunk.41b74402.js │ │ ├── chunk.42bb6629.js │ │ ├── chunk.4d4bc89c.js │ │ ├── chunk.4f4af73e.js │ │ ├── chunk.5e41a3f0.js │ │ ├── chunk.6d3585bb.js │ │ ├── chunk.6f7d3090.js │ │ ├── chunk.7deee291.js │ │ ├── chunk.83d679c2.js │ │ ├── chunk.8bf617a1.js │ │ ├── chunk.8f1ff823.js │ │ ├── chunk.a1bcc52b.js │ │ ├── chunk.b7ccb4ed.js │ │ ├── chunk.d9ea7f57.js │ │ ├── chunk.de33ea3e.js │ │ ├── chunk.ead1f974.js │ │ ├── chunk.f2b02e0d.js │ │ ├── chunk.fb51d2b2.js │ │ ├── chunk.fdf02bc2.js │ │ ├── chunk.ff94f9f2.js │ │ ├── chunk.ffd7724b.js │ │ ├── copy.png │ │ ├── device.svg │ │ ├── disk.png │ │ ├── file-manage.png │ │ ├── file.png │ │ ├── folder.png │ │ ├── icon_language_auto.png │ │ ├── icon_language_cantonese.png │ │ ├── icon_language_cn.png │ │ ├── icon_language_en.png │ │ ├── image │ │ ├── bg.gif │ │ └── logo.png │ │ ├── index.js │ │ ├── info.svg │ │ ├── logo.png │ │ ├── logout.svg │ │ ├── nas.png │ │ ├── network.png │ │ ├── network.svg │ │ ├── open.svg │ │ ├── partition.png │ │ ├── photo.png │ │ ├── right.svg │ │ ├── safari.svg │ │ ├── setting.png │ │ ├── setting.svg │ │ ├── setup.svg │ │ ├── store@3x.png │ │ ├── style.css │ │ ├── sync.png │ │ ├── tag-0.png │ │ ├── tag-1.png │ │ ├── tag-2.png │ │ ├── tag-3.png │ │ ├── tag-4.png │ │ ├── task.svg │ │ ├── user.png │ │ └── warning.svg ├── luasrc │ ├── controller │ │ └── istorex.lua │ └── view │ │ └── istorex │ │ ├── index.htm │ │ ├── main.htm │ │ └── main_dev.htm └── root │ ├── etc │ ├── config │ │ └── istorex │ └── uci-defaults │ │ └── 50_luci-istorex │ └── usr │ └── share │ └── luci │ └── menu.d │ └── luci-app-istorex.json ├── luci-app-linkease ├── Makefile ├── htdocs │ └── luci-static │ │ └── linkeasefile │ │ ├── chunk.22632dc4.js │ │ ├── chunk.324cab41.js │ │ ├── chunk.4a114b4a.js │ │ ├── chunk.4ea0593d.js │ │ ├── chunk.6424c2fc.js │ │ ├── chunk.7191676b.js │ │ ├── chunk.a0a5dece.js │ │ ├── chunk.a6a47e72.js │ │ ├── chunk.c69499bb.js │ │ ├── chunk.d52f0fe8.js │ │ ├── chunk.dc0a1b58.js │ │ ├── codicon.ttf │ │ ├── icons │ │ ├── archive.png │ │ ├── dir.png │ │ ├── doc.png │ │ ├── error.png │ │ ├── image.png │ │ ├── music.png │ │ ├── notfound.png │ │ ├── other.png │ │ └── video.png │ │ ├── index.js │ │ └── style.css ├── luasrc │ ├── controller │ │ ├── linkease.lua │ │ └── linkease_backend.lua │ ├── model │ │ └── cbi │ │ │ └── linkease.lua │ └── view │ │ ├── admin_status │ │ └── index │ │ │ └── linkease.htm │ │ ├── linkease │ │ └── file.htm │ │ └── linkease_status.htm ├── po │ └── zh-cn │ │ └── linkease.po └── root │ └── etc │ └── uci-defaults │ └── 50_luci-linkease ├── luci-app-lucky ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── lucky │ │ ├── config.js │ │ └── lucky.js ├── po │ └── zh-cn │ │ └── lucky.po └── root │ ├── etc │ └── uci-defaults │ │ └── luci-app-lucky │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-lucky.json │ └── rpcd │ ├── acl.d │ └── luci-app-lucky.json │ └── ucode │ └── luci.lucky ├── luci-app-mosdns ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ ├── codemirror5 │ │ ├── addon │ │ │ ├── display │ │ │ │ └── autorefresh.min.js │ │ │ └── lint │ │ │ │ ├── lint.min.css │ │ │ │ ├── lint.min.js │ │ │ │ └── yaml-lint.min.js │ │ ├── codemirror.min.css │ │ ├── codemirror.min.js │ │ ├── libs │ │ │ └── js-yaml.min.js │ │ ├── mode │ │ │ └── yaml │ │ │ │ └── yaml.min.js │ │ └── theme │ │ │ └── dracula.min.css │ │ └── view │ │ └── mosdns │ │ ├── basic.js │ │ ├── logs.js │ │ ├── rules.js │ │ └── update.js ├── po │ └── zh-cn │ │ └── mosdns.po └── root │ ├── etc │ ├── config │ │ └── mosdns │ ├── hotplug.d │ │ └── iface │ │ │ └── 99-mosdns │ ├── init.d │ │ └── mosdns │ ├── mosdns │ │ ├── config_custom.yaml │ │ └── rule │ │ │ ├── blocklist.txt │ │ │ ├── cloudflare-cidr.txt │ │ │ ├── ddnslist.txt │ │ │ ├── greylist.txt │ │ │ ├── hosts.txt │ │ │ ├── local-ptr.txt │ │ │ ├── redirect.txt │ │ │ ├── streaming.txt │ │ │ └── whitelist.txt │ └── uci-defaults │ │ └── luci-mosdns │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-mosdns.json │ ├── mosdns │ ├── cache.dump │ └── mosdns.sh │ ├── rpcd │ └── acl.d │ │ └── luci-app-mosdns.json │ └── ucitrack │ └── luci-app-mosdns.json ├── luci-app-msd_lite ├── Makefile ├── luasrc │ ├── controller │ │ └── msd_lite.lua │ ├── model │ │ └── cbi │ │ │ └── msd_lite.lua │ └── view │ │ └── msd_lite │ │ └── msd_lite_status.htm ├── po │ └── zh-cn │ │ └── msd_lite.po └── root │ └── etc │ └── uci-defaults │ └── 40_luci-msd_lite ├── luci-app-natter ├── Makefile ├── luasrc │ ├── controller │ │ └── natter.lua │ ├── model │ │ └── cbi │ │ │ └── natter │ │ │ ├── base.lua │ │ │ ├── log.lua │ │ │ └── ports.lua │ └── view │ │ └── natter │ │ └── natter_log.htm ├── po │ └── zh-cn │ │ └── natter.po └── root │ ├── etc │ ├── config │ │ └── natter │ ├── init.d │ │ └── natter │ └── uci-defaults │ │ └── luci-natter │ └── usr │ └── share │ └── luci-app-natter │ ├── log.sh │ └── natcheck.sh ├── luci-app-netdata └── luci-app-netdata │ ├── Makefile │ ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── netdata │ │ ├── basic.js │ │ ├── config.js │ │ └── netdata.js │ ├── po │ └── zh-cn │ │ └── netdata.po │ └── root │ ├── etc │ └── uci-defaults │ │ └── luci-app-netdata │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-netdata.json │ ├── netdata │ └── webcn │ │ ├── netdata.conf │ │ ├── netdata.config │ │ └── netdata.init │ └── rpcd │ ├── acl.d │ └── luci-app-netdata.json │ └── ucode │ └── luci.netdata ├── luci-app-netwizard ├── doc │ ├── netwizard1.png │ ├── netwizard2.png │ └── netwizard3.png └── luci-app-netwizard │ ├── Makefile │ ├── luasrc │ ├── controller │ │ └── netwizard.lua │ └── model │ │ └── cbi │ │ └── netwizard │ │ └── netwizard.lua │ ├── po │ └── zh-cn │ │ └── netwizard.po │ └── root │ ├── etc │ ├── config │ │ └── netwizard │ ├── init.d │ │ └── netwizard │ └── uci-defaults │ │ └── luci-netwizard-defaults │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-netwizard.json ├── luci-app-nezha-agent ├── Makefile ├── luasrc │ ├── controller │ │ └── nezha-agent.lua │ ├── model │ │ └── cbi │ │ │ └── nezha-agent.lua │ └── view │ │ └── nezha-agent │ │ └── nezha-agent_status.htm └── root │ └── etc │ ├── config │ └── nezha-agent │ ├── init.d │ └── nezha-agent │ └── uci-defaults │ └── luci-nezha-agent ├── luci-app-nginx-manager ├── Makefile ├── luasrc │ ├── controller │ │ └── nginx-manager.lua │ ├── model │ │ └── cbi │ │ │ └── nginx-manager.lua │ └── view │ │ └── nginx-manager │ │ └── index.htm ├── po │ └── zh-cn │ │ └── nginx-manager.po └── root │ ├── etc │ ├── nginx │ │ └── conf.d │ │ │ └── templates │ └── uci-defaults │ │ └── luci-app-nginx-manager │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-nginx-manager.json ├── luci-app-nginx-pingos ├── Makefile ├── luasrc │ ├── controller │ │ └── pingos.lua │ ├── model │ │ └── cbi │ │ │ └── pingos.lua │ └── view │ │ └── pingos │ │ └── status.htm ├── modules │ ├── nginx-client-module │ │ ├── COPYRIGHT │ │ ├── config │ │ ├── ngx_client.c │ │ ├── ngx_client.h │ │ ├── ngx_http_client.c │ │ ├── ngx_http_client.h │ │ └── t │ │ │ ├── config │ │ │ ├── nginx.conf │ │ │ ├── ngx_client_stat_module.c │ │ │ ├── ngx_client_test_module.c │ │ │ ├── ngx_http_client_test_module.c │ │ │ └── tcpserver.go │ ├── nginx-multiport-module │ │ ├── COPYRIGHT │ │ ├── config │ │ ├── ngx_event_multiport_module.c │ │ ├── ngx_http_broadcast_module.c │ │ ├── ngx_http_inner_proxy_module.c │ │ ├── ngx_multiport.h │ │ ├── ngx_multiport_misc.c │ │ ├── ngx_process_slot_module.c │ │ ├── ngx_stream_zone_module.c │ │ ├── ngx_stream_zone_module.h │ │ └── t │ │ │ ├── config │ │ │ ├── nginx.conf │ │ │ ├── ngx_multiport_test_module.c │ │ │ ├── ngx_stream_zone_test_module.c │ │ │ └── ngx_test_macro.h │ ├── nginx-rtmp-module │ │ ├── AUTHORS │ │ ├── config │ │ ├── dash │ │ │ ├── ngx_rtmp_dash_module.c │ │ │ ├── ngx_rtmp_mp4.c │ │ │ └── ngx_rtmp_mp4.h │ │ ├── hls │ │ │ ├── ngx_rtmp_hls_module.c │ │ │ ├── ngx_rtmp_mpegts.c │ │ │ └── ngx_rtmp_mpegts.h │ │ ├── http │ │ │ ├── ngx_http_flv_live_module.c │ │ │ ├── ngx_http_set_header.c │ │ │ └── ngx_http_set_header.h │ │ ├── mpegts │ │ │ ├── ngx_hls_http_module.c │ │ │ ├── ngx_hls_live_module.c │ │ │ ├── ngx_hls_live_module.h │ │ │ ├── ngx_mpegts_gop_module.c │ │ │ ├── ngx_mpegts_gop_module.h │ │ │ ├── ngx_mpegts_http_module.c │ │ │ ├── ngx_mpegts_live_module.c │ │ │ └── ngx_mpegts_live_module.h │ │ ├── ngx_live.c │ │ ├── ngx_live.h │ │ ├── ngx_live_record.c │ │ ├── ngx_live_record.h │ │ ├── ngx_live_relay.c │ │ ├── ngx_live_relay.h │ │ ├── ngx_live_relay_httpflv.c │ │ ├── ngx_live_relay_inner.c │ │ ├── ngx_live_relay_rtmp.c │ │ ├── ngx_live_relay_simple.c │ │ ├── ngx_live_relay_static.c │ │ ├── ngx_netcall.c │ │ ├── ngx_netcall.h │ │ ├── ngx_rtmp.c │ │ ├── ngx_rtmp.h │ │ ├── ngx_rtmp_access_module.c │ │ ├── ngx_rtmp_amf.c │ │ ├── ngx_rtmp_amf.h │ │ ├── ngx_rtmp_bandwidth.c │ │ ├── ngx_rtmp_bandwidth.h │ │ ├── ngx_rtmp_bitop.c │ │ ├── ngx_rtmp_bitop.h │ │ ├── ngx_rtmp_cmd_module.c │ │ ├── ngx_rtmp_cmd_module.h │ │ ├── ngx_rtmp_codec_module.c │ │ ├── ngx_rtmp_codec_module.h │ │ ├── ngx_rtmp_control_module.c │ │ ├── ngx_rtmp_core_module.c │ │ ├── ngx_rtmp_dynamic.c │ │ ├── ngx_rtmp_dynamic.h │ │ ├── ngx_rtmp_eval.c │ │ ├── ngx_rtmp_eval.h │ │ ├── ngx_rtmp_exec_module.c │ │ ├── ngx_rtmp_gop_module.c │ │ ├── ngx_rtmp_handler.c │ │ ├── ngx_rtmp_handshake.c │ │ ├── ngx_rtmp_init.c │ │ ├── ngx_rtmp_limit_module.c │ │ ├── ngx_rtmp_live_module.c │ │ ├── ngx_rtmp_live_module.h │ │ ├── ngx_rtmp_log_module.c │ │ ├── ngx_rtmp_monitor_module.c │ │ ├── ngx_rtmp_monitor_module.h │ │ ├── ngx_rtmp_notify_module.c │ │ ├── ngx_rtmp_notify_module.h │ │ ├── ngx_rtmp_proxy_protocol.c │ │ ├── ngx_rtmp_proxy_protocol.h │ │ ├── ngx_rtmp_receive.c │ │ ├── ngx_rtmp_record_module.c │ │ ├── ngx_rtmp_record_module.h │ │ ├── ngx_rtmp_send.c │ │ ├── ngx_rtmp_shared_module.c │ │ ├── ngx_rtmp_stat_module.c │ │ ├── ngx_rtmp_streams.h │ │ ├── ngx_rtmp_sys_stat_module.c │ │ ├── ngx_rtmp_variables.c │ │ ├── ngx_rtmp_variables.h │ │ └── ngx_rtmp_version.h │ ├── nginx-toolkit-module │ │ ├── COPYRIGHT │ │ ├── config │ │ ├── ngx_dynamic_conf.c │ │ ├── ngx_dynamic_conf.h │ │ ├── ngx_dynamic_resolver.c │ │ ├── ngx_dynamic_resolver.h │ │ ├── ngx_event_resolver.c │ │ ├── ngx_event_resolver.h │ │ ├── ngx_event_timer_module.c │ │ ├── ngx_event_timer_module.h │ │ ├── ngx_http_dynamic.c │ │ ├── ngx_http_dynamic.h │ │ ├── ngx_http_trace_module.c │ │ ├── ngx_map.c │ │ ├── ngx_map.h │ │ ├── ngx_poold.c │ │ ├── ngx_poold.h │ │ ├── ngx_rbuf.c │ │ ├── ngx_rbuf.h │ │ ├── ngx_timerd.c │ │ ├── ngx_timerd.h │ │ ├── ngx_toolkit_misc.c │ │ ├── ngx_toolkit_misc.h │ │ └── t │ │ │ ├── config │ │ │ ├── dns_install.sh │ │ │ ├── md5testfile │ │ │ ├── named.conf │ │ │ ├── nginx.conf │ │ │ ├── nginx_dynamic.conf │ │ │ ├── ngx_dynamic_conf_test_module.c │ │ │ ├── ngx_dynamic_resolver_test_module.c │ │ │ ├── ngx_event_resolver_test_module.c │ │ │ ├── ngx_event_timer_test_module.c │ │ │ ├── ngx_http_dynamic_test_module.c │ │ │ ├── ngx_map_test_module.c │ │ │ ├── ngx_poold_test_module.c │ │ │ ├── ngx_rbuf_test_module.c │ │ │ ├── ngx_test_macro.h │ │ │ ├── ngx_timerd_test_module.c │ │ │ ├── ngx_toolkit_misc_test_module.c │ │ │ ├── test.com.zone │ │ │ └── test1.com.zone │ └── nginx-ts-module │ │ ├── README.rst │ │ ├── config │ │ └── src │ │ ├── ngx_http_ts_module.c │ │ ├── ngx_stream_ts_module.c │ │ ├── ngx_ts_aac.c │ │ ├── ngx_ts_aac.h │ │ ├── ngx_ts_avc.c │ │ ├── ngx_ts_avc.h │ │ ├── ngx_ts_dash.c │ │ ├── ngx_ts_dash.h │ │ ├── ngx_ts_dash_mp4.c │ │ ├── ngx_ts_hls.c │ │ ├── ngx_ts_hls.h │ │ ├── ngx_ts_stream.c │ │ └── ngx_ts_stream.h ├── patches │ ├── 101-feature_test_fix.patch │ ├── 102-sizeof_test_fix.patch │ ├── 103-sys_nerr.patch │ ├── 104-endianness_fix.patch │ ├── 200-config.patch │ └── 201-ignore-invalid-options.patch ├── po │ └── zh-cn │ │ └── pingos.po └── root │ ├── etc │ ├── config │ │ └── pingos │ ├── init.d │ │ └── pingos │ ├── pingos.template │ └── uci-defaults │ │ └── luci-app-nginx-pingos │ ├── resource │ ├── conf-template │ │ └── nginx.conf │ ├── crossdomain.xml │ └── stat.xsl │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-nginx-pingos.json ├── luci-app-nodogsplash ├── Makefile ├── luasrc │ ├── controller │ │ └── nodogsplash.lua │ ├── model │ │ └── cbi │ │ │ └── nodogsplash.lua │ └── view │ │ └── nodogsplash │ │ └── nodogsplash_status.htm └── po │ └── zh-cn │ └── nodogsplash.po ├── luci-app-oaf ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ ├── app_icons │ │ ├── 10001.png │ │ ├── 10002.png │ │ ├── 10003.png │ │ ├── 10004.png │ │ ├── 10005.png │ │ ├── 10006.png │ │ ├── 10007.png │ │ ├── 10008.png │ │ ├── 1001.png │ │ ├── 10010.png │ │ ├── 10011.png │ │ ├── 10012.png │ │ ├── 10013.png │ │ ├── 10014.png │ │ ├── 10015.png │ │ ├── 10016.png │ │ ├── 10017.png │ │ ├── 10018.png │ │ ├── 10019.png │ │ ├── 1002.png │ │ ├── 10020.png │ │ ├── 10021.png │ │ ├── 10022.png │ │ ├── 10023.png │ │ ├── 10024.png │ │ ├── 10025.png │ │ ├── 10026.png │ │ ├── 10027.png │ │ ├── 10028.png │ │ ├── 10029.png │ │ ├── 1003.png │ │ ├── 10030.png │ │ ├── 10031.png │ │ ├── 10032.png │ │ ├── 10033.png │ │ ├── 10034.png │ │ ├── 10035.png │ │ ├── 10036.png │ │ ├── 10037.png │ │ ├── 10038.png │ │ ├── 10039.png │ │ ├── 1004.png │ │ ├── 10040.png │ │ ├── 1005.png │ │ ├── 1006.png │ │ ├── 1007.png │ │ ├── 1008.png │ │ ├── 1009.png │ │ ├── 10099.png │ │ ├── 1010.png │ │ ├── 1011.png │ │ ├── 1012.png │ │ ├── 1013.png │ │ ├── 1014.png │ │ ├── 1016.png │ │ ├── 1018.png │ │ ├── 1019.png │ │ ├── 11001.png │ │ ├── 11002.png │ │ ├── 11003.png │ │ ├── 14001.png │ │ ├── 14002.png │ │ ├── 14003.png │ │ ├── 14004.png │ │ ├── 14005.png │ │ ├── 14006.png │ │ ├── 14007.png │ │ ├── 14008.png │ │ ├── 14009.png │ │ ├── 14010.png │ │ ├── 14011.png │ │ ├── 14012.png │ │ ├── 14013.png │ │ ├── 14014.png │ │ ├── 14015.png │ │ ├── 14016.png │ │ ├── 14017.png │ │ ├── 14018.png │ │ ├── 14019.png │ │ ├── 14020.png │ │ ├── 14021.png │ │ ├── 14022.png │ │ ├── 14023.png │ │ ├── 14024.png │ │ ├── 14025.png │ │ ├── 14026.png │ │ ├── 14027.png │ │ ├── 2001.png │ │ ├── 2002.png │ │ ├── 2003.png │ │ ├── 2004.png │ │ ├── 2005.png │ │ ├── 2006.png │ │ ├── 2007.png │ │ ├── 2008.png │ │ ├── 2009.png │ │ ├── 2010.png │ │ ├── 2011.png │ │ ├── 2012.png │ │ ├── 2013.png │ │ ├── 2014.png │ │ ├── 2015.png │ │ ├── 2016.png │ │ ├── 2017.png │ │ ├── 2018.png │ │ ├── 2019.png │ │ ├── 2020.png │ │ ├── 2021.png │ │ ├── 2022.png │ │ ├── 2023.png │ │ ├── 2025.png │ │ ├── 2026.png │ │ ├── 2027.png │ │ ├── 2028.png │ │ ├── 2030.png │ │ ├── 2031.png │ │ ├── 2032.png │ │ ├── 2033.png │ │ ├── 2034.png │ │ ├── 2035.png │ │ ├── 2036.png │ │ ├── 2037.png │ │ ├── 2039.png │ │ ├── 2040.png │ │ ├── 2041.png │ │ ├── 2042.png │ │ ├── 2043.png │ │ ├── 2050.png │ │ ├── 2051.png │ │ ├── 2052.png │ │ ├── 2053.png │ │ ├── 2054.png │ │ ├── 2055.png │ │ ├── 2056.png │ │ ├── 2057.png │ │ ├── 2058.png │ │ ├── 2059.png │ │ ├── 2060.png │ │ ├── 2061.png │ │ ├── 2067.png │ │ ├── 2068.png │ │ ├── 2069.png │ │ ├── 2070.png │ │ ├── 2071.png │ │ ├── 2072.png │ │ ├── 2073.png │ │ ├── 2074.png │ │ ├── 2075.png │ │ ├── 2076.png │ │ ├── 2077.png │ │ ├── 2078.png │ │ ├── 2079.png │ │ ├── 2080.png │ │ ├── 2081.png │ │ ├── 2082.png │ │ ├── 2083.png │ │ ├── 2084.png │ │ ├── 2085.png │ │ ├── 2087.png │ │ ├── 2088.png │ │ ├── 2089.png │ │ ├── 2093.png │ │ ├── 2098.png │ │ ├── 2099.png │ │ ├── 2100.png │ │ ├── 2101.png │ │ ├── 2102.png │ │ ├── 2103.png │ │ ├── 2104.png │ │ ├── 2105.png │ │ ├── 2106.png │ │ ├── 2107.png │ │ ├── 2108.png │ │ ├── 2109.png │ │ ├── 2110.png │ │ ├── 2111.png │ │ ├── 2112.png │ │ ├── 2113.png │ │ ├── 2115.png │ │ ├── 2116.png │ │ ├── 3001.png │ │ ├── 3002.png │ │ ├── 3003.png │ │ ├── 3004.png │ │ ├── 3005.png │ │ ├── 3006.png │ │ ├── 3008.png │ │ ├── 3009.png │ │ ├── 3010.png │ │ ├── 3011.png │ │ ├── 3012.png │ │ ├── 3014.png │ │ ├── 3016.png │ │ ├── 3017.png │ │ ├── 3018.png │ │ ├── 3019.png │ │ ├── 3020.png │ │ ├── 3021.png │ │ ├── 3022.png │ │ ├── 3023.png │ │ ├── 3024.png │ │ ├── 3025.png │ │ ├── 3026.png │ │ ├── 3027.png │ │ ├── 3028.png │ │ ├── 3029.png │ │ ├── 3030.png │ │ ├── 3031.png │ │ ├── 3032.png │ │ ├── 3033.png │ │ ├── 3034.png │ │ ├── 3035.png │ │ ├── 3038.png │ │ ├── 3039.png │ │ ├── 3042.png │ │ ├── 3043.png │ │ ├── 3044.png │ │ ├── 3045.png │ │ ├── 3046.png │ │ ├── 3047.png │ │ ├── 3048.png │ │ ├── 3049.png │ │ ├── 3050.png │ │ ├── 3051.png │ │ ├── 3052.png │ │ ├── 3053.png │ │ ├── 3054.png │ │ ├── 3055.png │ │ ├── 3056.png │ │ ├── 3057.png │ │ ├── 3058.png │ │ ├── 3059.png │ │ ├── 3060.png │ │ ├── 3061.png │ │ ├── 3062.png │ │ ├── 3063.png │ │ ├── 3064.png │ │ ├── 3065.png │ │ ├── 3066.png │ │ ├── 3067.png │ │ ├── 3068.png │ │ ├── 3069.png │ │ ├── 3070.png │ │ ├── 3071.png │ │ ├── 3072.png │ │ ├── 3073.png │ │ ├── 3074.png │ │ ├── 3075.png │ │ ├── 3077.png │ │ ├── 3078.png │ │ ├── 3079.png │ │ ├── 3081.png │ │ ├── 3082.png │ │ ├── 3083.png │ │ ├── 3084.png │ │ ├── 3085.png │ │ ├── 3086.png │ │ ├── 3087.png │ │ ├── 3088.png │ │ ├── 3089.png │ │ ├── 3090.png │ │ ├── 3091.png │ │ ├── 3092.png │ │ ├── 3093.png │ │ ├── 3094.png │ │ ├── 3095.png │ │ ├── 3096.png │ │ ├── 3097.png │ │ ├── 3100.png │ │ ├── 3101.png │ │ ├── 3102.png │ │ ├── 3103.png │ │ ├── 3104.png │ │ ├── 3105.png │ │ ├── 3106.png │ │ ├── 3107.png │ │ ├── 3108.png │ │ ├── 3109.png │ │ ├── 3110.png │ │ ├── 3111.png │ │ ├── 3112.png │ │ ├── 3113.png │ │ ├── 3114.png │ │ ├── 3115.png │ │ ├── 3116.png │ │ ├── 3117.png │ │ ├── 3118.png │ │ ├── 3119.png │ │ ├── 3120.png │ │ ├── 3121.png │ │ ├── 3122.png │ │ ├── 3123.png │ │ ├── 3124.png │ │ ├── 3125.png │ │ ├── 3126.png │ │ ├── 3127.png │ │ ├── 3128.png │ │ ├── 3129.png │ │ ├── 3130.png │ │ ├── 3131.png │ │ ├── 3132.png │ │ ├── 3133.png │ │ ├── 3134.png │ │ ├── 3135.png │ │ ├── 3136.png │ │ ├── 3137.png │ │ ├── 3138.png │ │ ├── 3139.png │ │ ├── 3140.png │ │ ├── 3141.png │ │ ├── 3142.png │ │ ├── 3143.png │ │ ├── 3144.png │ │ ├── 3145.png │ │ ├── 3146.png │ │ ├── 3147.png │ │ ├── 3148.png │ │ ├── 3149.png │ │ ├── 3150.png │ │ ├── 3151.png │ │ ├── 3152.png │ │ ├── 3153.png │ │ ├── 3154.png │ │ ├── 3155.png │ │ ├── 3156.png │ │ ├── 3157.png │ │ ├── 3158.png │ │ ├── 3159.png │ │ ├── 4001.png │ │ ├── 4002.png │ │ ├── 4003.png │ │ ├── 4004.png │ │ ├── 4005.png │ │ ├── 4006.png │ │ ├── 4007.png │ │ ├── 4008.png │ │ ├── 4009.png │ │ ├── 4010.png │ │ ├── 4012.png │ │ ├── 4013.png │ │ ├── 4014.png │ │ ├── 4015.png │ │ ├── 4016.png │ │ ├── 4018.png │ │ ├── 4019.png │ │ ├── 4020.png │ │ ├── 4021.png │ │ ├── 4022.png │ │ ├── 4023.png │ │ ├── 4024.png │ │ ├── 4025.png │ │ ├── 4026.png │ │ ├── 4027.png │ │ ├── 4028.png │ │ ├── 4029.png │ │ ├── 4030.png │ │ ├── 4031.png │ │ ├── 4032.png │ │ ├── 4033.png │ │ ├── 4034.png │ │ ├── 4035.png │ │ ├── 4036.png │ │ ├── 4039.png │ │ ├── 4040.png │ │ ├── 4041.png │ │ ├── 4052.png │ │ ├── 4053.png │ │ ├── 4054.png │ │ ├── 4055.png │ │ ├── 4056.png │ │ ├── 4057.png │ │ ├── 4058.png │ │ ├── 4059.png │ │ ├── 5001.png │ │ ├── 5002.png │ │ ├── 5003.png │ │ ├── 5004.png │ │ ├── 5005.png │ │ ├── 5006.png │ │ ├── 5007.png │ │ ├── 5008.png │ │ ├── 5009.png │ │ ├── 5010.png │ │ ├── 5011.png │ │ ├── 5012.png │ │ ├── 5013.png │ │ ├── 5014.png │ │ ├── 5015.png │ │ ├── 5016.png │ │ ├── 6001.png │ │ ├── 6002.png │ │ ├── 6003.png │ │ ├── 6004.png │ │ ├── 6005.png │ │ ├── 6006.png │ │ ├── 6007.png │ │ ├── 6008.png │ │ ├── 6009.png │ │ ├── 6010.png │ │ ├── 6011.png │ │ ├── 6012.png │ │ ├── 6013.png │ │ ├── 6014.png │ │ ├── 7001.png │ │ ├── 7002.png │ │ ├── 7003.png │ │ ├── 7004.png │ │ ├── 7005.png │ │ ├── 7006.png │ │ ├── 7007.png │ │ ├── 7008.png │ │ ├── 7009.png │ │ ├── 7010.png │ │ ├── 7011.png │ │ ├── 7012.png │ │ ├── 7013.png │ │ ├── 7020.png │ │ ├── 7021.png │ │ ├── 7030.png │ │ ├── 7031.png │ │ ├── 7032.png │ │ ├── 7035.png │ │ ├── 7036.png │ │ ├── 7038.png │ │ ├── 7040.png │ │ ├── 7041.png │ │ ├── 7042.png │ │ ├── 7043.png │ │ ├── 7044.png │ │ ├── 7045.png │ │ ├── 7046.png │ │ ├── 7047.png │ │ ├── 8001.png │ │ ├── 8002.png │ │ ├── 8003.png │ │ ├── 8004.png │ │ ├── 8005.png │ │ ├── 8006.png │ │ ├── 8008.png │ │ ├── 8009.png │ │ ├── 8010.png │ │ ├── 8017.png │ │ ├── 8018.png │ │ ├── 8019.png │ │ ├── 8020.png │ │ ├── 8021.png │ │ ├── 8022.png │ │ ├── 8023.png │ │ ├── 8024.png │ │ ├── 8025.png │ │ ├── 8026.png │ │ ├── 8027.png │ │ ├── 8028.png │ │ ├── 8029.png │ │ ├── 8030.png │ │ ├── 8031.png │ │ ├── 8032.png │ │ ├── 8033.png │ │ ├── 8034.png │ │ ├── 8035.png │ │ ├── 8036.png │ │ ├── 8037.png │ │ ├── 8038.png │ │ ├── 8039.png │ │ ├── 8040.png │ │ ├── 8041.png │ │ ├── 8042.png │ │ ├── 8043.png │ │ ├── 8044.png │ │ ├── 8045.png │ │ ├── 8046.png │ │ ├── 8047.png │ │ ├── 8048.png │ │ ├── 8049.png │ │ ├── 8050.png │ │ ├── 8051.png │ │ ├── 8052.png │ │ ├── 8053.png │ │ ├── 8054.png │ │ ├── 8055.png │ │ ├── 8056.png │ │ ├── 8057.png │ │ ├── 8058.png │ │ ├── 8059.png │ │ ├── 8060.png │ │ ├── 8061.png │ │ ├── 8062.png │ │ ├── 8063.png │ │ ├── 8064.png │ │ ├── 8065.png │ │ ├── 8066.png │ │ ├── 8067.png │ │ ├── 8068.png │ │ ├── 8069.png │ │ ├── 8070.png │ │ ├── 8071.png │ │ ├── 8072.png │ │ ├── 8073.png │ │ ├── 8074.png │ │ ├── 8075.png │ │ ├── 8076.png │ │ ├── 8077.png │ │ ├── 8079.png │ │ ├── 8087.png │ │ ├── 8089.png │ │ ├── 8090.png │ │ ├── 8092.png │ │ ├── 8093.png │ │ ├── 8096.png │ │ ├── 8098.png │ │ ├── 8099.png │ │ ├── 8100.png │ │ ├── 8101.png │ │ ├── 8102.png │ │ ├── 8103.png │ │ ├── 8104.png │ │ ├── 8105.png │ │ ├── 8106.png │ │ ├── 8107.png │ │ ├── 8108.png │ │ ├── 8109.png │ │ ├── 8110.png │ │ ├── 8111.png │ │ ├── 8112.png │ │ ├── 8116.png │ │ ├── 8118.png │ │ ├── 8119.png │ │ ├── 8120.png │ │ ├── 8121.png │ │ ├── 8122.png │ │ ├── 8123.png │ │ ├── 8125.png │ │ ├── 8127.png │ │ ├── 8128.png │ │ ├── 8129.png │ │ ├── 8131.png │ │ ├── 8132.png │ │ ├── 8133.png │ │ ├── 8134.png │ │ ├── 8135.png │ │ ├── 8136.png │ │ ├── 8137.png │ │ ├── 8138.png │ │ ├── 8142.png │ │ ├── 8143.png │ │ ├── 8144.png │ │ ├── 8145.png │ │ ├── 8146.png │ │ ├── 8147.png │ │ ├── 9001.png │ │ ├── 9010.png │ │ ├── 9030.png │ │ ├── 9040.png │ │ └── default.png │ │ ├── css │ │ └── common.css │ │ ├── echarts.min.js │ │ └── icons │ │ └── arrow.png ├── luasrc │ ├── controller │ │ └── appfilter.lua │ ├── model │ │ └── cbi │ │ │ └── appfilter │ │ │ ├── advance.lua │ │ │ ├── app_filter.lua │ │ │ ├── base_setting.lua │ │ │ ├── dev_status.lua │ │ │ ├── feature.lua │ │ │ ├── overview.lua │ │ │ ├── time.lua │ │ │ ├── time_setting.lua │ │ │ ├── user.lua │ │ │ ├── user_list.lua │ │ │ └── user_setting.lua │ └── view │ │ ├── admin_network │ │ ├── advance.htm │ │ ├── app_filter.htm │ │ ├── dev_status.htm │ │ ├── time.htm │ │ ├── user.htm │ │ └── user_status.htm │ │ └── cbi │ │ ├── oaf_dvalue.htm │ │ └── oaf_upload.htm ├── po │ └── zh-cn │ │ └── oaf.po └── root │ ├── etc │ └── uci-defaults │ │ └── 94_feature_3.0 │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-oaf.json ├── luci-app-oled ├── linux │ ├── ssd1306.cfg │ └── ssd1306.service └── luci-app-oled │ ├── Makefile │ ├── luasrc │ ├── controller │ │ └── oled.lua │ ├── model │ │ └── cbi │ │ │ └── oled │ │ │ └── setting.lua │ └── view │ │ └── oled │ │ └── status.htm │ ├── po │ ├── zh-cn │ │ └── oled.po │ ├── zh-tw │ └── zh_Hant │ │ └── oled.po │ ├── root │ ├── etc │ │ ├── config │ │ │ └── oled │ │ ├── init.d │ │ │ └── oled │ │ └── uci-defaults │ │ │ └── oled │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-oled.json │ └── src │ ├── Example_Code │ ├── .clang-format │ ├── example_app.c │ ├── example_app.h │ └── main.c │ ├── I2C_Library │ ├── .clang-format │ ├── I2C.c │ └── I2C.h │ ├── Makefile │ └── SSD1306_OLED_Library │ ├── .clang-format │ ├── SSD1306_OLED.c │ ├── SSD1306_OLED.h │ └── gfxfont.h ├── luci-app-onliner ├── Makefile ├── luasrc │ ├── controller │ │ └── onliner.lua │ └── view │ │ └── onliner │ │ ├── display.htm │ │ └── onliner.htm └── root │ └── usr │ └── share │ └── onliner │ └── setnlbw.sh ├── luci-app-oscam ├── Makefile ├── luasrc │ ├── controller │ │ └── oscam.lua │ └── model │ │ └── cbi │ │ └── oscam.lua ├── po │ └── zh-cn │ │ └── oscam.po └── root │ ├── etc │ ├── config │ │ └── oscam │ └── uci-defaults │ │ └── luci-oscam │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-oscam.json ├── luci-app-parentcontrol ├── Makefile ├── doc │ ├── parentcontrol1.png │ ├── parentcontrol2.png │ └── parentcontrol3.png ├── luasrc │ ├── controller │ │ └── parentcontrol.lua │ ├── model │ │ └── cbi │ │ │ └── parentcontrol │ │ │ ├── protocol.lua │ │ │ ├── time.lua │ │ │ └── weburl.lua │ └── view │ │ └── parentcontrol │ │ ├── index.htm │ │ └── parentcontrol.htm ├── po │ └── zh-cn │ │ └── parentcontrol.po └── root │ ├── etc │ ├── config │ │ └── parentcontrol │ ├── hotplug.d │ │ └── iface │ │ │ └── 97-parentcontrol │ ├── init.d │ │ └── parentcontrol │ ├── parentcontrol.include │ ├── parentcontrol │ │ ├── black.list │ │ └── white.list │ └── uci-defaults │ │ └── luci-app-parentcontrol │ └── usr │ └── share │ ├── rpcd │ └── acl.d │ │ └── luci-app-parentcontrol.json │ └── ucitrack │ └── luci-app-parentcontrol.json ├── luci-app-partexp ├── doc │ ├── partexp0.png │ ├── partexp1.png │ └── partexp2.png └── luci-app-partexp │ ├── Makefile │ ├── luasrc │ ├── controller │ │ └── partexp.lua │ ├── model │ │ └── cbi │ │ │ └── partexp │ │ │ └── global.lua │ └── view │ │ ├── partexp.htm │ │ ├── partexplog.htm │ │ └── partexplogrun.htm │ ├── po │ └── zh-cn │ │ └── partexp.po │ └── root │ ├── etc │ ├── config │ │ └── partexp │ ├── init.d │ │ └── partexp │ ├── partexp │ │ ├── lucilogpos │ │ └── partexp.log │ └── uci-defaults │ │ └── 40_luci-partexp │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-partexp.json ├── luci-app-poweroff ├── Makefile ├── luasrc │ ├── controller │ │ └── poweroff.lua │ └── view │ │ └── poweroff.htm └── po │ ├── ja │ └── poweroff.po │ ├── zh-cn │ └── poweroff.po │ └── zh-tw │ └── poweroff.po ├── luci-app-pppoe-server ├── Makefile ├── luasrc │ ├── controller │ │ └── pppoe-server.lua │ ├── model │ │ └── cbi │ │ │ └── pppoe-server │ │ │ ├── online.lua │ │ │ ├── settings.lua │ │ │ └── users.lua │ └── view │ │ └── pppoe-server │ │ ├── index.htm │ │ └── status.htm ├── po │ └── zh-cn │ │ └── pppoe-server.po └── root │ ├── etc │ ├── config │ │ └── pppoe-server │ ├── init.d │ │ └── pppoe-server │ └── uci-defaults │ │ └── luci-app-pppoe-server │ └── usr │ └── share │ ├── pppoe-server │ ├── ip-down │ └── ip-up │ └── rpcd │ └── acl.d │ └── luci-app-pppoe-server.json ├── luci-app-pushbot ├── Makefile ├── luasrc │ ├── controller │ │ └── pushbot.lua │ ├── model │ │ └── cbi │ │ │ └── pushbot │ │ │ ├── advanced.lua │ │ │ ├── client.lua │ │ │ ├── log.lua │ │ │ └── setting.lua │ └── view │ │ └── pushbot │ │ ├── pushbot_log.htm │ │ └── pushbot_status.htm └── root │ ├── etc │ ├── config │ │ └── pushbot │ ├── init.d │ │ └── pushbot │ └── uci-defaults │ │ └── luci-pushbot │ └── usr │ ├── bin │ └── pushbot │ │ ├── api │ │ ├── bark.json │ │ ├── dingding.json │ │ ├── diy.json │ │ ├── ent_wechat.json │ │ ├── feishu.json │ │ ├── ip_blacklist │ │ ├── ipv4.list │ │ ├── ipv6.list │ │ ├── pushdeer.json │ │ └── pushplus.json │ │ └── pushbot │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-pushbot.json ├── luci-app-quickstart ├── Makefile ├── htdocs │ └── luci-static │ │ └── quickstart │ │ ├── i18n │ │ ├── en.json │ │ └── zh-cn.json │ │ ├── index.js │ │ ├── style.css │ │ └── vendor.js ├── luasrc │ ├── controller │ │ ├── istore_backend.lua │ │ └── quickstart.lua │ └── view │ │ └── quickstart │ │ ├── home.htm │ │ └── main.htm ├── po │ └── zh-cn │ │ └── quickstart.po └── root │ ├── etc │ └── uci-defaults │ │ └── 50_luci-quickstart │ └── usr │ ├── libexec │ └── quickstart │ │ └── auto_setup.sh │ └── share │ └── luci │ └── menu.d │ └── luci-app-quickstart.json ├── luci-app-rclone ├── Makefile ├── luasrc │ ├── controller │ │ └── rclone.lua │ └── model │ │ └── cbi │ │ └── rclone.lua ├── po │ ├── en │ │ └── rclone.po │ ├── templates │ │ └── luci-app-rclone.pot │ └── zh-cn │ │ └── luci-app-rclone.po └── root │ ├── etc │ ├── config │ │ └── rclone │ ├── init.d │ │ └── rclone │ └── uci-defaults │ │ └── 100_luci-rclone │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-rclone.json ├── luci-app-shutdown ├── Makefile ├── luasrc │ ├── controller │ │ └── shutdown.lua │ └── model │ │ └── cbi │ │ └── shutdown.lua └── po │ └── zh-cn │ └── shutdown.po ├── luci-app-smartdns ├── Makefile ├── luasrc │ ├── controller │ │ └── smartdns.lua │ ├── model │ │ ├── cbi │ │ │ └── smartdns │ │ │ │ ├── smartdns.lua │ │ │ │ └── upstream.lua │ │ └── smartdns.lua │ └── view │ │ └── smartdns │ │ └── smartdns_status.htm ├── po │ └── zh-cn │ │ └── smartdns.po └── root │ └── etc │ └── uci-defaults │ └── 50_luci-smartdns ├── luci-app-smartinfo ├── Makefile ├── luasrc │ ├── controller │ │ └── smartinfo.lua │ ├── model │ │ └── cbi │ │ │ └── smartinfo.lua │ └── view │ │ ├── admin_status │ │ └── index │ │ │ └── smartinfo.htm │ │ └── smartinfo │ │ ├── detail_begin_flag.htm │ │ ├── detail_begin_value.htm │ │ ├── detail_end_listvalue.htm │ │ ├── detail_end_value.htm │ │ ├── smart_detail.htm │ │ └── smart_status.htm ├── po │ └── zh-cn │ │ └── smartinfo.po └── root │ ├── etc │ ├── config │ │ └── smartinfo │ └── init.d │ │ └── smartinfo │ └── usr │ └── lib │ └── smartinfo │ ├── smart_checker.sh │ ├── smart_functions.sh │ └── smart_status.sh ├── luci-app-softethervpn ├── Makefile ├── luasrc │ ├── controller │ │ └── softethervpn.lua │ ├── model │ │ └── cbi │ │ │ └── softethervpn.lua │ └── view │ │ └── softethervpn │ │ └── softethervpn_status.htm ├── po │ └── zh-cn │ │ └── softethervpn.po └── root │ ├── etc │ ├── config │ │ └── softethervpn │ ├── init.d │ │ └── softethervpn │ └── uci-defaults │ │ └── luci-softethervpn │ └── usr │ └── share │ └── softethervpn │ └── firewall.include ├── luci-app-sqm ├── Makefile ├── luasrc │ ├── controller │ │ └── sqm.lua │ └── model │ │ └── cbi │ │ └── sqm.lua ├── po │ ├── ar │ │ └── sqm.po │ ├── bg │ │ └── sqm.po │ ├── bn_BD │ │ └── sqm.po │ ├── ca │ │ └── sqm.po │ ├── cs │ │ └── sqm.po │ ├── de │ │ └── sqm.po │ ├── el │ │ └── sqm.po │ ├── en │ │ └── sqm.po │ ├── es │ │ └── sqm.po │ ├── fi │ │ └── sqm.po │ ├── fr │ │ └── sqm.po │ ├── he │ │ └── sqm.po │ ├── hi │ │ └── sqm.po │ ├── hu │ │ └── sqm.po │ ├── it │ │ └── sqm.po │ ├── ja │ │ └── sqm.po │ ├── ko │ │ └── sqm.po │ ├── mr │ │ └── sqm.po │ ├── ms │ │ └── sqm.po │ ├── nb_NO │ │ └── sqm.po │ ├── pl │ │ └── sqm.po │ ├── pt │ │ └── sqm.po │ ├── pt_BR │ │ └── sqm.po │ ├── ro │ │ └── sqm.po │ ├── ru │ │ └── sqm.po │ ├── sk │ │ └── sqm.po │ ├── sv │ │ └── sqm.po │ ├── templates │ │ └── sqm.pot │ ├── tr │ │ └── sqm.po │ ├── uk │ │ └── sqm.po │ ├── vi │ │ └── sqm.po │ ├── zh-cn │ │ └── sqm.po │ └── zh-tw │ │ └── sqm.po └── root │ ├── etc │ └── uci-defaults │ │ └── 50-luci-sqm │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-sqm.json ├── luci-app-ssr-mudb-server ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── vue.min.js ├── luasrc │ ├── controller │ │ └── ssr_mudb_server.lua │ ├── model │ │ └── cbi │ │ │ └── ssr_mudb_server │ │ │ └── index.lua │ └── view │ │ └── ssr_mudb_server │ │ ├── status.htm │ │ ├── user.htm │ │ └── users.htm ├── po │ └── zh-cn │ │ └── ssr_mudb_server.po └── root │ ├── etc │ ├── config │ │ ├── ssr_mudb_server │ │ └── ssr_mudb_server.json │ ├── init.d │ │ └── ssr_mudb_server │ └── uci-defaults │ │ └── luci-app-ssr-mudb-server │ └── usr │ └── share │ ├── rpcd │ └── acl.d │ │ └── luci-app-ssr-mudb-server.json │ └── ssr_mudb_server │ ├── .travis.yml │ ├── CHANGES │ ├── Dockerfile │ ├── MANIFEST.in │ ├── apiconfig.py │ ├── asyncmgr.py │ ├── clear_traffic_all_users.sh │ ├── config.json │ ├── configloader.py │ ├── db_transfer.py │ ├── firewall.lua │ ├── importloader.py │ ├── initcfg.bat │ ├── initcfg.sh │ ├── initmudbjson.sh │ ├── logrun.sh │ ├── mudb.json │ ├── mujson_mgr.py │ ├── mysql.json │ ├── run.sh │ ├── server.py │ ├── server_pool.py │ ├── setup.py │ ├── setup_cymysql.sh │ ├── shadowsocks │ ├── __init__.py │ ├── asyncdns.py │ ├── common.py │ ├── crypto │ │ ├── __init__.py │ │ ├── ctypes_libsodium.py │ │ ├── ctypes_openssl.py │ │ ├── openssl.py │ │ ├── rc4_md5.py │ │ ├── sodium.py │ │ ├── table.py │ │ └── util.py │ ├── daemon.py │ ├── encrypt.py │ ├── eventloop.py │ ├── local.py │ ├── logrun.sh │ ├── lru_cache.py │ ├── manager.py │ ├── obfs.py │ ├── obfsplugin │ │ ├── __init__.py │ │ ├── auth.py │ │ ├── auth_chain.py │ │ ├── http_simple.py │ │ ├── obfs_tls.py │ │ ├── plain.py │ │ └── verify.py │ ├── ordereddict.py │ ├── run.sh │ ├── server.py │ ├── shell.py │ ├── stop.sh │ ├── tail.sh │ ├── tcprelay.py │ ├── udprelay.py │ ├── user.py │ └── version.py │ ├── stop.sh │ ├── switchrule.py │ ├── tail.sh │ ├── tests │ ├── aes-cfb1.json │ ├── aes-cfb8.json │ ├── aes-ctr.json │ ├── aes.json │ ├── assert.sh │ ├── chacha20.json │ ├── client-multi-server-ip.json │ ├── coverage_server.py │ ├── fastopen.json │ ├── ipv6-client-side.json │ ├── ipv6.json │ ├── jenkins.sh │ ├── libsodium │ │ └── install.sh │ ├── nose_plugin.py │ ├── rc4-md5.json │ ├── salsa20-ctr.json │ ├── salsa20.json │ ├── server-multi-passwd-client-side.json │ ├── server-multi-passwd-table.json │ ├── server-multi-passwd.json │ ├── server-multi-ports.json │ ├── setup_tc.sh │ ├── socksify │ │ ├── install.sh │ │ └── socks.conf │ ├── table.json │ ├── test.py │ ├── test_command.sh │ ├── test_daemon.sh │ ├── test_large_file.sh │ ├── test_udp_src.py │ ├── test_udp_src.sh │ └── workers.json │ ├── user-config.json │ ├── userapiconfig.py │ ├── usermysql.json │ └── utils │ ├── autoban.py │ └── fail2ban │ └── shadowsocks.conf ├── luci-app-store ├── luci │ ├── luci-app-store │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── store.lua │ │ │ └── view │ │ │ │ └── store │ │ │ │ └── main.htm │ │ ├── root │ │ │ ├── bin │ │ │ │ └── is-opkg │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ └── istore │ │ │ │ ├── init.d │ │ │ │ │ └── istore │ │ │ │ └── uci-defaults │ │ │ │ │ └── luci-app-store │ │ │ └── usr │ │ │ │ ├── libexec │ │ │ │ └── istore │ │ │ │ │ ├── backup │ │ │ │ │ ├── docker │ │ │ │ │ ├── ipkg-build │ │ │ │ │ └── overlay-backup │ │ │ │ └── share │ │ │ │ └── opkg │ │ │ │ └── intercept │ │ │ │ └── rm │ │ ├── src │ │ │ ├── Makefile │ │ │ ├── compat.conf │ │ │ ├── dummy │ │ │ │ └── package.mk │ │ │ ├── key-build.pub │ │ │ └── po │ │ │ │ ├── templates │ │ │ │ └── iStore.pot │ │ │ │ ├── zh-cn │ │ │ │ └── iStore.po │ │ │ │ └── zh-tw │ │ │ │ └── iStore.po │ │ └── swagger.yaml │ ├── luci-lib-taskd │ │ ├── Makefile │ │ ├── htdocs │ │ │ └── luci-static │ │ │ │ └── resources │ │ │ │ └── tasks │ │ │ │ ├── tasks.css │ │ │ │ └── tasks.js │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── tasks-lib.lua │ │ │ ├── model │ │ │ │ └── tasks.lua │ │ │ └── view │ │ │ │ └── tasks │ │ │ │ ├── docker.htm │ │ │ │ └── embed.htm │ │ └── src │ │ │ ├── Makefile │ │ │ ├── dummy │ │ │ └── package.mk │ │ │ └── po │ │ │ └── zh-cn │ │ │ └── lib-tasks.po │ ├── luci-lib-xterm │ │ ├── Makefile │ │ ├── htdocs │ │ │ └── luci-static │ │ │ │ └── resources │ │ │ │ └── xterm │ │ │ │ ├── xterm.css │ │ │ │ └── xterm.js │ │ └── luasrc │ │ │ └── view │ │ │ └── xterm │ │ │ └── embed.htm │ └── taskd │ │ ├── Makefile │ │ └── files │ │ ├── taskd.sh │ │ └── tasks.init ├── preview │ └── istore-preview.png └── translations │ ├── en │ └── app.po │ ├── templates │ └── app.pot │ └── zh-cn │ └── app.po ├── luci-app-supervisord ├── Makefile ├── luasrc │ ├── controller │ │ └── supervisord.lua │ ├── model │ │ └── cbi │ │ │ └── supervisord.lua │ └── view │ │ └── supervisord │ │ ├── index.htm │ │ ├── list.htm │ │ ├── log.htm │ │ └── version.htm ├── po │ └── zh-cn │ │ └── supervisord.po └── root │ └── etc │ ├── config │ └── supervisord │ ├── init.d │ └── supervisord │ ├── supervisord │ ├── program │ │ └── templates │ └── supervisord.conf │ └── uci-defaults │ └── luci-supervisord ├── luci-app-syncthing ├── luci-app-control-timewol │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── timewol.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── timewol.lua │ │ └── view │ │ │ └── timewol │ │ │ ├── index.htm │ │ │ └── timewol.htm │ ├── po │ │ └── zh-cn │ │ │ └── timewol.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── timewol │ │ ├── init.d │ │ │ └── timewol │ │ └── uci-defaults │ │ │ └── luci-app-control-timewol │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-control-timewol.json ├── luci-app-control-webrestriction │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── webrestriction.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── webrestriction.lua │ │ └── view │ │ │ └── webrestriction │ │ │ ├── index.htm │ │ │ └── webrestriction.htm │ ├── po │ │ └── zh-cn │ │ │ └── webrestriction.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── webrestriction │ │ ├── init.d │ │ │ └── webrestriction │ │ └── uci-defaults │ │ │ └── luci-app-control-webrestriction │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-control-webrestriction.json ├── luci-app-control-weburl │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── weburl.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── weburl.lua │ │ └── view │ │ │ └── weburl │ │ │ ├── index.htm │ │ │ └── weburl.htm │ ├── po │ │ └── zh-cn │ │ │ └── weburl.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── weburl │ │ ├── init.d │ │ │ └── weburl │ │ └── uci-defaults │ │ │ └── luci-app-control-weburl │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-control-weburl.json ├── luci-app-fileassistant │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── fileassistant │ │ │ ├── fb.css │ │ │ ├── fb.js │ │ │ ├── file-icon.png │ │ │ ├── folder-icon.png │ │ │ └── link-icon.png │ └── luasrc │ │ ├── controller │ │ └── fileassistant.lua │ │ └── view │ │ └── fileassistant.htm ├── luci-app-filebrowser │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── filebrowser.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── filebrowser │ │ │ │ ├── api.lua │ │ │ │ └── settings.lua │ │ └── view │ │ │ └── filebrowser │ │ │ ├── download.htm │ │ │ ├── log.htm │ │ │ └── status.htm │ ├── po │ │ └── zh-cn │ │ │ └── filebrowser.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── filebrowser │ │ ├── init.d │ │ │ └── filebrowser │ │ └── uci-defaults │ │ │ └── luci-app-filebrowser │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-filebrowser.json ├── luci-app-guest-wifi │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── guest-wifi.lua │ │ └── model │ │ │ └── cbi │ │ │ └── guest-wifi.lua │ ├── po │ │ └── zh-cn │ │ │ └── guest-wifi.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── guest-wifi │ │ ├── init.d │ │ │ └── guest-wifi │ │ └── uci-defaults │ │ │ └── luci-app-guest-wifi │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-guest-wifi.json ├── luci-app-ipsec-server │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── ipsec-server.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── ipsec-server │ │ │ │ ├── l2tp_user.lua │ │ │ │ ├── online.lua │ │ │ │ ├── settings.lua │ │ │ │ └── users.lua │ │ └── view │ │ │ └── ipsec-server │ │ │ └── ipsec-server_status.htm │ ├── po │ │ └── zh-cn │ │ │ └── ipsec-server.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── luci-app-ipsec-server │ │ ├── init.d │ │ │ └── luci-app-ipsec-server │ │ └── uci-defaults │ │ │ └── luci-app-ipsec-server │ │ └── usr │ │ └── share │ │ ├── rpcd │ │ └── acl.d │ │ │ └── luci-app-ipsec-server.json │ │ └── xl2tpd │ │ ├── ip-down │ │ └── ip-up ├── luci-app-kodexplorer │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── kodexplorer.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── kodexplorer │ │ │ │ ├── api.lua │ │ │ │ └── settings.lua │ │ └── view │ │ │ └── kodexplorer │ │ │ ├── status.htm │ │ │ └── version.htm │ ├── po │ │ └── zh-cn │ │ │ └── kodexplorer.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── kodexplorer │ │ ├── init.d │ │ │ └── kodexplorer │ │ ├── kodexplorer │ │ │ ├── nginx.conf.template │ │ │ ├── php-fpm.conf.template │ │ │ └── php.ini.template │ │ └── uci-defaults │ │ │ └── luci-kodexplorer │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-kodexplorer.json ├── luci-app-nginx-pingos │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── pingos.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── pingos.lua │ │ └── view │ │ │ └── pingos │ │ │ └── status.htm │ ├── modules │ │ ├── nginx-client-module │ │ │ ├── COPYRIGHT │ │ │ ├── config │ │ │ ├── ngx_client.c │ │ │ ├── ngx_client.h │ │ │ ├── ngx_http_client.c │ │ │ ├── ngx_http_client.h │ │ │ └── t │ │ │ │ ├── config │ │ │ │ ├── nginx.conf │ │ │ │ ├── ngx_client_stat_module.c │ │ │ │ ├── ngx_client_test_module.c │ │ │ │ ├── ngx_http_client_test_module.c │ │ │ │ └── tcpserver.go │ │ ├── nginx-multiport-module │ │ │ ├── COPYRIGHT │ │ │ ├── config │ │ │ ├── ngx_event_multiport_module.c │ │ │ ├── ngx_http_broadcast_module.c │ │ │ ├── ngx_http_inner_proxy_module.c │ │ │ ├── ngx_multiport.h │ │ │ ├── ngx_multiport_misc.c │ │ │ ├── ngx_process_slot_module.c │ │ │ ├── ngx_stream_zone_module.c │ │ │ ├── ngx_stream_zone_module.h │ │ │ └── t │ │ │ │ ├── config │ │ │ │ ├── nginx.conf │ │ │ │ ├── ngx_multiport_test_module.c │ │ │ │ ├── ngx_stream_zone_test_module.c │ │ │ │ └── ngx_test_macro.h │ │ ├── nginx-rtmp-module │ │ │ ├── AUTHORS │ │ │ ├── config │ │ │ ├── dash │ │ │ │ ├── ngx_rtmp_dash_module.c │ │ │ │ ├── ngx_rtmp_mp4.c │ │ │ │ └── ngx_rtmp_mp4.h │ │ │ ├── hls │ │ │ │ ├── ngx_rtmp_hls_module.c │ │ │ │ ├── ngx_rtmp_mpegts.c │ │ │ │ └── ngx_rtmp_mpegts.h │ │ │ ├── http │ │ │ │ ├── ngx_http_flv_live_module.c │ │ │ │ ├── ngx_http_set_header.c │ │ │ │ └── ngx_http_set_header.h │ │ │ ├── mpegts │ │ │ │ ├── ngx_hls_http_module.c │ │ │ │ ├── ngx_hls_live_module.c │ │ │ │ ├── ngx_hls_live_module.h │ │ │ │ ├── ngx_mpegts_gop_module.c │ │ │ │ ├── ngx_mpegts_gop_module.h │ │ │ │ ├── ngx_mpegts_http_module.c │ │ │ │ ├── ngx_mpegts_live_module.c │ │ │ │ └── ngx_mpegts_live_module.h │ │ │ ├── ngx_live.c │ │ │ ├── ngx_live.h │ │ │ ├── ngx_live_record.c │ │ │ ├── ngx_live_record.h │ │ │ ├── ngx_live_relay.c │ │ │ ├── ngx_live_relay.h │ │ │ ├── ngx_live_relay_httpflv.c │ │ │ ├── ngx_live_relay_inner.c │ │ │ ├── ngx_live_relay_rtmp.c │ │ │ ├── ngx_live_relay_simple.c │ │ │ ├── ngx_live_relay_static.c │ │ │ ├── ngx_netcall.c │ │ │ ├── ngx_netcall.h │ │ │ ├── ngx_rtmp.c │ │ │ ├── ngx_rtmp.h │ │ │ ├── ngx_rtmp_access_module.c │ │ │ ├── ngx_rtmp_amf.c │ │ │ ├── ngx_rtmp_amf.h │ │ │ ├── ngx_rtmp_bandwidth.c │ │ │ ├── ngx_rtmp_bandwidth.h │ │ │ ├── ngx_rtmp_bitop.c │ │ │ ├── ngx_rtmp_bitop.h │ │ │ ├── ngx_rtmp_cmd_module.c │ │ │ ├── ngx_rtmp_cmd_module.h │ │ │ ├── ngx_rtmp_codec_module.c │ │ │ ├── ngx_rtmp_codec_module.h │ │ │ ├── ngx_rtmp_control_module.c │ │ │ ├── ngx_rtmp_core_module.c │ │ │ ├── ngx_rtmp_dynamic.c │ │ │ ├── ngx_rtmp_dynamic.h │ │ │ ├── ngx_rtmp_eval.c │ │ │ ├── ngx_rtmp_eval.h │ │ │ ├── ngx_rtmp_exec_module.c │ │ │ ├── ngx_rtmp_gop_module.c │ │ │ ├── ngx_rtmp_handler.c │ │ │ ├── ngx_rtmp_handshake.c │ │ │ ├── ngx_rtmp_init.c │ │ │ ├── ngx_rtmp_limit_module.c │ │ │ ├── ngx_rtmp_live_module.c │ │ │ ├── ngx_rtmp_live_module.h │ │ │ ├── ngx_rtmp_log_module.c │ │ │ ├── ngx_rtmp_monitor_module.c │ │ │ ├── ngx_rtmp_monitor_module.h │ │ │ ├── ngx_rtmp_notify_module.c │ │ │ ├── ngx_rtmp_notify_module.h │ │ │ ├── ngx_rtmp_proxy_protocol.c │ │ │ ├── ngx_rtmp_proxy_protocol.h │ │ │ ├── ngx_rtmp_receive.c │ │ │ ├── ngx_rtmp_record_module.c │ │ │ ├── ngx_rtmp_record_module.h │ │ │ ├── ngx_rtmp_send.c │ │ │ ├── ngx_rtmp_shared_module.c │ │ │ ├── ngx_rtmp_stat_module.c │ │ │ ├── ngx_rtmp_streams.h │ │ │ ├── ngx_rtmp_sys_stat_module.c │ │ │ ├── ngx_rtmp_variables.c │ │ │ ├── ngx_rtmp_variables.h │ │ │ └── ngx_rtmp_version.h │ │ ├── nginx-toolkit-module │ │ │ ├── COPYRIGHT │ │ │ ├── config │ │ │ ├── ngx_dynamic_conf.c │ │ │ ├── ngx_dynamic_conf.h │ │ │ ├── ngx_dynamic_resolver.c │ │ │ ├── ngx_dynamic_resolver.h │ │ │ ├── ngx_event_resolver.c │ │ │ ├── ngx_event_resolver.h │ │ │ ├── ngx_event_timer_module.c │ │ │ ├── ngx_event_timer_module.h │ │ │ ├── ngx_http_dynamic.c │ │ │ ├── ngx_http_dynamic.h │ │ │ ├── ngx_http_trace_module.c │ │ │ ├── ngx_map.c │ │ │ ├── ngx_map.h │ │ │ ├── ngx_poold.c │ │ │ ├── ngx_poold.h │ │ │ ├── ngx_rbuf.c │ │ │ ├── ngx_rbuf.h │ │ │ ├── ngx_timerd.c │ │ │ ├── ngx_timerd.h │ │ │ ├── ngx_toolkit_misc.c │ │ │ ├── ngx_toolkit_misc.h │ │ │ └── t │ │ │ │ ├── config │ │ │ │ ├── dns_install.sh │ │ │ │ ├── md5testfile │ │ │ │ ├── named.conf │ │ │ │ ├── nginx.conf │ │ │ │ ├── nginx_dynamic.conf │ │ │ │ ├── ngx_dynamic_conf_test_module.c │ │ │ │ ├── ngx_dynamic_resolver_test_module.c │ │ │ │ ├── ngx_event_resolver_test_module.c │ │ │ │ ├── ngx_event_timer_test_module.c │ │ │ │ ├── ngx_http_dynamic_test_module.c │ │ │ │ ├── ngx_map_test_module.c │ │ │ │ ├── ngx_poold_test_module.c │ │ │ │ ├── ngx_rbuf_test_module.c │ │ │ │ ├── ngx_test_macro.h │ │ │ │ ├── ngx_timerd_test_module.c │ │ │ │ ├── ngx_toolkit_misc_test_module.c │ │ │ │ ├── test.com.zone │ │ │ │ └── test1.com.zone │ │ └── nginx-ts-module │ │ │ ├── README.rst │ │ │ ├── config │ │ │ └── src │ │ │ ├── ngx_http_ts_module.c │ │ │ ├── ngx_stream_ts_module.c │ │ │ ├── ngx_ts_aac.c │ │ │ ├── ngx_ts_aac.h │ │ │ ├── ngx_ts_avc.c │ │ │ ├── ngx_ts_avc.h │ │ │ ├── ngx_ts_dash.c │ │ │ ├── ngx_ts_dash.h │ │ │ ├── ngx_ts_dash_mp4.c │ │ │ ├── ngx_ts_hls.c │ │ │ ├── ngx_ts_hls.h │ │ │ ├── ngx_ts_stream.c │ │ │ └── ngx_ts_stream.h │ ├── patches │ │ ├── 101-feature_test_fix.patch │ │ ├── 102-sizeof_test_fix.patch │ │ ├── 103-sys_nerr.patch │ │ ├── 104-endianness_fix.patch │ │ ├── 200-config.patch │ │ └── 201-ignore-invalid-options.patch │ ├── po │ │ └── zh-cn │ │ │ └── pingos.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── pingos │ │ ├── init.d │ │ │ └── pingos │ │ ├── pingos.template │ │ └── uci-defaults │ │ │ └── luci-app-nginx-pingos │ │ ├── resource │ │ ├── conf-template │ │ │ └── nginx.conf │ │ ├── crossdomain.xml │ │ └── stat.xsl │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-nginx-pingos.json ├── luci-app-openvpn-client │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── openvpn-client.lua │ │ └── model │ │ │ └── cbi │ │ │ └── openvpn-client │ │ │ ├── client.lua │ │ │ └── settings.lua │ ├── po │ │ └── zh-cn │ │ │ └── openvpn-client.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── luci-app-openvpn-client │ │ ├── init.d │ │ │ └── luci-app-openvpn-client │ │ └── uci-defaults │ │ │ └── luci-app-openvpn-client │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-openvpn-client.json ├── luci-app-openvpn-server │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── openvpn-server.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── openvpn-server │ │ │ │ ├── log.lua │ │ │ │ ├── online.lua │ │ │ │ ├── settings.lua │ │ │ │ └── user.lua │ │ └── view │ │ │ └── openvpn-server │ │ │ ├── index.htm │ │ │ ├── log.htm │ │ │ └── status.htm │ ├── po │ │ └── zh-cn │ │ │ └── openvpn-server.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── luci-app-openvpn-server │ │ ├── init.d │ │ │ └── luci-app-openvpn-server │ │ └── uci-defaults │ │ │ └── luci-app-openvpn-server │ │ └── usr │ │ └── share │ │ ├── openvpn-server │ │ ├── ca.crt │ │ ├── dh.pem │ │ ├── script │ │ │ ├── auth_verify.sh │ │ │ ├── ca_renew.sh │ │ │ ├── client_connect.sh │ │ │ ├── client_disconnect.sh │ │ │ ├── down.sh │ │ │ ├── gen_client_config.sh │ │ │ └── up.sh │ │ ├── server.crt │ │ └── server.key │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-openvpn-server.json ├── luci-app-pppoe-relay │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── pppoe-relay.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── pppoe-relay.lua │ │ └── view │ │ │ └── pppoe-relay │ │ │ ├── ajax.htm │ │ │ └── status.htm │ ├── po │ │ └── zh-cn │ │ │ └── pppoe-relay.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── pppoe-relay │ │ ├── init.d │ │ │ └── pppoe-relay │ │ └── uci-defaults │ │ │ └── luci-app-pppoe-relay │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-pppoe-relay.json ├── luci-app-pppoe-server │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── pppoe-server.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── pppoe-server │ │ │ │ ├── online.lua │ │ │ │ ├── settings.lua │ │ │ │ └── users.lua │ │ └── view │ │ │ └── pppoe-server │ │ │ ├── index.htm │ │ │ └── status.htm │ ├── po │ │ └── zh-cn │ │ │ └── pppoe-server.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── pppoe-server │ │ ├── init.d │ │ │ └── pppoe-server │ │ └── uci-defaults │ │ │ └── luci-app-pppoe-server │ │ └── usr │ │ └── share │ │ ├── pppoe-server │ │ ├── ip-down │ │ └── ip-up │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-pppoe-server.json ├── luci-app-pptp-server │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── pptpd.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── pptpd │ │ │ │ ├── online.lua │ │ │ │ ├── settings.lua │ │ │ │ ├── user.lua │ │ │ │ └── users.lua │ │ └── view │ │ │ └── pptpd │ │ │ ├── index.htm │ │ │ └── status.htm │ ├── po │ │ └── zh-cn │ │ │ └── pptpd.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── luci-app-pptp-server │ │ ├── init.d │ │ │ └── luci-app-pptp-server │ │ └── uci-defaults │ │ │ └── luci-app-pptp-server │ │ └── usr │ │ └── share │ │ ├── pptpd │ │ ├── ip-down │ │ └── ip-up │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-pptp-server.json ├── luci-app-ramfree │ ├── Makefile │ ├── luasrc │ │ └── controller │ │ │ └── release_ram.lua │ └── po │ │ └── zh-cn │ │ └── release_ram.po ├── luci-app-socat │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── socat.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── socat │ │ │ │ ├── config.lua │ │ │ │ └── index.lua │ │ └── view │ │ │ └── socat │ │ │ ├── list_status.htm │ │ │ └── status.htm │ ├── po │ │ └── zh-cn │ │ │ └── socat.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── socat │ │ ├── init.d │ │ │ └── luci_socat │ │ └── uci-defaults │ │ │ └── luci-app-socat │ │ └── usr │ │ └── share │ │ ├── nftables.d │ │ ├── chain-post │ │ │ └── input_wan │ │ │ │ └── 20-socat.nft │ │ └── table-post │ │ │ └── 20-socat.nft │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-socat.json ├── luci-app-softethervpn │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── softethervpn.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── softethervpn.lua │ │ └── view │ │ │ └── softethervpn │ │ │ ├── index.htm │ │ │ └── status.htm │ ├── po │ │ └── zh-cn │ │ │ └── softethervpn.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── softethervpn │ │ ├── init.d │ │ │ └── softethervpn │ │ └── uci-defaults │ │ │ └── luci-app-softethervpn │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-softethervpn.json ├── luci-app-ssr-mudb-server │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── vue.min.js │ ├── luasrc │ │ ├── controller │ │ │ └── ssr_mudb_server.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── ssr_mudb_server │ │ │ │ └── index.lua │ │ └── view │ │ │ └── ssr_mudb_server │ │ │ ├── status.htm │ │ │ ├── user.htm │ │ │ └── users.htm │ ├── po │ │ └── zh-cn │ │ │ └── ssr_mudb_server.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ ├── ssr_mudb_server │ │ │ └── ssr_mudb_server.json │ │ ├── init.d │ │ │ └── ssr_mudb_server │ │ └── uci-defaults │ │ │ └── luci-app-ssr-mudb-server │ │ └── usr │ │ └── share │ │ ├── rpcd │ │ └── acl.d │ │ │ └── luci-app-ssr-mudb-server.json │ │ └── ssr_mudb_server │ │ ├── .travis.yml │ │ ├── CHANGES │ │ ├── Dockerfile │ │ ├── MANIFEST.in │ │ ├── apiconfig.py │ │ ├── asyncmgr.py │ │ ├── clear_traffic_all_users.sh │ │ ├── config.json │ │ ├── configloader.py │ │ ├── db_transfer.py │ │ ├── firewall.lua │ │ ├── importloader.py │ │ ├── initcfg.bat │ │ ├── initcfg.sh │ │ ├── initmudbjson.sh │ │ ├── logrun.sh │ │ ├── mudb.json │ │ ├── mujson_mgr.py │ │ ├── mysql.json │ │ ├── run.sh │ │ ├── server.py │ │ ├── server_pool.py │ │ ├── setup.py │ │ ├── setup_cymysql.sh │ │ ├── shadowsocks │ │ ├── __init__.py │ │ ├── asyncdns.py │ │ ├── common.py │ │ ├── crypto │ │ │ ├── __init__.py │ │ │ ├── ctypes_libsodium.py │ │ │ ├── ctypes_openssl.py │ │ │ ├── openssl.py │ │ │ ├── rc4_md5.py │ │ │ ├── sodium.py │ │ │ ├── table.py │ │ │ └── util.py │ │ ├── daemon.py │ │ ├── encrypt.py │ │ ├── eventloop.py │ │ ├── local.py │ │ ├── logrun.sh │ │ ├── lru_cache.py │ │ ├── manager.py │ │ ├── obfs.py │ │ ├── obfsplugin │ │ │ ├── __init__.py │ │ │ ├── auth.py │ │ │ ├── auth_chain.py │ │ │ ├── http_simple.py │ │ │ ├── obfs_tls.py │ │ │ ├── plain.py │ │ │ └── verify.py │ │ ├── ordereddict.py │ │ ├── run.sh │ │ ├── server.py │ │ ├── shell.py │ │ ├── stop.sh │ │ ├── tail.sh │ │ ├── tcprelay.py │ │ ├── udprelay.py │ │ ├── user.py │ │ └── version.py │ │ ├── stop.sh │ │ ├── switchrule.py │ │ ├── tail.sh │ │ ├── tests │ │ ├── aes-cfb1.json │ │ ├── aes-cfb8.json │ │ ├── aes-ctr.json │ │ ├── aes.json │ │ ├── assert.sh │ │ ├── chacha20.json │ │ ├── client-multi-server-ip.json │ │ ├── coverage_server.py │ │ ├── fastopen.json │ │ ├── ipv6-client-side.json │ │ ├── ipv6.json │ │ ├── jenkins.sh │ │ ├── libsodium │ │ │ └── install.sh │ │ ├── nose_plugin.py │ │ ├── rc4-md5.json │ │ ├── salsa20-ctr.json │ │ ├── salsa20.json │ │ ├── server-multi-passwd-client-side.json │ │ ├── server-multi-passwd-table.json │ │ ├── server-multi-passwd.json │ │ ├── server-multi-ports.json │ │ ├── setup_tc.sh │ │ ├── socksify │ │ │ ├── install.sh │ │ │ └── socks.conf │ │ ├── table.json │ │ ├── test.py │ │ ├── test_command.sh │ │ ├── test_daemon.sh │ │ ├── test_large_file.sh │ │ ├── test_udp_src.py │ │ ├── test_udp_src.sh │ │ └── workers.json │ │ ├── user-config.json │ │ ├── userapiconfig.py │ │ ├── usermysql.json │ │ └── utils │ │ ├── autoban.py │ │ └── fail2ban │ │ └── shadowsocks.conf ├── luci-app-syncthing │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── syncthing.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── syncthing.lua │ │ └── view │ │ │ └── syncthing │ │ │ └── syncthing_status.htm │ ├── po │ │ └── zh-cn │ │ │ └── syncthing.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── syncthing │ │ ├── init.d │ │ │ └── syncthing │ │ └── uci-defaults │ │ │ └── luci-syncthing │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-syncthing.json ├── luci-app-timecontrol │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── timecontrol.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── timecontrol.lua │ │ └── view │ │ │ └── timecontrol │ │ │ ├── index.htm │ │ │ └── timecontrol.htm │ ├── po │ │ └── zh-cn │ │ │ └── timecontrol.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── timecontrol │ │ ├── init.d │ │ │ └── timecontrol │ │ └── uci-defaults │ │ │ └── luci-app-timecontrol │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-timecontrol.json ├── luci-app-verysync │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── verysync.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── verysync.lua │ │ └── view │ │ │ └── verysync │ │ │ └── verysync_status.htm │ ├── po │ │ └── zh-cn │ │ │ └── verysync.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── verysync │ │ ├── init.d │ │ │ └── verysync │ │ └── uci-defaults │ │ │ └── luci-verysync │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-verysync.json └── verysync │ └── Makefile ├── luci-app-tcpdump ├── Makefile ├── luasrc │ ├── controller │ │ └── tcpdump.lua │ └── view │ │ └── tcpdump.htm └── po │ └── zh-cn │ └── tcpdump.po ├── luci-app-tencentddns ├── Makefile ├── luasrc │ ├── controller │ │ └── tencentddns.lua │ └── model │ │ └── cbi │ │ └── tencentddns.lua ├── po │ └── zh-cn │ │ └── tencentddns.po └── root │ ├── etc │ ├── config │ │ └── tencentddns │ ├── init.d │ │ └── tencentddns │ └── uci-defaults │ │ └── luci-tencentddns │ └── usr │ ├── sbin │ └── tencentddns │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-tencentddns.json ├── luci-app-ttnode ├── Makefile ├── htdocs │ └── luci-static │ │ └── ttnode │ │ ├── jquery.min.js │ │ └── marked.min.js ├── luasrc │ ├── controller │ │ └── ttnode.lua │ ├── model │ │ └── cbi │ │ │ └── ttnode.lua │ └── view │ │ └── ttnode │ │ ├── login_form.htm │ │ └── manually_exec.htm └── root │ ├── etc │ ├── config │ │ └── ttnode │ ├── init.d │ │ └── ttnode │ └── uci-defaults │ │ └── luci-ttnode │ └── usr │ └── share │ ├── rpcd │ └── acl.d │ │ └── luci-ttnode.json │ └── ttnode │ ├── main.lua │ ├── requests.lua │ └── ttnode.lua ├── luci-app-unblockmusic ├── Makefile ├── luasrc │ ├── controller │ │ └── unblockmusic.lua │ ├── model │ │ └── cbi │ │ │ └── unblockmusic │ │ │ ├── unblockmusic.lua │ │ │ └── unblockmusic_log.lua │ └── view │ │ └── unblockmusic │ │ └── unblockmusic_status.htm ├── po │ └── zh-cn │ │ └── unblockmusic.po └── root │ ├── etc │ ├── config │ │ └── unblockmusic │ ├── hotplug.d │ │ └── iface │ │ │ └── 099-unblockmusic │ ├── init.d │ │ └── unblockmusic │ └── uci-defaults │ │ └── luci-unblockmusic │ ├── lib │ └── upgrade │ │ └── keep.d │ │ └── unblockmusic │ └── usr │ ├── bin │ └── UnblockNeteaseMusicCloud │ └── share │ └── UnblockNeteaseMusic │ ├── getmusicip.sh │ ├── logcheck.sh │ └── update_core.sh ├── luci-app-unblockneteasemusic ├── Makefile ├── luasrc │ ├── controller │ │ └── unblockneteasemusic.lua │ ├── model │ │ └── cbi │ │ │ └── unblockneteasemusic │ │ │ ├── log.lua │ │ │ ├── main.lua │ │ │ └── upgrade.lua │ └── view │ │ └── unblockneteasemusic │ │ ├── remove_core.htm │ │ ├── status.htm │ │ └── update_core.htm ├── root │ ├── etc │ │ ├── config │ │ │ └── unblockneteasemusic │ │ ├── init.d │ │ │ └── unblockneteasemusic │ │ └── uci-defaults │ │ │ └── luci-unblockneteasemusic │ └── usr │ │ ├── bin │ │ └── unm-debug │ │ └── share │ │ ├── rpcd │ │ └── acl.d │ │ │ └── luci-app-unblockneteasemusic.json │ │ └── unblockneteasemusic │ │ ├── debugging.sh │ │ ├── log_check.sh │ │ └── update.sh └── views │ ├── view1.jpg │ ├── view2.jpg │ ├── view3.jpg │ └── view4.jpg ├── luci-app-unishare ├── Makefile ├── luasrc │ ├── controller │ │ └── unishare.lua │ └── model │ │ └── cbi │ │ └── unishare │ │ ├── index.lua │ │ ├── share.lua │ │ └── users.lua └── po │ └── zh-cn │ └── unishare.po ├── luci-app-vlmcsd ├── Makefile ├── luasrc │ ├── controller │ │ └── vlmcsd.lua │ ├── model │ │ └── cbi │ │ │ └── vlmcsd │ │ │ ├── basic.lua │ │ │ └── config.lua │ └── view │ │ └── vlmcsd │ │ └── vlmcsd_status.htm ├── po │ └── zh-cn │ │ └── vlmcsd.po └── root │ └── etc │ ├── config │ └── vlmcsd │ ├── init.d │ └── kms │ └── uci-defaults │ └── luci-vlmcsd ├── luci-app-webd ├── Makefile ├── luasrc │ ├── controller │ │ └── webd.lua │ ├── model │ │ └── cbi │ │ │ └── webd.lua │ └── view │ │ └── webd │ │ └── webd_status.htm ├── po │ └── zh-cn │ │ └── webd.po └── root │ └── etc │ ├── config │ └── webd │ ├── init.d │ └── webd │ └── uci-defaults │ └── luci-webd ├── luci-app-wol ├── Makefile ├── luasrc │ ├── controller │ │ └── wol.lua │ └── model │ │ └── cbi │ │ └── wol.lua └── po │ ├── ca │ └── wol.po │ ├── cs │ └── wol.po │ ├── de │ └── wol.po │ ├── el │ └── wol.po │ ├── en │ └── wol.po │ ├── es │ └── wol.po │ ├── fr │ └── wol.po │ ├── he │ └── wol.po │ ├── hu │ └── wol.po │ ├── it │ └── wol.po │ ├── ja │ └── wol.po │ ├── ms │ └── wol.po │ ├── no │ └── wol.po │ ├── pl │ └── wol.po │ ├── pt-br │ └── wol.po │ ├── pt │ └── wol.po │ ├── ro │ └── wol.po │ ├── ru │ └── wol.po │ ├── sk │ └── wol.po │ ├── sv │ └── wol.po │ ├── templates │ └── wol.pot │ ├── tr │ └── wol.po │ ├── uk │ └── wol.po │ ├── vi │ └── wol.po │ ├── zh-cn │ └── wol.po │ └── zh-tw │ └── wol.po ├── luci-app-zerotier ├── Makefile ├── luasrc │ ├── controller │ │ └── zerotier.lua │ ├── model │ │ └── cbi │ │ │ └── zerotier │ │ │ ├── info.lua │ │ │ └── settings.lua │ └── view │ │ └── zerotier │ │ ├── index.htm │ │ └── status.htm ├── po │ └── zh-cn │ │ └── zerotier.po └── root │ └── etc │ ├── init.d │ └── zerotier │ ├── uci-defaults │ └── 40_luci-zerotier │ ├── zerotier.start │ ├── zerotier.stop │ └── zerotier │ └── zerotier.log └── relevance ├── UnblockNeteaseMusic-Go ├── Makefile ├── files │ ├── ca.crt │ ├── server.crt │ └── server.key └── patches │ ├── 01-fix-block-ad.patch │ └── 02-avoid-unnecessary-decryption.patch ├── UnblockNeteaseMusic └── Makefile ├── UpdateList.txt ├── Wiwiz-PinPinWiFi ├── autokick-wiwiz │ ├── Makefile │ ├── files │ │ ├── etc │ │ │ ├── config │ │ │ │ └── autokick │ │ │ └── init.d │ │ │ │ └── autokick │ │ └── usr │ │ │ ├── bin │ │ │ └── autokick.sh │ │ │ └── lib │ │ │ └── lua │ │ │ └── luci │ │ │ ├── controller │ │ │ └── autokick.lua │ │ │ └── model │ │ │ └── cbi │ │ │ └── autokick.lua │ └── po │ │ └── zh-cn │ │ └── autokick.po ├── dcc2-wiwiz │ ├── Makefile │ ├── files │ │ ├── rtty.config │ │ ├── rtty.init │ │ ├── uci-defaults-rtty │ │ ├── usr │ │ │ ├── bin │ │ │ │ └── assocnum.sh │ │ │ └── lib │ │ │ │ └── lua │ │ │ │ └── luci │ │ │ │ ├── controller │ │ │ │ └── rtty.lua │ │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── rtty.lua │ │ └── www │ │ │ └── cgi-bin │ │ │ └── dvstatus │ ├── po │ │ └── zh-cn │ │ │ └── dcc2-wiwiz.po │ └── src │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ └── Modules │ │ │ └── FindLibev.cmake │ │ ├── src │ │ ├── CMakeLists.txt │ │ ├── buffer │ │ │ ├── buffer.c │ │ │ └── buffer.h │ │ ├── command.c │ │ ├── command.h │ │ ├── config.h.in │ │ ├── file.c │ │ ├── file.h │ │ ├── filectl.c │ │ ├── http.c │ │ ├── http.h │ │ ├── list.h │ │ ├── log │ │ │ ├── log.c │ │ │ └── log.h │ │ ├── main.c │ │ ├── net.c │ │ ├── net.h │ │ ├── rtty.c │ │ ├── rtty.h │ │ ├── ssl │ │ │ ├── CMakeLists.txt │ │ │ ├── cmake │ │ │ │ └── Modules │ │ │ │ │ ├── FindMbedTLS.cmake │ │ │ │ │ └── FindWolfSSL.cmake │ │ │ ├── example-client.c │ │ │ ├── example-server.c │ │ │ ├── mbedtls.c │ │ │ ├── openssl.c │ │ │ └── ssl.h │ │ ├── utils.c │ │ └── utils.h │ │ └── tools │ │ ├── sendcmd.sh │ │ └── test.sh ├── eqos-master-wiwiz │ ├── Makefile │ └── files │ │ ├── eqos-cbi.lua │ │ ├── eqos-controller.lua │ │ ├── eqos.config │ │ ├── eqos.hotplug │ │ ├── eqos.init │ │ ├── eqos.sh │ │ ├── po │ │ └── zh-cn │ │ │ └── eqos.po │ │ └── uci-defaults-eqos └── wifidog-wiwiz │ ├── Config.in │ ├── Makefile │ ├── files │ ├── etc │ │ ├── config │ │ │ └── wiwiz │ │ └── uci-defaults │ │ │ ├── 199-noredir │ │ │ └── 299-noportal │ ├── usr │ │ ├── lib │ │ │ └── lua │ │ │ │ └── luci │ │ │ │ ├── controller │ │ │ │ └── wiwiz.lua │ │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── wiwiz.lua │ │ └── local │ │ │ └── hsbuilder │ │ │ ├── auth.sh │ │ │ ├── checkauth.sh │ │ │ ├── dhcp_portal.sh │ │ │ ├── getmodel.sh │ │ │ ├── handle_ipv6.sh │ │ │ ├── hsbuilder.conf │ │ │ ├── hsbuilder.sh │ │ │ ├── hsbuilder_helper.sh │ │ │ ├── kickmac.sh │ │ │ ├── setspeed.sh │ │ │ ├── ver │ │ │ ├── wiwizroaming.sh │ │ │ └── wiwizroaming.sh.old │ ├── wifidog.init │ └── www │ │ ├── cgi-bin │ │ ├── cpi │ │ ├── kickmac │ │ ├── myip │ │ ├── mymac │ │ └── showdevinfo │ │ ├── error.html.wiwiz │ │ ├── index.html.wiwiz │ │ └── mymac.htm │ ├── po │ └── zh-cn │ │ └── wifidog-wiwiz.po │ └── src │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── FAQ │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── README.openwrt │ ├── autogen.sh │ ├── configure.in │ ├── contrib │ ├── airos │ │ └── wifidog │ │ │ ├── Makefile │ │ │ ├── files.patch │ │ │ ├── files │ │ │ ├── wifidog.conf │ │ │ └── wifidog.init │ │ │ ├── patches │ │ │ └── 100-counter_outoing.patch │ │ │ └── readme.txt │ ├── build-deb │ │ ├── changelog │ │ ├── control │ │ └── rules │ ├── build-openwrt-kamikazeipk │ │ └── wifidog │ │ │ ├── Makefile │ │ │ └── files │ │ │ ├── wifidog.conf │ │ │ └── wifidog.init │ ├── build-openwrt-kamikazeipk8.09up │ │ └── wifidog │ │ │ ├── Makefile │ │ │ └── files │ │ │ ├── wifidog.conf │ │ │ └── wifidog.init │ ├── build-openwrt-whiterussianipk │ │ └── wifidog │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ ├── wifidog.conf │ │ │ └── wifidog.init │ │ │ └── ipkg │ │ │ ├── wifidog.conffiles │ │ │ └── wifidog.control │ └── dump_fw.sh │ ├── doc │ ├── Makefile.am │ ├── README.developers.txt │ ├── doxygen.cfg.in │ └── wifidog_firewall_diagram.dia │ ├── libhttpd │ ├── Makefile.am │ ├── README │ ├── api.c │ ├── httpd.h │ ├── httpd_priv.h │ ├── ip_acl.c │ ├── protocol.c │ └── version.c │ ├── scripts │ └── init.d │ │ └── wifidog │ ├── src │ ├── Makefile.am │ ├── auth.c │ ├── auth.h │ ├── centralserver.c │ ├── centralserver.h │ ├── client_list.c │ ├── client_list.h │ ├── commandline.c │ ├── commandline.h │ ├── common.h │ ├── conf.c │ ├── conf.h │ ├── debug.c │ ├── debug.h │ ├── firewall.c │ ├── firewall.h │ ├── fw_iptables-org.c │ ├── fw_iptables.c │ ├── fw_iptables.h │ ├── gateway.c │ ├── gateway.h │ ├── http.c │ ├── http.h │ ├── httpd_thread.c │ ├── httpd_thread.h │ ├── ping_thread.c │ ├── ping_thread.h │ ├── safe.c │ ├── safe.h │ ├── util.c │ ├── util.h │ ├── wdctl.c │ ├── wdctl.h │ ├── wdctl_thread.c │ └── wdctl_thread.h │ ├── wifidog-msg.html.in │ ├── wifidog-msg.html.in.org │ ├── wifidog.conf │ └── wifidog.spec.in ├── adguardhome ├── Makefile └── files │ └── adguardhome.init ├── alist ├── Makefile ├── files │ ├── alist.config │ ├── alist.init │ └── data.db └── src │ └── public │ └── dist │ └── assets │ ├── logo.png │ └── logo.svg ├── assets ├── luci-screenshot.png ├── rcloneng-screenshot-1.png ├── rcloneng-screenshot-2.png ├── rcloneng-screenshot-3.png ├── webui-screenshot1.png └── webui-screenshot2.png ├── cdnspeedtest └── cdnspeedtest │ ├── Makefile │ └── test.sh ├── clud ├── applications │ └── luci-app-cloudflarespeedtest │ │ ├── Makefile │ │ ├── luasrc │ │ ├── controller │ │ │ └── cloudflarespeedtest.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── cloudflarespeedtest │ │ │ │ ├── cloudflarespeedtest.lua │ │ │ │ └── logread.lua │ │ └── view │ │ │ └── cloudflarespeedtest │ │ │ ├── actions.htm │ │ │ └── logread.htm │ │ ├── po │ │ └── zh-cn │ │ │ └── cloudflarespeedtest.po │ │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── cloudflarespeedtest │ │ └── init.d │ │ │ └── cloudflarespeedtest │ │ └── usr │ │ ├── bin │ │ └── cloudflarespeedtest │ │ │ ├── aliddns.sh │ │ │ └── cloudflarespeedtest.sh │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-cloudflarespeedtest.json ├── build.sh └── doc │ └── overview.jpeg ├── cpulimit ├── Makefile └── patches │ └── 010-gcc14.patch ├── ddnsto ├── Makefile └── files │ ├── ddnsto-monitor.sh │ ├── ddnsto.config │ ├── ddnsto.init │ └── ddnsto.uci-default ├── doc ├── lucky1.png ├── lucky2.png └── lucky3.png ├── ffmpeg-remux └── Makefile ├── filebrowser ├── Makefile └── files │ ├── filebrowser.config │ └── filebrowser.init ├── gost ├── Makefile └── files │ ├── gost.config │ └── gost.init ├── istoreenhance ├── Makefile └── files │ ├── istoreenhance.config │ ├── istoreenhance.init │ └── istoreenhance.uci-default ├── kcptun ├── Makefile └── files │ ├── kcptun.config │ └── kcptun.init ├── linkease ├── Makefile └── files │ ├── aria2.sh │ ├── linkease-config.sh │ ├── linkease.config │ ├── linkease.init │ └── linkease.uci-default ├── linkmount └── Makefile ├── luci-lib-iform ├── Makefile ├── luasrc │ └── iform.lua └── root │ └── www │ └── luci-static │ └── iform │ ├── 1.0 │ ├── index.js │ └── style.css │ └── 1.1 │ ├── index.js │ └── style.css ├── luci-nginxer ├── Makefile └── root │ └── etc │ └── uci-defaults │ └── 50_luci-nginxer ├── lucky ├── Makefile └── files │ ├── lucky.config │ ├── lucky.init │ └── luckyarch.bin ├── mosdns ├── Makefile └── patches │ ├── 100-mosdns-update-dependencies.patch │ ├── 200-forward-avoid-picking-same-upstream-if-concurrent-2.patch │ ├── 201-upstream-resend-udp-package-every-1s.patch │ ├── 203-add-response-for-bad-request-in-ServeHTTP-handler.patch │ ├── 204-black_hole-apply-Fisher-Yates-shuffle-algorithm-to-r.patch │ └── 205-format-logtime.patch ├── msd_lite ├── Makefile ├── files │ ├── msd_lite.config │ ├── msd_lite.init │ └── msd_lite.sample └── patches │ └── 010-Add-rejoin-option-as-ugly-hack-to-allow-send-IGMP-MLD-lea.patch ├── natter └── Makefile ├── netdata ├── Makefile ├── files │ ├── charts.d.conf │ ├── netdata.conf │ └── netdata.init ├── patches │ ├── 001-disable-plugins-by-default.patch │ ├── 002-extra-patch-web_gui_main.js.patch │ ├── 003-patch-collectors_python.d.plugin_Makefile.am.patch │ ├── 004-patch-collectors_python.d.plugin_python__modules_bases_loaders.py.patch │ └── 005-freebsd.patch └── test.sh ├── oaf ├── Makefile └── src │ ├── Makefile │ ├── af_client.c │ ├── af_client.h │ ├── af_client_fs.c │ ├── af_client_fs.h │ ├── af_config.c │ ├── af_config.h │ ├── af_conntrack.c │ ├── af_conntrack.h │ ├── af_log.c │ ├── af_log.h │ ├── af_rule_config.c │ ├── af_rule_config.h │ ├── af_user_config.c │ ├── af_user_config.h │ ├── af_utils.c │ ├── af_utils.h │ ├── af_whitelist_config.c │ ├── af_whitelist_config.h │ ├── app_filter.c │ ├── app_filter.h │ ├── cJSON.c │ ├── cJSON.h │ └── regexp.c ├── open-app-filter ├── Makefile ├── files │ ├── appfilter.config │ ├── appfilter.init │ ├── feature.cfg │ ├── feature_cn.cfg │ ├── feature_en.cfg │ ├── gen_class.sh │ ├── hnat.sh │ ├── oaf_rule │ └── user_info.config └── src │ ├── Makefile │ ├── appfilter.h │ ├── appfilter_config.c │ ├── appfilter_config.h │ ├── appfilter_netlink.c │ ├── appfilter_netlink.h │ ├── appfilter_ubus.c │ ├── appfilter_ubus.h │ ├── appfilter_user.c │ ├── appfilter_user.h │ ├── main.c │ ├── utils.c │ └── utils.h ├── openwrt-nezha └── Makefile ├── openwrt-subconverter ├── libcron │ └── Makefile ├── quickjspp │ ├── Makefile │ └── patches │ │ └── 001-quickjs-support-soft-float.diff ├── rapidjson │ └── Makefile ├── subconverter │ ├── Makefile │ └── files │ │ └── subconverter.init └── toml11 │ └── Makefile ├── openwrt-tmate ├── msgpack-c │ ├── Makefile │ └── patches │ │ └── 010-no-gtest.patch └── tmate │ ├── Makefile │ ├── patches │ └── 010-Avoid-initializing-stdout-twice.patch │ └── test.sh ├── openwrt_nezha ├── luci-app-nezha │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── nezha-agent.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── nezha-agent.lua │ │ └── view │ │ │ └── nezha-agent │ │ │ └── nezha-agent_status.htm │ └── root │ │ └── etc │ │ ├── config │ │ └── nezha-agent │ │ ├── init.d │ │ └── nezha-agent │ │ └── uci-defaults │ │ └── luci-nezha-agent └── openwrt-nezha │ └── Makefile ├── oscam ├── Config.in ├── Makefile └── files │ ├── oscam-watchdog.sh │ ├── oscam.conf │ ├── oscam.dvbapi │ ├── oscam.init │ ├── oscam.server │ └── oscam.user ├── packr └── Makefile ├── parted ├── Config.in ├── Makefile └── test.sh ├── quickstart ├── Makefile └── files │ ├── dhcpvalid.sh │ ├── manuf │ ├── quickstart.config │ ├── quickstart.hotplug │ ├── quickstart.init │ ├── quickstart.uci-default │ ├── startdhns.hotplug │ └── startdhns.init ├── rclone-ng └── Makefile ├── rclone-webui-react └── Makefile ├── rclone ├── Makefile └── patches │ ├── 000-disable-plugins.patch │ └── 010-change-default-config-path.patch ├── smartdns └── Makefile ├── smartmontools ├── Makefile ├── files │ ├── smartd.conf │ └── smartd.init ├── patches │ ├── 001-use-external-drivedb.patch │ └── 002-os_mailer-is-mailx.patch └── test.sh ├── socat ├── Makefile └── files │ ├── socat.config │ └── socat.init ├── softethervpn5 ├── Makefile ├── files │ ├── dummy │ ├── launcher.sh │ ├── vpnbridge.init │ ├── vpnclient.init │ └── vpnserver.init └── patches │ ├── 001-iconv-defines-fix.patch │ ├── 002-iconv-cmake-fix.patch │ ├── 100-increase-cfg-save-intervall.patch │ └── 101-add-config-write-syslog.patch ├── udp2raw └── Makefile ├── unishare ├── Makefile └── files │ ├── unishare.config │ └── unishare.init ├── upx-static └── Makefile ├── v2dat ├── Makefile └── patches │ ├── 100-format-logtime.patch │ └── 101-v2dat-update-dependencies.patch ├── v2ray-geodata └── Makefile ├── vlmcsd ├── Makefile ├── files │ ├── vlmcsd.ini │ └── vlmcsd.init └── src │ └── Makefile ├── webd └── Makefile └── webdav2 ├── Makefile └── files ├── webdav2.config └── webdav2.init /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/README.md -------------------------------------------------------------------------------- /luci-app-adguardhome/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-adguardhome/Makefile -------------------------------------------------------------------------------- /luci-app-adguardhome/luasrc/view/AdGuardHome/log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-adguardhome/luasrc/view/AdGuardHome/log.htm -------------------------------------------------------------------------------- /luci-app-adguardhome/po/zh-cn/AdGuardHome.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-adguardhome/po/zh-cn/AdGuardHome.po -------------------------------------------------------------------------------- /luci-app-adguardhome/root/etc/config/AdGuardHome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-adguardhome/root/etc/config/AdGuardHome -------------------------------------------------------------------------------- /luci-app-adguardhome/root/etc/init.d/AdGuardHome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-adguardhome/root/etc/init.d/AdGuardHome -------------------------------------------------------------------------------- /luci-app-alist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-alist/Makefile -------------------------------------------------------------------------------- /luci-app-alist/luasrc/controller/alist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-alist/luasrc/controller/alist.lua -------------------------------------------------------------------------------- /luci-app-alist/luasrc/model/cbi/alist/basic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-alist/luasrc/model/cbi/alist/basic.lua -------------------------------------------------------------------------------- /luci-app-alist/luasrc/model/cbi/alist/log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-alist/luasrc/model/cbi/alist/log.lua -------------------------------------------------------------------------------- /luci-app-alist/luasrc/view/alist/admin_info.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-alist/luasrc/view/alist/admin_info.htm -------------------------------------------------------------------------------- /luci-app-alist/luasrc/view/alist/alist_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-alist/luasrc/view/alist/alist_log.htm -------------------------------------------------------------------------------- /luci-app-alist/luasrc/view/alist/alist_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-alist/luasrc/view/alist/alist_status.htm -------------------------------------------------------------------------------- /luci-app-alist/po/zh-cn/alist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-alist/po/zh-cn/alist.po -------------------------------------------------------------------------------- /luci-app-alist/root/etc/uci-defaults/50-luci-alist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-alist/root/etc/uci-defaults/50-luci-alist -------------------------------------------------------------------------------- /luci-app-amlogic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-amlogic/Makefile -------------------------------------------------------------------------------- /luci-app-amlogic/luasrc/controller/amlogic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-amlogic/luasrc/controller/amlogic.lua -------------------------------------------------------------------------------- /luci-app-amlogic/luasrc/view/amlogic/other_check.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-amlogic/luasrc/view/amlogic/other_check.htm -------------------------------------------------------------------------------- /luci-app-amlogic/luasrc/view/amlogic/other_info.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-amlogic/luasrc/view/amlogic/other_info.htm -------------------------------------------------------------------------------- /luci-app-amlogic/luasrc/view/amlogic/other_kvm.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-amlogic/luasrc/view/amlogic/other_kvm.htm -------------------------------------------------------------------------------- /luci-app-amlogic/luasrc/view/amlogic/other_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-amlogic/luasrc/view/amlogic/other_log.htm -------------------------------------------------------------------------------- /luci-app-amlogic/po/zh-cn/amlogic.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-amlogic/po/zh-cn/amlogic.po -------------------------------------------------------------------------------- /luci-app-amlogic/root/etc/config/amlogic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-amlogic/root/etc/config/amlogic -------------------------------------------------------------------------------- /luci-app-amlogic/root/etc/init.d/amlogic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-amlogic/root/etc/init.d/amlogic -------------------------------------------------------------------------------- /luci-app-amlogic/root/etc/uci-defaults/luci-amlogic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-amlogic/root/etc/uci-defaults/luci-amlogic -------------------------------------------------------------------------------- /luci-app-amlogic/root/usr/sbin/fixcpufreq.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-amlogic/root/usr/sbin/fixcpufreq.pl -------------------------------------------------------------------------------- /luci-app-amlogic/root/usr/sbin/openwrt-backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-amlogic/root/usr/sbin/openwrt-backup -------------------------------------------------------------------------------- /luci-app-amlogic/root/usr/sbin/openwrt-ddbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-amlogic/root/usr/sbin/openwrt-ddbr -------------------------------------------------------------------------------- /luci-app-amlogic/root/usr/sbin/openwrt-kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-amlogic/root/usr/sbin/openwrt-kernel -------------------------------------------------------------------------------- /luci-app-amlogic/root/usr/sbin/openwrt-update-kvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-amlogic/root/usr/sbin/openwrt-update-kvm -------------------------------------------------------------------------------- /luci-app-autoipsetadder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-autoipsetadder/Makefile -------------------------------------------------------------------------------- /luci-app-autotimeset/doc/taskplan1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-autotimeset/doc/taskplan1.png -------------------------------------------------------------------------------- /luci-app-autotimeset/doc/taskplan2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-autotimeset/doc/taskplan2.png -------------------------------------------------------------------------------- /luci-app-autotimeset/doc/taskplan3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-autotimeset/doc/taskplan3.png -------------------------------------------------------------------------------- /luci-app-autotimeset/doc/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-autotimeset/doc/view.png -------------------------------------------------------------------------------- /luci-app-autotimeset/doc/view2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-autotimeset/doc/view2.png -------------------------------------------------------------------------------- /luci-app-autotimeset/luci-app-taskplan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-autotimeset/luci-app-taskplan/Makefile -------------------------------------------------------------------------------- /luci-app-autotimeset/luci-app-taskplan/root/etc/taskplan/taskplancustomscript: -------------------------------------------------------------------------------- 1 | # Sh script rules 2 | -------------------------------------------------------------------------------- /luci-app-autotimeset/luci-app-taskplan/root/etc/taskplan/taskplancustomscript2: -------------------------------------------------------------------------------- 1 | # Sh script2 rules -------------------------------------------------------------------------------- /luci-app-autotimeset/luci-app-taskplan/root/etc/taskplan/taskplanrun: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "" 4 | exit 0 -------------------------------------------------------------------------------- /luci-app-chatgpt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-chatgpt/Makefile -------------------------------------------------------------------------------- /luci-app-chatgpt/doc/chatgpt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-chatgpt/doc/chatgpt1.png -------------------------------------------------------------------------------- /luci-app-chatgpt/doc/chatgpt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-chatgpt/doc/chatgpt2.png -------------------------------------------------------------------------------- /luci-app-chatgpt/doc/chatgpt3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-chatgpt/doc/chatgpt3.png -------------------------------------------------------------------------------- /luci-app-chatgpt/luasrc/controller/chatgpt-web.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-chatgpt/luasrc/controller/chatgpt-web.lua -------------------------------------------------------------------------------- /luci-app-chatgpt/luasrc/model/cbi/chatgpt-web.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-chatgpt/luasrc/model/cbi/chatgpt-web.lua -------------------------------------------------------------------------------- /luci-app-chatgpt/luasrc/model/cbi/chatgpt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-chatgpt/luasrc/model/cbi/chatgpt.lua -------------------------------------------------------------------------------- /luci-app-chatgpt/luasrc/view/chatgpt-web.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-chatgpt/luasrc/view/chatgpt-web.htm -------------------------------------------------------------------------------- /luci-app-chatgpt/po/zh-cn/chatgpt-web.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-chatgpt/po/zh-cn/chatgpt-web.po -------------------------------------------------------------------------------- /luci-app-chatgpt/root/etc/config/chatgpt-web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-chatgpt/root/etc/config/chatgpt-web -------------------------------------------------------------------------------- /luci-app-cifs-mount/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-cifs-mount/Makefile -------------------------------------------------------------------------------- /luci-app-cifs-mount/luasrc/controller/cifs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-cifs-mount/luasrc/controller/cifs.lua -------------------------------------------------------------------------------- /luci-app-cifs-mount/luasrc/model/cbi/cifs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-cifs-mount/luasrc/model/cbi/cifs.lua -------------------------------------------------------------------------------- /luci-app-cifs-mount/po/zh-cn/cifs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-cifs-mount/po/zh-cn/cifs.po -------------------------------------------------------------------------------- /luci-app-cifs-mount/root/etc/config/cifs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-cifs-mount/root/etc/config/cifs -------------------------------------------------------------------------------- /luci-app-cifs-mount/root/etc/init.d/cifs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-cifs-mount/root/etc/init.d/cifs -------------------------------------------------------------------------------- /luci-app-cifs-mount/root/etc/uci-defaults/luci-cifs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-cifs-mount/root/etc/uci-defaults/luci-cifs -------------------------------------------------------------------------------- /luci-app-clash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/Makefile -------------------------------------------------------------------------------- /luci-app-clash/luasrc/clash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/clash.lua -------------------------------------------------------------------------------- /luci-app-clash/luasrc/controller/clash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/controller/clash.lua -------------------------------------------------------------------------------- /luci-app-clash/luasrc/model/cbi/clash/dns/dns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/model/cbi/clash/dns/dns.lua -------------------------------------------------------------------------------- /luci-app-clash/luasrc/model/cbi/clash/dns/port.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/model/cbi/clash/dns/port.lua -------------------------------------------------------------------------------- /luci-app-clash/luasrc/model/cbi/clash/logs/log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/model/cbi/clash/logs/log.lua -------------------------------------------------------------------------------- /luci-app-clash/luasrc/model/cbi/clash/other.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/model/cbi/clash/other.lua -------------------------------------------------------------------------------- /luci-app-clash/luasrc/model/cbi/clash/overview.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/model/cbi/clash/overview.lua -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/clash_dvalue.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/view/clash/clash_dvalue.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/clash_upload.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/view/clash/clash_upload.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/conf.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/view/clash/conf.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/core_check.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/view/clash/core_check.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/game_rule.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/view/clash/game_rule.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/geoip.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/view/clash/geoip.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/list.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/view/clash/list.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/other_button.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/view/clash/other_button.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/ping.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/view/clash/ping.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/rulep.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/view/clash/rulep.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/ssrurl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/view/clash/ssrurl.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/start_stop.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/view/clash/start_stop.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/view/clash/status.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/status_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/view/clash/status_log.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/tvalue.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/view/clash/tvalue.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/view/clash/update.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/upload_core.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/luasrc/view/clash/upload_core.htm -------------------------------------------------------------------------------- /luci-app-clash/po/zh-cn/clash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/po/zh-cn/clash.po -------------------------------------------------------------------------------- /luci-app-clash/root/etc/clash/Country.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/etc/clash/Country.mmdb -------------------------------------------------------------------------------- /luci-app-clash/root/etc/config/clash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/etc/config/clash -------------------------------------------------------------------------------- /luci-app-clash/root/etc/init.d/clash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/etc/init.d/clash -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/backup.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/china_ip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/china_ip.txt -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/chinaipset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/chinaipset.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/clash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/clash.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/clash.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/clash_real.txt: -------------------------------------------------------------------------------- 1 | Clash for OpenWRT 2 | -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/core_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/core_download.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/create/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/create/create.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/create/rules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/create/rules.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/cuslist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/cuslist.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/game-groups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/game-groups.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/game.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/game.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/geoip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/geoip.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/groups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/groups.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/iprules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/iprules.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/kill_watchdog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/kill_watchdog.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/load_groups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/load_groups.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/logstatus_check: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/luci_version: -------------------------------------------------------------------------------- 1 | v1.8.0 2 | -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/restore.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/rmlist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/rmlist.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/rule.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/rule.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/rule.yaml -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/rules/rules.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/rules/rules.list -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/server.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/server.list -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/update.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/update_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/update_all.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/uplist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/uplist.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/yacd/CNAME: -------------------------------------------------------------------------------- 1 | yacd.haishan.me 2 | -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/yacd/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/yacd/_headers -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/yacd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/yacd/index.html -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/yacd/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/yacd/report.html -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/yacd/yacd-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/yacd/yacd-64.png -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/yacd/yacd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/yacd/yacd.ico -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/yum_change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/root/usr/share/clash/yum_change.sh -------------------------------------------------------------------------------- /luci-app-clash/tools/po2lmo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/tools/po2lmo/Makefile -------------------------------------------------------------------------------- /luci-app-clash/tools/po2lmo/src/po2lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/tools/po2lmo/src/po2lmo.c -------------------------------------------------------------------------------- /luci-app-clash/tools/po2lmo/src/template_lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/tools/po2lmo/src/template_lmo.c -------------------------------------------------------------------------------- /luci-app-clash/tools/po2lmo/src/template_lmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-clash/tools/po2lmo/src/template_lmo.h -------------------------------------------------------------------------------- /luci-app-cloudflared/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-cloudflared/Makefile -------------------------------------------------------------------------------- /luci-app-cloudflared/root/etc/cloudflared/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-cloudflared/root/etc/cloudflared/config.yml -------------------------------------------------------------------------------- /luci-app-cloudflared/root/etc/config/cloudflared: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-cloudflared/root/etc/config/cloudflared -------------------------------------------------------------------------------- /luci-app-cloudflared/root/etc/init.d/cloudflared: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-cloudflared/root/etc/init.d/cloudflared -------------------------------------------------------------------------------- /luci-app-cloudflared/root/lib/upgrade/keep.d/cloudflared: -------------------------------------------------------------------------------- 1 | /etc/cloudflared/ 2 | -------------------------------------------------------------------------------- /luci-app-cloudflarespeedtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-cloudflarespeedtest/Makefile -------------------------------------------------------------------------------- /luci-app-control-timewol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-control-timewol/Makefile -------------------------------------------------------------------------------- /luci-app-control-timewol/po/zh-cn/timewol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-control-timewol/po/zh-cn/timewol.po -------------------------------------------------------------------------------- /luci-app-control-timewol/root/etc/config/timewol: -------------------------------------------------------------------------------- 1 | 2 | config basic 3 | option enable '0' 4 | -------------------------------------------------------------------------------- /luci-app-control-timewol/root/etc/init.d/timewol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-control-timewol/root/etc/init.d/timewol -------------------------------------------------------------------------------- /luci-app-control-webrestriction/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-control-webrestriction/Makefile -------------------------------------------------------------------------------- /luci-app-control-weburl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-control-weburl/Makefile -------------------------------------------------------------------------------- /luci-app-control-weburl/luasrc/controller/weburl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-control-weburl/luasrc/controller/weburl.lua -------------------------------------------------------------------------------- /luci-app-control-weburl/luasrc/model/cbi/weburl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-control-weburl/luasrc/model/cbi/weburl.lua -------------------------------------------------------------------------------- /luci-app-control-weburl/luasrc/view/weburl/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-control-weburl/luasrc/view/weburl/index.htm -------------------------------------------------------------------------------- /luci-app-control-weburl/po/zh-cn/weburl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-control-weburl/po/zh-cn/weburl.po -------------------------------------------------------------------------------- /luci-app-control-weburl/root/etc/config/weburl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-control-weburl/root/etc/config/weburl -------------------------------------------------------------------------------- /luci-app-control-weburl/root/etc/init.d/weburl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-control-weburl/root/etc/init.d/weburl -------------------------------------------------------------------------------- /luci-app-cpulimit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-cpulimit/Makefile -------------------------------------------------------------------------------- /luci-app-cpulimit/luasrc/controller/cpulimit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-cpulimit/luasrc/controller/cpulimit.lua -------------------------------------------------------------------------------- /luci-app-cpulimit/luasrc/model/cbi/cpulimit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-cpulimit/luasrc/model/cbi/cpulimit.lua -------------------------------------------------------------------------------- /luci-app-cpulimit/po/zh-cn/cpulimit.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-cpulimit/po/zh-cn/cpulimit.po -------------------------------------------------------------------------------- /luci-app-cpulimit/root/etc/config/cpulimit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-cpulimit/root/etc/config/cpulimit -------------------------------------------------------------------------------- /luci-app-cpulimit/root/etc/init.d/cpulimit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-cpulimit/root/etc/init.d/cpulimit -------------------------------------------------------------------------------- /luci-app-cpulimit/root/usr/bin/cpulimit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-cpulimit/root/usr/bin/cpulimit.sh -------------------------------------------------------------------------------- /luci-app-ddnsto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ddnsto/Makefile -------------------------------------------------------------------------------- /luci-app-ddnsto/luasrc/controller/ddnsto.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ddnsto/luasrc/controller/ddnsto.lua -------------------------------------------------------------------------------- /luci-app-ddnsto/luasrc/model/cbi/ddnsto.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ddnsto/luasrc/model/cbi/ddnsto.lua -------------------------------------------------------------------------------- /luci-app-ddnsto/luasrc/view/ddnsto/main.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ddnsto/luasrc/view/ddnsto/main.htm -------------------------------------------------------------------------------- /luci-app-ddnsto/po/zh-cn/ddnsto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ddnsto/po/zh-cn/ddnsto.po -------------------------------------------------------------------------------- /luci-app-ddnsto/root/etc/uci-defaults/50_luci-ddnsto: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /tmp/luci-indexcache 4 | exit 0 5 | -------------------------------------------------------------------------------- /luci-app-ddnsto/root/www/luci-static/ddnsto/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ddnsto/root/www/luci-static/ddnsto/index.js -------------------------------------------------------------------------------- /luci-app-diskman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-diskman/Makefile -------------------------------------------------------------------------------- /luci-app-diskman/luasrc/controller/diskman.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-diskman/luasrc/controller/diskman.lua -------------------------------------------------------------------------------- /luci-app-diskman/luasrc/model/cbi/diskman/btrfs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-diskman/luasrc/model/cbi/diskman/btrfs.lua -------------------------------------------------------------------------------- /luci-app-diskman/luasrc/model/cbi/diskman/disks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-diskman/luasrc/model/cbi/diskman/disks.lua -------------------------------------------------------------------------------- /luci-app-diskman/luasrc/model/diskman.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-diskman/luasrc/model/diskman.lua -------------------------------------------------------------------------------- /luci-app-diskman/luasrc/view/diskman/disk_info.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-diskman/luasrc/view/diskman/disk_info.htm -------------------------------------------------------------------------------- /luci-app-diskman/po/zh-cn/diskman.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-diskman/po/zh-cn/diskman.po -------------------------------------------------------------------------------- /luci-app-diskman/po/zh-tw/diskman.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-diskman/po/zh-tw/diskman.po -------------------------------------------------------------------------------- /luci-app-fileassistant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-fileassistant/Makefile -------------------------------------------------------------------------------- /luci-app-fileassistant/luasrc/view/fileassistant.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-fileassistant/luasrc/view/fileassistant.htm -------------------------------------------------------------------------------- /luci-app-filebrowser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/Makefile -------------------------------------------------------------------------------- /luci-app-filebrowser/po/ar/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/ar/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/ast/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/ast/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/cs/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/cs/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/da/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/da/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/de/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/de/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/eo/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/eo/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/es/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/es/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/et/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/et/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/fa/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/fa/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/fi/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/fi/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/fr/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/fr/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/ga/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/ga/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/hu/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/hu/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/it/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/it/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/ja/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/ja/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/lt/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/lt/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/lv/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/lv/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/nl/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/nl/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/pl/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/pl/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/pt/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/pt/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/pt_BR/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/pt_BR/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/ro/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/ro/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/ru/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/ru/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/sk/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/sk/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/sv/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/sv/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/ta/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/ta/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/templates/filebrowser.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/templates/filebrowser.pot -------------------------------------------------------------------------------- /luci-app-filebrowser/po/tr/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/tr/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/uk/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/uk/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/vi/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/vi/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/yua/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/yua/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/zh-cn/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/zh-cn/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/zh_Hant/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-filebrowser/po/zh_Hant/filebrowser.po -------------------------------------------------------------------------------- /luci-app-floatip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-floatip/Makefile -------------------------------------------------------------------------------- /luci-app-floatip/luasrc/controller/floatip.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-floatip/luasrc/controller/floatip.lua -------------------------------------------------------------------------------- /luci-app-floatip/luasrc/model/cbi/floatip.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-floatip/luasrc/model/cbi/floatip.lua -------------------------------------------------------------------------------- /luci-app-floatip/luasrc/view/floatip_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-floatip/luasrc/view/floatip_status.htm -------------------------------------------------------------------------------- /luci-app-floatip/po/zh-cn/floatip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-floatip/po/zh-cn/floatip.po -------------------------------------------------------------------------------- /luci-app-gost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-gost/Makefile -------------------------------------------------------------------------------- /luci-app-gost/luasrc/controller/gost.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-gost/luasrc/controller/gost.lua -------------------------------------------------------------------------------- /luci-app-gost/luasrc/model/cbi/gost.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-gost/luasrc/model/cbi/gost.lua -------------------------------------------------------------------------------- /luci-app-gost/luasrc/view/gost/gost_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-gost/luasrc/view/gost/gost_status.htm -------------------------------------------------------------------------------- /luci-app-gost/po/zh-cn/gost.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-gost/po/zh-cn/gost.po -------------------------------------------------------------------------------- /luci-app-gost/root/etc/uci-defaults/gost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-gost/root/etc/uci-defaults/gost -------------------------------------------------------------------------------- /luci-app-ikoolproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ikoolproxy/Makefile -------------------------------------------------------------------------------- /luci-app-ikoolproxy/change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ikoolproxy/change.log -------------------------------------------------------------------------------- /luci-app-ikoolproxy/development.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ikoolproxy/development.doc -------------------------------------------------------------------------------- /luci-app-ikoolproxy/koolproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ikoolproxy/koolproxy/Makefile -------------------------------------------------------------------------------- /luci-app-ikoolproxy/koolproxy/files/aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ikoolproxy/koolproxy/files/aarch64 -------------------------------------------------------------------------------- /luci-app-ikoolproxy/koolproxy/files/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ikoolproxy/koolproxy/files/arm -------------------------------------------------------------------------------- /luci-app-ikoolproxy/koolproxy/files/i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ikoolproxy/koolproxy/files/i386 -------------------------------------------------------------------------------- /luci-app-ikoolproxy/koolproxy/files/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ikoolproxy/koolproxy/files/mips -------------------------------------------------------------------------------- /luci-app-ikoolproxy/koolproxy/files/mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ikoolproxy/koolproxy/files/mipsel -------------------------------------------------------------------------------- /luci-app-ikoolproxy/koolproxy/files/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ikoolproxy/koolproxy/files/x86_64 -------------------------------------------------------------------------------- /luci-app-ikoolproxy/luasrc/controller/koolproxy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ikoolproxy/luasrc/controller/koolproxy.lua -------------------------------------------------------------------------------- /luci-app-ikoolproxy/luasrc/view/koolproxy/tips.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ikoolproxy/luasrc/view/koolproxy/tips.htm -------------------------------------------------------------------------------- /luci-app-ikoolproxy/root/etc/adblocklist/adblock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ikoolproxy/root/etc/adblocklist/adblockip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ikoolproxy/root/etc/adblocklist/adbypass: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ikoolproxy/root/etc/adblocklist/adbypassip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ikoolproxy/root/etc/config/koolproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ikoolproxy/root/etc/config/koolproxy -------------------------------------------------------------------------------- /luci-app-ikoolproxy/root/etc/init.d/koolproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ikoolproxy/root/etc/init.d/koolproxy -------------------------------------------------------------------------------- /luci-app-ikoolproxy/root/usr/sbin/adblockplus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ikoolproxy/root/usr/sbin/adblockplus -------------------------------------------------------------------------------- /luci-app-ikoolproxy/root/usr/share/koolproxy/adblock.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ikoolproxy/root/usr/share/koolproxy/dnsmasq.adblock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ikoolproxy/root/usr/share/koolproxy/koolproxy_ipset.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-istoreenhance/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-istoreenhance/Makefile -------------------------------------------------------------------------------- /luci-app-istoreenhance/po/zh-cn/istoreenhance.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-istoreenhance/po/zh-cn/istoreenhance.po -------------------------------------------------------------------------------- /luci-app-istoreenhance/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-istoreenhance/root/etc/uci-defaults/50_luci-istoreenhance: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /tmp/luci-indexcache 4 | exit 0 5 | -------------------------------------------------------------------------------- /luci-app-istorex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-istorex/Makefile -------------------------------------------------------------------------------- /luci-app-istorex/htdocs/luci-static/istorex/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-istorex/htdocs/luci-static/istorex/bg.jpg -------------------------------------------------------------------------------- /luci-app-istorex/htdocs/luci-static/istorex/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-istorex/htdocs/luci-static/istorex/copy.png -------------------------------------------------------------------------------- /luci-app-istorex/htdocs/luci-static/istorex/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-istorex/htdocs/luci-static/istorex/disk.png -------------------------------------------------------------------------------- /luci-app-istorex/htdocs/luci-static/istorex/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-istorex/htdocs/luci-static/istorex/file.png -------------------------------------------------------------------------------- /luci-app-istorex/htdocs/luci-static/istorex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-istorex/htdocs/luci-static/istorex/index.js -------------------------------------------------------------------------------- /luci-app-istorex/htdocs/luci-static/istorex/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-istorex/htdocs/luci-static/istorex/info.svg -------------------------------------------------------------------------------- /luci-app-istorex/htdocs/luci-static/istorex/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-istorex/htdocs/luci-static/istorex/logo.png -------------------------------------------------------------------------------- /luci-app-istorex/htdocs/luci-static/istorex/nas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-istorex/htdocs/luci-static/istorex/nas.png -------------------------------------------------------------------------------- /luci-app-istorex/htdocs/luci-static/istorex/open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-istorex/htdocs/luci-static/istorex/open.svg -------------------------------------------------------------------------------- /luci-app-istorex/htdocs/luci-static/istorex/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-istorex/htdocs/luci-static/istorex/sync.png -------------------------------------------------------------------------------- /luci-app-istorex/htdocs/luci-static/istorex/task.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-istorex/htdocs/luci-static/istorex/task.svg -------------------------------------------------------------------------------- /luci-app-istorex/htdocs/luci-static/istorex/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-istorex/htdocs/luci-static/istorex/user.png -------------------------------------------------------------------------------- /luci-app-istorex/luasrc/controller/istorex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-istorex/luasrc/controller/istorex.lua -------------------------------------------------------------------------------- /luci-app-istorex/luasrc/view/istorex/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-istorex/luasrc/view/istorex/index.htm -------------------------------------------------------------------------------- /luci-app-istorex/luasrc/view/istorex/main.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-istorex/luasrc/view/istorex/main.htm -------------------------------------------------------------------------------- /luci-app-istorex/luasrc/view/istorex/main_dev.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-istorex/luasrc/view/istorex/main_dev.htm -------------------------------------------------------------------------------- /luci-app-istorex/root/etc/config/istorex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-istorex/root/etc/config/istorex -------------------------------------------------------------------------------- /luci-app-istorex/root/etc/uci-defaults/50_luci-istorex: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /tmp/luci-indexcache 4 | exit 0 5 | -------------------------------------------------------------------------------- /luci-app-linkease/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-linkease/Makefile -------------------------------------------------------------------------------- /luci-app-linkease/luasrc/controller/linkease.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-linkease/luasrc/controller/linkease.lua -------------------------------------------------------------------------------- /luci-app-linkease/luasrc/model/cbi/linkease.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-linkease/luasrc/model/cbi/linkease.lua -------------------------------------------------------------------------------- /luci-app-linkease/luasrc/view/admin_status/index/linkease.htm: -------------------------------------------------------------------------------- 1 | <%+linkease_status%> 2 | -------------------------------------------------------------------------------- /luci-app-linkease/luasrc/view/linkease/file.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-linkease/luasrc/view/linkease/file.htm -------------------------------------------------------------------------------- /luci-app-linkease/luasrc/view/linkease_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-linkease/luasrc/view/linkease_status.htm -------------------------------------------------------------------------------- /luci-app-linkease/po/zh-cn/linkease.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-linkease/po/zh-cn/linkease.po -------------------------------------------------------------------------------- /luci-app-linkease/root/etc/uci-defaults/50_luci-linkease: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /tmp/luci-indexcache 4 | exit 0 5 | -------------------------------------------------------------------------------- /luci-app-lucky/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-lucky/Makefile -------------------------------------------------------------------------------- /luci-app-lucky/po/zh-cn/lucky.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-lucky/po/zh-cn/lucky.po -------------------------------------------------------------------------------- /luci-app-lucky/root/etc/uci-defaults/luci-app-lucky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-lucky/root/etc/uci-defaults/luci-app-lucky -------------------------------------------------------------------------------- /luci-app-lucky/root/usr/share/rpcd/ucode/luci.lucky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-lucky/root/usr/share/rpcd/ucode/luci.lucky -------------------------------------------------------------------------------- /luci-app-mosdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-mosdns/Makefile -------------------------------------------------------------------------------- /luci-app-mosdns/po/zh-cn/mosdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-mosdns/po/zh-cn/mosdns.po -------------------------------------------------------------------------------- /luci-app-mosdns/root/etc/config/mosdns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-mosdns/root/etc/config/mosdns -------------------------------------------------------------------------------- /luci-app-mosdns/root/etc/hotplug.d/iface/99-mosdns: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | [ "$ACTION" = ifup ] && /etc/init.d/mosdns restart 3 | -------------------------------------------------------------------------------- /luci-app-mosdns/root/etc/init.d/mosdns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-mosdns/root/etc/init.d/mosdns -------------------------------------------------------------------------------- /luci-app-mosdns/root/etc/mosdns/config_custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-mosdns/root/etc/mosdns/config_custom.yaml -------------------------------------------------------------------------------- /luci-app-mosdns/root/etc/mosdns/rule/blocklist.txt: -------------------------------------------------------------------------------- 1 | # MosDNS Rules 2 | 3 | -------------------------------------------------------------------------------- /luci-app-mosdns/root/etc/mosdns/rule/ddnslist.txt: -------------------------------------------------------------------------------- 1 | # MosDNS Rules 2 | 3 | -------------------------------------------------------------------------------- /luci-app-mosdns/root/etc/mosdns/rule/greylist.txt: -------------------------------------------------------------------------------- 1 | # MosDNS Rules 2 | 3 | -------------------------------------------------------------------------------- /luci-app-mosdns/root/etc/mosdns/rule/hosts.txt: -------------------------------------------------------------------------------- 1 | # MosDNS Rules 2 | 3 | -------------------------------------------------------------------------------- /luci-app-mosdns/root/etc/mosdns/rule/local-ptr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-mosdns/root/etc/mosdns/rule/local-ptr.txt -------------------------------------------------------------------------------- /luci-app-mosdns/root/etc/mosdns/rule/redirect.txt: -------------------------------------------------------------------------------- 1 | # MosDNS Rules 2 | 3 | -------------------------------------------------------------------------------- /luci-app-mosdns/root/etc/mosdns/rule/streaming.txt: -------------------------------------------------------------------------------- 1 | # MosDNS Rules 2 | 3 | -------------------------------------------------------------------------------- /luci-app-mosdns/root/etc/mosdns/rule/whitelist.txt: -------------------------------------------------------------------------------- 1 | # MosDNS Rules 2 | 3 | -------------------------------------------------------------------------------- /luci-app-mosdns/root/etc/uci-defaults/luci-mosdns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-mosdns/root/etc/uci-defaults/luci-mosdns -------------------------------------------------------------------------------- /luci-app-mosdns/root/usr/share/mosdns/cache.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-mosdns/root/usr/share/mosdns/cache.dump -------------------------------------------------------------------------------- /luci-app-mosdns/root/usr/share/mosdns/mosdns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-mosdns/root/usr/share/mosdns/mosdns.sh -------------------------------------------------------------------------------- /luci-app-msd_lite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-msd_lite/Makefile -------------------------------------------------------------------------------- /luci-app-msd_lite/luasrc/controller/msd_lite.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-msd_lite/luasrc/controller/msd_lite.lua -------------------------------------------------------------------------------- /luci-app-msd_lite/luasrc/model/cbi/msd_lite.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-msd_lite/luasrc/model/cbi/msd_lite.lua -------------------------------------------------------------------------------- /luci-app-msd_lite/po/zh-cn/msd_lite.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-msd_lite/po/zh-cn/msd_lite.po -------------------------------------------------------------------------------- /luci-app-natter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-natter/Makefile -------------------------------------------------------------------------------- /luci-app-natter/luasrc/controller/natter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-natter/luasrc/controller/natter.lua -------------------------------------------------------------------------------- /luci-app-natter/luasrc/model/cbi/natter/base.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-natter/luasrc/model/cbi/natter/base.lua -------------------------------------------------------------------------------- /luci-app-natter/luasrc/model/cbi/natter/log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-natter/luasrc/model/cbi/natter/log.lua -------------------------------------------------------------------------------- /luci-app-natter/luasrc/model/cbi/natter/ports.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-natter/luasrc/model/cbi/natter/ports.lua -------------------------------------------------------------------------------- /luci-app-natter/luasrc/view/natter/natter_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-natter/luasrc/view/natter/natter_log.htm -------------------------------------------------------------------------------- /luci-app-natter/po/zh-cn/natter.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-natter/po/zh-cn/natter.po -------------------------------------------------------------------------------- /luci-app-natter/root/etc/config/natter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-natter/root/etc/config/natter -------------------------------------------------------------------------------- /luci-app-natter/root/etc/init.d/natter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-natter/root/etc/init.d/natter -------------------------------------------------------------------------------- /luci-app-natter/root/etc/uci-defaults/luci-natter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-natter/root/etc/uci-defaults/luci-natter -------------------------------------------------------------------------------- /luci-app-netdata/luci-app-netdata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-netdata/luci-app-netdata/Makefile -------------------------------------------------------------------------------- /luci-app-netwizard/doc/netwizard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-netwizard/doc/netwizard1.png -------------------------------------------------------------------------------- /luci-app-netwizard/doc/netwizard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-netwizard/doc/netwizard2.png -------------------------------------------------------------------------------- /luci-app-netwizard/doc/netwizard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-netwizard/doc/netwizard3.png -------------------------------------------------------------------------------- /luci-app-netwizard/luci-app-netwizard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-netwizard/luci-app-netwizard/Makefile -------------------------------------------------------------------------------- /luci-app-nezha-agent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-nezha-agent/Makefile -------------------------------------------------------------------------------- /luci-app-nezha-agent/root/etc/config/nezha-agent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-nezha-agent/root/etc/config/nezha-agent -------------------------------------------------------------------------------- /luci-app-nezha-agent/root/etc/init.d/nezha-agent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-nezha-agent/root/etc/init.d/nezha-agent -------------------------------------------------------------------------------- /luci-app-nginx-manager/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-nginx-manager/Makefile -------------------------------------------------------------------------------- /luci-app-nginx-manager/po/zh-cn/nginx-manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-nginx-manager/po/zh-cn/nginx-manager.po -------------------------------------------------------------------------------- /luci-app-nginx-pingos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-nginx-pingos/Makefile -------------------------------------------------------------------------------- /luci-app-nginx-pingos/luasrc/controller/pingos.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-nginx-pingos/luasrc/controller/pingos.lua -------------------------------------------------------------------------------- /luci-app-nginx-pingos/luasrc/model/cbi/pingos.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-nginx-pingos/luasrc/model/cbi/pingos.lua -------------------------------------------------------------------------------- /luci-app-nginx-pingos/luasrc/view/pingos/status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-nginx-pingos/luasrc/view/pingos/status.htm -------------------------------------------------------------------------------- /luci-app-nginx-pingos/modules/nginx-ts-module/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-nginx-pingos/modules/nginx-ts-module/config -------------------------------------------------------------------------------- /luci-app-nginx-pingos/patches/103-sys_nerr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-nginx-pingos/patches/103-sys_nerr.patch -------------------------------------------------------------------------------- /luci-app-nginx-pingos/patches/200-config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-nginx-pingos/patches/200-config.patch -------------------------------------------------------------------------------- /luci-app-nginx-pingos/po/zh-cn/pingos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-nginx-pingos/po/zh-cn/pingos.po -------------------------------------------------------------------------------- /luci-app-nginx-pingos/root/etc/config/pingos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-nginx-pingos/root/etc/config/pingos -------------------------------------------------------------------------------- /luci-app-nginx-pingos/root/etc/init.d/pingos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-nginx-pingos/root/etc/init.d/pingos -------------------------------------------------------------------------------- /luci-app-nginx-pingos/root/etc/pingos.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-nginx-pingos/root/etc/pingos.template -------------------------------------------------------------------------------- /luci-app-nginx-pingos/root/resource/crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-nginx-pingos/root/resource/crossdomain.xml -------------------------------------------------------------------------------- /luci-app-nginx-pingos/root/resource/stat.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-nginx-pingos/root/resource/stat.xsl -------------------------------------------------------------------------------- /luci-app-nodogsplash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-nodogsplash/Makefile -------------------------------------------------------------------------------- /luci-app-nodogsplash/po/zh-cn/nodogsplash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-nodogsplash/po/zh-cn/nodogsplash.po -------------------------------------------------------------------------------- /luci-app-oaf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oaf/Makefile -------------------------------------------------------------------------------- /luci-app-oaf/luasrc/controller/appfilter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oaf/luasrc/controller/appfilter.lua -------------------------------------------------------------------------------- /luci-app-oaf/luasrc/model/cbi/appfilter/advance.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oaf/luasrc/model/cbi/appfilter/advance.lua -------------------------------------------------------------------------------- /luci-app-oaf/luasrc/model/cbi/appfilter/feature.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oaf/luasrc/model/cbi/appfilter/feature.lua -------------------------------------------------------------------------------- /luci-app-oaf/luasrc/model/cbi/appfilter/overview.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oaf/luasrc/model/cbi/appfilter/overview.lua -------------------------------------------------------------------------------- /luci-app-oaf/luasrc/model/cbi/appfilter/time.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oaf/luasrc/model/cbi/appfilter/time.lua -------------------------------------------------------------------------------- /luci-app-oaf/luasrc/model/cbi/appfilter/user.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oaf/luasrc/model/cbi/appfilter/user.lua -------------------------------------------------------------------------------- /luci-app-oaf/luasrc/view/admin_network/advance.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oaf/luasrc/view/admin_network/advance.htm -------------------------------------------------------------------------------- /luci-app-oaf/luasrc/view/admin_network/time.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oaf/luasrc/view/admin_network/time.htm -------------------------------------------------------------------------------- /luci-app-oaf/luasrc/view/admin_network/user.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oaf/luasrc/view/admin_network/user.htm -------------------------------------------------------------------------------- /luci-app-oaf/luasrc/view/cbi/oaf_dvalue.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oaf/luasrc/view/cbi/oaf_dvalue.htm -------------------------------------------------------------------------------- /luci-app-oaf/luasrc/view/cbi/oaf_upload.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oaf/luasrc/view/cbi/oaf_upload.htm -------------------------------------------------------------------------------- /luci-app-oaf/po/zh-cn/oaf.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oaf/po/zh-cn/oaf.po -------------------------------------------------------------------------------- /luci-app-oaf/root/etc/uci-defaults/94_feature_3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oaf/root/etc/uci-defaults/94_feature_3.0 -------------------------------------------------------------------------------- /luci-app-oled/linux/ssd1306.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oled/linux/ssd1306.cfg -------------------------------------------------------------------------------- /luci-app-oled/linux/ssd1306.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oled/linux/ssd1306.service -------------------------------------------------------------------------------- /luci-app-oled/luci-app-oled/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oled/luci-app-oled/Makefile -------------------------------------------------------------------------------- /luci-app-oled/luci-app-oled/po/zh-cn/oled.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oled/luci-app-oled/po/zh-cn/oled.po -------------------------------------------------------------------------------- /luci-app-oled/luci-app-oled/po/zh-tw: -------------------------------------------------------------------------------- 1 | zh_Hant -------------------------------------------------------------------------------- /luci-app-oled/luci-app-oled/po/zh_Hant/oled.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oled/luci-app-oled/po/zh_Hant/oled.po -------------------------------------------------------------------------------- /luci-app-oled/luci-app-oled/root/etc/config/oled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oled/luci-app-oled/root/etc/config/oled -------------------------------------------------------------------------------- /luci-app-oled/luci-app-oled/root/etc/init.d/oled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oled/luci-app-oled/root/etc/init.d/oled -------------------------------------------------------------------------------- /luci-app-oled/luci-app-oled/src/Example_Code/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oled/luci-app-oled/src/Example_Code/main.c -------------------------------------------------------------------------------- /luci-app-oled/luci-app-oled/src/I2C_Library/I2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oled/luci-app-oled/src/I2C_Library/I2C.c -------------------------------------------------------------------------------- /luci-app-oled/luci-app-oled/src/I2C_Library/I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oled/luci-app-oled/src/I2C_Library/I2C.h -------------------------------------------------------------------------------- /luci-app-oled/luci-app-oled/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oled/luci-app-oled/src/Makefile -------------------------------------------------------------------------------- /luci-app-onliner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-onliner/Makefile -------------------------------------------------------------------------------- /luci-app-onliner/luasrc/controller/onliner.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-onliner/luasrc/controller/onliner.lua -------------------------------------------------------------------------------- /luci-app-onliner/luasrc/view/onliner/display.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-onliner/luasrc/view/onliner/display.htm -------------------------------------------------------------------------------- /luci-app-onliner/luasrc/view/onliner/onliner.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-onliner/luasrc/view/onliner/onliner.htm -------------------------------------------------------------------------------- /luci-app-onliner/root/usr/share/onliner/setnlbw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-onliner/root/usr/share/onliner/setnlbw.sh -------------------------------------------------------------------------------- /luci-app-oscam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oscam/Makefile -------------------------------------------------------------------------------- /luci-app-oscam/luasrc/controller/oscam.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oscam/luasrc/controller/oscam.lua -------------------------------------------------------------------------------- /luci-app-oscam/luasrc/model/cbi/oscam.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oscam/luasrc/model/cbi/oscam.lua -------------------------------------------------------------------------------- /luci-app-oscam/po/zh-cn/oscam.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oscam/po/zh-cn/oscam.po -------------------------------------------------------------------------------- /luci-app-oscam/root/etc/config/oscam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oscam/root/etc/config/oscam -------------------------------------------------------------------------------- /luci-app-oscam/root/etc/uci-defaults/luci-oscam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-oscam/root/etc/uci-defaults/luci-oscam -------------------------------------------------------------------------------- /luci-app-parentcontrol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-parentcontrol/Makefile -------------------------------------------------------------------------------- /luci-app-parentcontrol/doc/parentcontrol1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-parentcontrol/doc/parentcontrol1.png -------------------------------------------------------------------------------- /luci-app-parentcontrol/doc/parentcontrol2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-parentcontrol/doc/parentcontrol2.png -------------------------------------------------------------------------------- /luci-app-parentcontrol/doc/parentcontrol3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-parentcontrol/doc/parentcontrol3.png -------------------------------------------------------------------------------- /luci-app-parentcontrol/po/zh-cn/parentcontrol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-parentcontrol/po/zh-cn/parentcontrol.po -------------------------------------------------------------------------------- /luci-app-parentcontrol/root/etc/config/parentcontrol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-parentcontrol/root/etc/config/parentcontrol -------------------------------------------------------------------------------- /luci-app-parentcontrol/root/etc/init.d/parentcontrol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-parentcontrol/root/etc/init.d/parentcontrol -------------------------------------------------------------------------------- /luci-app-parentcontrol/root/etc/parentcontrol.include: -------------------------------------------------------------------------------- 1 | /etc/init.d/parentcontrol start 2 | 3 | -------------------------------------------------------------------------------- /luci-app-parentcontrol/root/etc/parentcontrol/black.list: -------------------------------------------------------------------------------- 1 | baidu 2 | 163.com 3 | 4 | -------------------------------------------------------------------------------- /luci-app-parentcontrol/root/etc/parentcontrol/white.list: -------------------------------------------------------------------------------- 1 | baidu.com -------------------------------------------------------------------------------- /luci-app-partexp/doc/partexp0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-partexp/doc/partexp0.png -------------------------------------------------------------------------------- /luci-app-partexp/doc/partexp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-partexp/doc/partexp1.png -------------------------------------------------------------------------------- /luci-app-partexp/doc/partexp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-partexp/doc/partexp2.png -------------------------------------------------------------------------------- /luci-app-partexp/luci-app-partexp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-partexp/luci-app-partexp/Makefile -------------------------------------------------------------------------------- /luci-app-partexp/luci-app-partexp/root/etc/partexp/lucilogpos: -------------------------------------------------------------------------------- 1 | 1043 -------------------------------------------------------------------------------- /luci-app-partexp/luci-app-partexp/root/etc/partexp/partexp.log: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /luci-app-poweroff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-poweroff/Makefile -------------------------------------------------------------------------------- /luci-app-poweroff/luasrc/controller/poweroff.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-poweroff/luasrc/controller/poweroff.lua -------------------------------------------------------------------------------- /luci-app-poweroff/luasrc/view/poweroff.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-poweroff/luasrc/view/poweroff.htm -------------------------------------------------------------------------------- /luci-app-poweroff/po/ja/poweroff.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-poweroff/po/ja/poweroff.po -------------------------------------------------------------------------------- /luci-app-poweroff/po/zh-cn/poweroff.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-poweroff/po/zh-cn/poweroff.po -------------------------------------------------------------------------------- /luci-app-poweroff/po/zh-tw/poweroff.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-poweroff/po/zh-tw/poweroff.po -------------------------------------------------------------------------------- /luci-app-pppoe-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-pppoe-server/Makefile -------------------------------------------------------------------------------- /luci-app-pppoe-server/po/zh-cn/pppoe-server.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-pppoe-server/po/zh-cn/pppoe-server.po -------------------------------------------------------------------------------- /luci-app-pppoe-server/root/etc/config/pppoe-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-pppoe-server/root/etc/config/pppoe-server -------------------------------------------------------------------------------- /luci-app-pppoe-server/root/etc/init.d/pppoe-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-pppoe-server/root/etc/init.d/pppoe-server -------------------------------------------------------------------------------- /luci-app-pushbot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-pushbot/Makefile -------------------------------------------------------------------------------- /luci-app-pushbot/luasrc/controller/pushbot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-pushbot/luasrc/controller/pushbot.lua -------------------------------------------------------------------------------- /luci-app-pushbot/luasrc/model/cbi/pushbot/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-pushbot/luasrc/model/cbi/pushbot/client.lua -------------------------------------------------------------------------------- /luci-app-pushbot/luasrc/model/cbi/pushbot/log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-pushbot/luasrc/model/cbi/pushbot/log.lua -------------------------------------------------------------------------------- /luci-app-pushbot/luasrc/view/pushbot/pushbot_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-pushbot/luasrc/view/pushbot/pushbot_log.htm -------------------------------------------------------------------------------- /luci-app-pushbot/root/etc/config/pushbot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-pushbot/root/etc/config/pushbot -------------------------------------------------------------------------------- /luci-app-pushbot/root/etc/init.d/pushbot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-pushbot/root/etc/init.d/pushbot -------------------------------------------------------------------------------- /luci-app-pushbot/root/etc/uci-defaults/luci-pushbot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-pushbot/root/etc/uci-defaults/luci-pushbot -------------------------------------------------------------------------------- /luci-app-pushbot/root/usr/bin/pushbot/api/bark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-pushbot/root/usr/bin/pushbot/api/bark.json -------------------------------------------------------------------------------- /luci-app-pushbot/root/usr/bin/pushbot/api/diy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-pushbot/root/usr/bin/pushbot/api/diy.json -------------------------------------------------------------------------------- /luci-app-pushbot/root/usr/bin/pushbot/api/ip_blacklist: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /luci-app-pushbot/root/usr/bin/pushbot/api/ipv4.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-pushbot/root/usr/bin/pushbot/api/ipv4.list -------------------------------------------------------------------------------- /luci-app-pushbot/root/usr/bin/pushbot/api/ipv6.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-pushbot/root/usr/bin/pushbot/api/ipv6.list -------------------------------------------------------------------------------- /luci-app-pushbot/root/usr/bin/pushbot/pushbot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-pushbot/root/usr/bin/pushbot/pushbot -------------------------------------------------------------------------------- /luci-app-quickstart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-quickstart/Makefile -------------------------------------------------------------------------------- /luci-app-quickstart/htdocs/luci-static/quickstart/i18n/zh-cn.json: -------------------------------------------------------------------------------- 1 | {"zh-cn":{}} -------------------------------------------------------------------------------- /luci-app-quickstart/luasrc/controller/quickstart.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-quickstart/luasrc/controller/quickstart.lua -------------------------------------------------------------------------------- /luci-app-quickstart/luasrc/view/quickstart/home.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-quickstart/luasrc/view/quickstart/home.htm -------------------------------------------------------------------------------- /luci-app-quickstart/luasrc/view/quickstart/main.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-quickstart/luasrc/view/quickstart/main.htm -------------------------------------------------------------------------------- /luci-app-quickstart/po/zh-cn/quickstart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-quickstart/po/zh-cn/quickstart.po -------------------------------------------------------------------------------- /luci-app-quickstart/root/etc/uci-defaults/50_luci-quickstart: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /tmp/luci-indexcache 4 | exit 0 5 | -------------------------------------------------------------------------------- /luci-app-rclone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-rclone/Makefile -------------------------------------------------------------------------------- /luci-app-rclone/luasrc/controller/rclone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-rclone/luasrc/controller/rclone.lua -------------------------------------------------------------------------------- /luci-app-rclone/luasrc/model/cbi/rclone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-rclone/luasrc/model/cbi/rclone.lua -------------------------------------------------------------------------------- /luci-app-rclone/po/en/rclone.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-rclone/po/en/rclone.po -------------------------------------------------------------------------------- /luci-app-rclone/po/templates/luci-app-rclone.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-rclone/po/templates/luci-app-rclone.pot -------------------------------------------------------------------------------- /luci-app-rclone/po/zh-cn/luci-app-rclone.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-rclone/po/zh-cn/luci-app-rclone.po -------------------------------------------------------------------------------- /luci-app-rclone/root/etc/config/rclone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-rclone/root/etc/config/rclone -------------------------------------------------------------------------------- /luci-app-rclone/root/etc/init.d/rclone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-rclone/root/etc/init.d/rclone -------------------------------------------------------------------------------- /luci-app-shutdown/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-shutdown/Makefile -------------------------------------------------------------------------------- /luci-app-shutdown/luasrc/controller/shutdown.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-shutdown/luasrc/controller/shutdown.lua -------------------------------------------------------------------------------- /luci-app-shutdown/luasrc/model/cbi/shutdown.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-shutdown/luasrc/model/cbi/shutdown.lua -------------------------------------------------------------------------------- /luci-app-shutdown/po/zh-cn/shutdown.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-shutdown/po/zh-cn/shutdown.po -------------------------------------------------------------------------------- /luci-app-smartdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-smartdns/Makefile -------------------------------------------------------------------------------- /luci-app-smartdns/luasrc/controller/smartdns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-smartdns/luasrc/controller/smartdns.lua -------------------------------------------------------------------------------- /luci-app-smartdns/luasrc/model/smartdns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-smartdns/luasrc/model/smartdns.lua -------------------------------------------------------------------------------- /luci-app-smartdns/po/zh-cn/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-smartdns/po/zh-cn/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartinfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-smartinfo/Makefile -------------------------------------------------------------------------------- /luci-app-smartinfo/luasrc/controller/smartinfo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-smartinfo/luasrc/controller/smartinfo.lua -------------------------------------------------------------------------------- /luci-app-smartinfo/luasrc/model/cbi/smartinfo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-smartinfo/luasrc/model/cbi/smartinfo.lua -------------------------------------------------------------------------------- /luci-app-smartinfo/po/zh-cn/smartinfo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-smartinfo/po/zh-cn/smartinfo.po -------------------------------------------------------------------------------- /luci-app-smartinfo/root/etc/config/smartinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-smartinfo/root/etc/config/smartinfo -------------------------------------------------------------------------------- /luci-app-smartinfo/root/etc/init.d/smartinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-smartinfo/root/etc/init.d/smartinfo -------------------------------------------------------------------------------- /luci-app-softethervpn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-softethervpn/Makefile -------------------------------------------------------------------------------- /luci-app-softethervpn/po/zh-cn/softethervpn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-softethervpn/po/zh-cn/softethervpn.po -------------------------------------------------------------------------------- /luci-app-softethervpn/root/etc/config/softethervpn: -------------------------------------------------------------------------------- 1 | 2 | config softether 3 | option enable '0' 4 | -------------------------------------------------------------------------------- /luci-app-softethervpn/root/etc/init.d/softethervpn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-softethervpn/root/etc/init.d/softethervpn -------------------------------------------------------------------------------- /luci-app-sqm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/Makefile -------------------------------------------------------------------------------- /luci-app-sqm/luasrc/controller/sqm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/luasrc/controller/sqm.lua -------------------------------------------------------------------------------- /luci-app-sqm/luasrc/model/cbi/sqm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/luasrc/model/cbi/sqm.lua -------------------------------------------------------------------------------- /luci-app-sqm/po/ar/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/ar/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/bg/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/bg/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/bn_BD/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/bn_BD/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/ca/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/ca/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/cs/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/cs/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/de/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/de/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/el/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/el/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/en/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/en/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/es/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/es/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/fi/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/fi/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/fr/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/fr/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/he/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/he/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/hi/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/hi/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/hu/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/hu/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/it/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/it/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/ja/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/ja/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/ko/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/ko/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/mr/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/mr/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/ms/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/ms/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/nb_NO/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/nb_NO/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/pl/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/pl/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/pt/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/pt/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/pt_BR/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/pt_BR/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/ro/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/ro/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/ru/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/ru/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/sk/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/sk/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/sv/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/sv/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/templates/sqm.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/templates/sqm.pot -------------------------------------------------------------------------------- /luci-app-sqm/po/tr/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/tr/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/uk/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/uk/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/vi/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/vi/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/zh-cn/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/zh-cn/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/po/zh-tw/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/po/zh-tw/sqm.po -------------------------------------------------------------------------------- /luci-app-sqm/root/etc/uci-defaults/50-luci-sqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-sqm/root/etc/uci-defaults/50-luci-sqm -------------------------------------------------------------------------------- /luci-app-ssr-mudb-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ssr-mudb-server/Makefile -------------------------------------------------------------------------------- /luci-app-ssr-mudb-server/po/zh-cn/ssr_mudb_server.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ssr-mudb-server/po/zh-cn/ssr_mudb_server.po -------------------------------------------------------------------------------- /luci-app-ssr-mudb-server/root/usr/share/ssr_mudb_server/mudb.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /luci-app-ssr-mudb-server/root/usr/share/ssr_mudb_server/shadowsocks/tail.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | tail -f ssserver.log 4 | -------------------------------------------------------------------------------- /luci-app-ssr-mudb-server/root/usr/share/ssr_mudb_server/tail.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd `dirname $0` 3 | tail -f ssserver.log 4 | -------------------------------------------------------------------------------- /luci-app-store/luci/luci-app-store/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-store/luci/luci-app-store/Makefile -------------------------------------------------------------------------------- /luci-app-store/luci/luci-app-store/root/bin/is-opkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-store/luci/luci-app-store/root/bin/is-opkg -------------------------------------------------------------------------------- /luci-app-store/luci/luci-app-store/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-store/luci/luci-app-store/src/Makefile -------------------------------------------------------------------------------- /luci-app-store/luci/luci-app-store/src/compat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-store/luci/luci-app-store/src/compat.conf -------------------------------------------------------------------------------- /luci-app-store/luci/luci-app-store/src/dummy/package.mk: -------------------------------------------------------------------------------- 1 | define BuildPackage 2 | endef -------------------------------------------------------------------------------- /luci-app-store/luci/luci-app-store/src/key-build.pub: -------------------------------------------------------------------------------- 1 | untrusted comment: istore key 2 | RWSlbxYnTG1Ia0BvB+xd7YdP7QDQACljfpve7sx9KYq94QgIqtlljuME 3 | -------------------------------------------------------------------------------- /luci-app-store/luci/luci-app-store/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-store/luci/luci-app-store/swagger.yaml -------------------------------------------------------------------------------- /luci-app-store/luci/luci-lib-taskd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-store/luci/luci-lib-taskd/Makefile -------------------------------------------------------------------------------- /luci-app-store/luci/luci-lib-taskd/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-store/luci/luci-lib-taskd/src/Makefile -------------------------------------------------------------------------------- /luci-app-store/luci/luci-lib-taskd/src/dummy/package.mk: -------------------------------------------------------------------------------- 1 | define BuildPackage 2 | endef -------------------------------------------------------------------------------- /luci-app-store/luci/luci-lib-xterm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-store/luci/luci-lib-xterm/Makefile -------------------------------------------------------------------------------- /luci-app-store/luci/taskd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-store/luci/taskd/Makefile -------------------------------------------------------------------------------- /luci-app-store/luci/taskd/files/taskd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-store/luci/taskd/files/taskd.sh -------------------------------------------------------------------------------- /luci-app-store/luci/taskd/files/tasks.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-store/luci/taskd/files/tasks.init -------------------------------------------------------------------------------- /luci-app-store/preview/istore-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-store/preview/istore-preview.png -------------------------------------------------------------------------------- /luci-app-store/translations/en/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-store/translations/en/app.po -------------------------------------------------------------------------------- /luci-app-store/translations/templates/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-store/translations/templates/app.pot -------------------------------------------------------------------------------- /luci-app-store/translations/zh-cn/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-store/translations/zh-cn/app.po -------------------------------------------------------------------------------- /luci-app-supervisord/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-supervisord/Makefile -------------------------------------------------------------------------------- /luci-app-supervisord/luasrc/view/supervisord/log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-supervisord/luasrc/view/supervisord/log.htm -------------------------------------------------------------------------------- /luci-app-supervisord/po/zh-cn/supervisord.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-supervisord/po/zh-cn/supervisord.po -------------------------------------------------------------------------------- /luci-app-supervisord/root/etc/config/supervisord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-supervisord/root/etc/config/supervisord -------------------------------------------------------------------------------- /luci-app-supervisord/root/etc/init.d/supervisord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-supervisord/root/etc/init.d/supervisord -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-control-timewol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-syncthing/luci-app-control-timewol/Makefile -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-control-timewol/root/etc/config/timewol: -------------------------------------------------------------------------------- 1 | 2 | config basic 3 | option enable '0' 4 | -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-control-weburl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-syncthing/luci-app-control-weburl/Makefile -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-fileassistant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-syncthing/luci-app-fileassistant/Makefile -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-filebrowser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-syncthing/luci-app-filebrowser/Makefile -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-guest-wifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-syncthing/luci-app-guest-wifi/Makefile -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-ipsec-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-syncthing/luci-app-ipsec-server/Makefile -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-kodexplorer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-syncthing/luci-app-kodexplorer/Makefile -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-nginx-pingos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-syncthing/luci-app-nginx-pingos/Makefile -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-openvpn-client/root/etc/config/luci-app-openvpn-client: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-pppoe-relay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-syncthing/luci-app-pppoe-relay/Makefile -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-pppoe-relay/root/etc/config/pppoe-relay: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-pppoe-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-syncthing/luci-app-pppoe-server/Makefile -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-pptp-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-syncthing/luci-app-pptp-server/Makefile -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-ramfree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-syncthing/luci-app-ramfree/Makefile -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-ramfree/po/zh-cn/release_ram.po: -------------------------------------------------------------------------------- 1 | msgid "Release Ram" 2 | msgstr "释放内存" 3 | -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-socat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-syncthing/luci-app-socat/Makefile -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-socat/root/usr/share/nftables.d/table-post/20-socat.nft: -------------------------------------------------------------------------------- 1 | chain socat_input {} 2 | -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-softethervpn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-syncthing/luci-app-softethervpn/Makefile -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-softethervpn/root/etc/config/softethervpn: -------------------------------------------------------------------------------- 1 | 2 | config softether 3 | option enabled '0' 4 | -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-ssr-mudb-server/root/usr/share/ssr_mudb_server/mudb.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-ssr-mudb-server/root/usr/share/ssr_mudb_server/shadowsocks/tail.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | tail -f ssserver.log 4 | -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-ssr-mudb-server/root/usr/share/ssr_mudb_server/tail.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd `dirname $0` 3 | tail -f ssserver.log 4 | -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-syncthing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-syncthing/luci-app-syncthing/Makefile -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-timecontrol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-syncthing/luci-app-timecontrol/Makefile -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-timecontrol/root/etc/config/timecontrol: -------------------------------------------------------------------------------- 1 | 2 | config basic 3 | option enable '0' 4 | -------------------------------------------------------------------------------- /luci-app-syncthing/luci-app-verysync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-syncthing/luci-app-verysync/Makefile -------------------------------------------------------------------------------- /luci-app-syncthing/verysync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-syncthing/verysync/Makefile -------------------------------------------------------------------------------- /luci-app-tcpdump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-tcpdump/Makefile -------------------------------------------------------------------------------- /luci-app-tcpdump/luasrc/controller/tcpdump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-tcpdump/luasrc/controller/tcpdump.lua -------------------------------------------------------------------------------- /luci-app-tcpdump/luasrc/view/tcpdump.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-tcpdump/luasrc/view/tcpdump.htm -------------------------------------------------------------------------------- /luci-app-tcpdump/po/zh-cn/tcpdump.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-tcpdump/po/zh-cn/tcpdump.po -------------------------------------------------------------------------------- /luci-app-tencentddns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-tencentddns/Makefile -------------------------------------------------------------------------------- /luci-app-tencentddns/po/zh-cn/tencentddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-tencentddns/po/zh-cn/tencentddns.po -------------------------------------------------------------------------------- /luci-app-tencentddns/root/etc/config/tencentddns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-tencentddns/root/etc/config/tencentddns -------------------------------------------------------------------------------- /luci-app-tencentddns/root/etc/init.d/tencentddns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-tencentddns/root/etc/init.d/tencentddns -------------------------------------------------------------------------------- /luci-app-tencentddns/root/usr/sbin/tencentddns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-tencentddns/root/usr/sbin/tencentddns -------------------------------------------------------------------------------- /luci-app-ttnode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ttnode/Makefile -------------------------------------------------------------------------------- /luci-app-ttnode/luasrc/controller/ttnode.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ttnode/luasrc/controller/ttnode.lua -------------------------------------------------------------------------------- /luci-app-ttnode/luasrc/model/cbi/ttnode.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ttnode/luasrc/model/cbi/ttnode.lua -------------------------------------------------------------------------------- /luci-app-ttnode/luasrc/view/ttnode/login_form.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ttnode/luasrc/view/ttnode/login_form.htm -------------------------------------------------------------------------------- /luci-app-ttnode/root/etc/config/ttnode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ttnode/root/etc/config/ttnode -------------------------------------------------------------------------------- /luci-app-ttnode/root/etc/init.d/ttnode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ttnode/root/etc/init.d/ttnode -------------------------------------------------------------------------------- /luci-app-ttnode/root/etc/uci-defaults/luci-ttnode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ttnode/root/etc/uci-defaults/luci-ttnode -------------------------------------------------------------------------------- /luci-app-ttnode/root/usr/share/ttnode/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ttnode/root/usr/share/ttnode/main.lua -------------------------------------------------------------------------------- /luci-app-ttnode/root/usr/share/ttnode/ttnode.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-ttnode/root/usr/share/ttnode/ttnode.lua -------------------------------------------------------------------------------- /luci-app-unblockmusic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-unblockmusic/Makefile -------------------------------------------------------------------------------- /luci-app-unblockmusic/po/zh-cn/unblockmusic.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-unblockmusic/po/zh-cn/unblockmusic.po -------------------------------------------------------------------------------- /luci-app-unblockneteasemusic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-unblockneteasemusic/Makefile -------------------------------------------------------------------------------- /luci-app-unblockneteasemusic/views/view1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-unblockneteasemusic/views/view1.jpg -------------------------------------------------------------------------------- /luci-app-unblockneteasemusic/views/view2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-unblockneteasemusic/views/view2.jpg -------------------------------------------------------------------------------- /luci-app-unblockneteasemusic/views/view3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-unblockneteasemusic/views/view3.jpg -------------------------------------------------------------------------------- /luci-app-unblockneteasemusic/views/view4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-unblockneteasemusic/views/view4.jpg -------------------------------------------------------------------------------- /luci-app-unishare/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-unishare/Makefile -------------------------------------------------------------------------------- /luci-app-unishare/luasrc/controller/unishare.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-unishare/luasrc/controller/unishare.lua -------------------------------------------------------------------------------- /luci-app-unishare/po/zh-cn/unishare.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-unishare/po/zh-cn/unishare.po -------------------------------------------------------------------------------- /luci-app-vlmcsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-vlmcsd/Makefile -------------------------------------------------------------------------------- /luci-app-vlmcsd/luasrc/controller/vlmcsd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-vlmcsd/luasrc/controller/vlmcsd.lua -------------------------------------------------------------------------------- /luci-app-vlmcsd/luasrc/model/cbi/vlmcsd/basic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-vlmcsd/luasrc/model/cbi/vlmcsd/basic.lua -------------------------------------------------------------------------------- /luci-app-vlmcsd/po/zh-cn/vlmcsd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-vlmcsd/po/zh-cn/vlmcsd.po -------------------------------------------------------------------------------- /luci-app-vlmcsd/root/etc/config/vlmcsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-vlmcsd/root/etc/config/vlmcsd -------------------------------------------------------------------------------- /luci-app-vlmcsd/root/etc/init.d/kms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-vlmcsd/root/etc/init.d/kms -------------------------------------------------------------------------------- /luci-app-vlmcsd/root/etc/uci-defaults/luci-vlmcsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-vlmcsd/root/etc/uci-defaults/luci-vlmcsd -------------------------------------------------------------------------------- /luci-app-webd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-webd/Makefile -------------------------------------------------------------------------------- /luci-app-webd/luasrc/controller/webd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-webd/luasrc/controller/webd.lua -------------------------------------------------------------------------------- /luci-app-webd/luasrc/model/cbi/webd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-webd/luasrc/model/cbi/webd.lua -------------------------------------------------------------------------------- /luci-app-webd/luasrc/view/webd/webd_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-webd/luasrc/view/webd/webd_status.htm -------------------------------------------------------------------------------- /luci-app-webd/po/zh-cn/webd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-webd/po/zh-cn/webd.po -------------------------------------------------------------------------------- /luci-app-webd/root/etc/config/webd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-webd/root/etc/config/webd -------------------------------------------------------------------------------- /luci-app-webd/root/etc/init.d/webd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-webd/root/etc/init.d/webd -------------------------------------------------------------------------------- /luci-app-webd/root/etc/uci-defaults/luci-webd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-webd/root/etc/uci-defaults/luci-webd -------------------------------------------------------------------------------- /luci-app-wol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/Makefile -------------------------------------------------------------------------------- /luci-app-wol/luasrc/controller/wol.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/luasrc/controller/wol.lua -------------------------------------------------------------------------------- /luci-app-wol/luasrc/model/cbi/wol.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/luasrc/model/cbi/wol.lua -------------------------------------------------------------------------------- /luci-app-wol/po/ca/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/ca/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/cs/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/cs/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/de/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/de/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/el/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/el/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/en/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/en/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/es/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/es/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/fr/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/fr/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/he/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/he/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/hu/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/hu/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/it/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/it/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/ja/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/ja/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/ms/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/ms/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/no/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/no/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/pl/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/pl/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/pt-br/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/pt-br/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/pt/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/pt/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/ro/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/ro/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/ru/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/ru/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/sk/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/sk/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/sv/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/sv/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/templates/wol.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/templates/wol.pot -------------------------------------------------------------------------------- /luci-app-wol/po/tr/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/tr/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/uk/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/uk/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/vi/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/vi/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/zh-cn/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/zh-cn/wol.po -------------------------------------------------------------------------------- /luci-app-wol/po/zh-tw/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-wol/po/zh-tw/wol.po -------------------------------------------------------------------------------- /luci-app-zerotier/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-zerotier/Makefile -------------------------------------------------------------------------------- /luci-app-zerotier/luasrc/controller/zerotier.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-zerotier/luasrc/controller/zerotier.lua -------------------------------------------------------------------------------- /luci-app-zerotier/luasrc/view/zerotier/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-zerotier/luasrc/view/zerotier/index.htm -------------------------------------------------------------------------------- /luci-app-zerotier/luasrc/view/zerotier/status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-zerotier/luasrc/view/zerotier/status.htm -------------------------------------------------------------------------------- /luci-app-zerotier/po/zh-cn/zerotier.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-zerotier/po/zh-cn/zerotier.po -------------------------------------------------------------------------------- /luci-app-zerotier/root/etc/init.d/zerotier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-zerotier/root/etc/init.d/zerotier -------------------------------------------------------------------------------- /luci-app-zerotier/root/etc/zerotier.start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-zerotier/root/etc/zerotier.start -------------------------------------------------------------------------------- /luci-app-zerotier/root/etc/zerotier.stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/luci-app-zerotier/root/etc/zerotier.stop -------------------------------------------------------------------------------- /luci-app-zerotier/root/etc/zerotier/zerotier.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /relevance/UnblockNeteaseMusic-Go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/UnblockNeteaseMusic-Go/Makefile -------------------------------------------------------------------------------- /relevance/UnblockNeteaseMusic-Go/files/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/UnblockNeteaseMusic-Go/files/ca.crt -------------------------------------------------------------------------------- /relevance/UnblockNeteaseMusic-Go/files/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/UnblockNeteaseMusic-Go/files/server.crt -------------------------------------------------------------------------------- /relevance/UnblockNeteaseMusic-Go/files/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/UnblockNeteaseMusic-Go/files/server.key -------------------------------------------------------------------------------- /relevance/UnblockNeteaseMusic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/UnblockNeteaseMusic/Makefile -------------------------------------------------------------------------------- /relevance/UpdateList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/UpdateList.txt -------------------------------------------------------------------------------- /relevance/Wiwiz-PinPinWiFi/dcc2-wiwiz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/Wiwiz-PinPinWiFi/dcc2-wiwiz/Makefile -------------------------------------------------------------------------------- /relevance/Wiwiz-PinPinWiFi/wifidog-wiwiz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/Wiwiz-PinPinWiFi/wifidog-wiwiz/Makefile -------------------------------------------------------------------------------- /relevance/Wiwiz-PinPinWiFi/wifidog-wiwiz/files/usr/local/hsbuilder/hsbuilder.conf: -------------------------------------------------------------------------------- 1 | TIMEOUT=10 -------------------------------------------------------------------------------- /relevance/Wiwiz-PinPinWiFi/wifidog-wiwiz/files/usr/local/hsbuilder/ver: -------------------------------------------------------------------------------- 1 | 3.6.4 -------------------------------------------------------------------------------- /relevance/Wiwiz-PinPinWiFi/wifidog-wiwiz/src/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/Wiwiz-PinPinWiFi/wifidog-wiwiz/src/FAQ -------------------------------------------------------------------------------- /relevance/Wiwiz-PinPinWiFi/wifidog-wiwiz/src/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/Wiwiz-PinPinWiFi/wifidog-wiwiz/src/NEWS -------------------------------------------------------------------------------- /relevance/Wiwiz-PinPinWiFi/wifidog-wiwiz/src/contrib/build-openwrt-whiterussianipk/wifidog/ipkg/wifidog.conffiles: -------------------------------------------------------------------------------- 1 | /etc/wifidog.conf 2 | -------------------------------------------------------------------------------- /relevance/adguardhome/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/adguardhome/Makefile -------------------------------------------------------------------------------- /relevance/adguardhome/files/adguardhome.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/adguardhome/files/adguardhome.init -------------------------------------------------------------------------------- /relevance/alist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/alist/Makefile -------------------------------------------------------------------------------- /relevance/alist/files/alist.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/alist/files/alist.config -------------------------------------------------------------------------------- /relevance/alist/files/alist.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/alist/files/alist.init -------------------------------------------------------------------------------- /relevance/alist/files/data.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/alist/files/data.db -------------------------------------------------------------------------------- /relevance/alist/src/public/dist/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/alist/src/public/dist/assets/logo.png -------------------------------------------------------------------------------- /relevance/alist/src/public/dist/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/alist/src/public/dist/assets/logo.svg -------------------------------------------------------------------------------- /relevance/assets/luci-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/assets/luci-screenshot.png -------------------------------------------------------------------------------- /relevance/assets/rcloneng-screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/assets/rcloneng-screenshot-1.png -------------------------------------------------------------------------------- /relevance/assets/rcloneng-screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/assets/rcloneng-screenshot-2.png -------------------------------------------------------------------------------- /relevance/assets/rcloneng-screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/assets/rcloneng-screenshot-3.png -------------------------------------------------------------------------------- /relevance/assets/webui-screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/assets/webui-screenshot1.png -------------------------------------------------------------------------------- /relevance/assets/webui-screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/assets/webui-screenshot2.png -------------------------------------------------------------------------------- /relevance/cdnspeedtest/cdnspeedtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/cdnspeedtest/cdnspeedtest/Makefile -------------------------------------------------------------------------------- /relevance/cdnspeedtest/cdnspeedtest/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cdnspeedtest -v | grep "$2" 4 | -------------------------------------------------------------------------------- /relevance/clud/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/clud/build.sh -------------------------------------------------------------------------------- /relevance/clud/doc/overview.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/clud/doc/overview.jpeg -------------------------------------------------------------------------------- /relevance/cpulimit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/cpulimit/Makefile -------------------------------------------------------------------------------- /relevance/cpulimit/patches/010-gcc14.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/cpulimit/patches/010-gcc14.patch -------------------------------------------------------------------------------- /relevance/ddnsto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/ddnsto/Makefile -------------------------------------------------------------------------------- /relevance/ddnsto/files/ddnsto-monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/ddnsto/files/ddnsto-monitor.sh -------------------------------------------------------------------------------- /relevance/ddnsto/files/ddnsto.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/ddnsto/files/ddnsto.config -------------------------------------------------------------------------------- /relevance/ddnsto/files/ddnsto.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/ddnsto/files/ddnsto.init -------------------------------------------------------------------------------- /relevance/ddnsto/files/ddnsto.uci-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/ddnsto/files/ddnsto.uci-default -------------------------------------------------------------------------------- /relevance/doc/lucky1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/doc/lucky1.png -------------------------------------------------------------------------------- /relevance/doc/lucky2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/doc/lucky2.png -------------------------------------------------------------------------------- /relevance/doc/lucky3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/doc/lucky3.png -------------------------------------------------------------------------------- /relevance/ffmpeg-remux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/ffmpeg-remux/Makefile -------------------------------------------------------------------------------- /relevance/filebrowser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/filebrowser/Makefile -------------------------------------------------------------------------------- /relevance/filebrowser/files/filebrowser.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/filebrowser/files/filebrowser.config -------------------------------------------------------------------------------- /relevance/filebrowser/files/filebrowser.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/filebrowser/files/filebrowser.init -------------------------------------------------------------------------------- /relevance/gost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/gost/Makefile -------------------------------------------------------------------------------- /relevance/gost/files/gost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/gost/files/gost.config -------------------------------------------------------------------------------- /relevance/gost/files/gost.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/gost/files/gost.init -------------------------------------------------------------------------------- /relevance/istoreenhance/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/istoreenhance/Makefile -------------------------------------------------------------------------------- /relevance/istoreenhance/files/istoreenhance.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/istoreenhance/files/istoreenhance.init -------------------------------------------------------------------------------- /relevance/kcptun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/kcptun/Makefile -------------------------------------------------------------------------------- /relevance/kcptun/files/kcptun.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/kcptun/files/kcptun.config -------------------------------------------------------------------------------- /relevance/kcptun/files/kcptun.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/kcptun/files/kcptun.init -------------------------------------------------------------------------------- /relevance/linkease/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/linkease/Makefile -------------------------------------------------------------------------------- /relevance/linkease/files/aria2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/linkease/files/aria2.sh -------------------------------------------------------------------------------- /relevance/linkease/files/linkease-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/linkease/files/linkease-config.sh -------------------------------------------------------------------------------- /relevance/linkease/files/linkease.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/linkease/files/linkease.config -------------------------------------------------------------------------------- /relevance/linkease/files/linkease.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/linkease/files/linkease.init -------------------------------------------------------------------------------- /relevance/linkease/files/linkease.uci-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/linkease/files/linkease.uci-default -------------------------------------------------------------------------------- /relevance/linkmount/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/linkmount/Makefile -------------------------------------------------------------------------------- /relevance/luci-lib-iform/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/luci-lib-iform/Makefile -------------------------------------------------------------------------------- /relevance/luci-lib-iform/luasrc/iform.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/luci-lib-iform/luasrc/iform.lua -------------------------------------------------------------------------------- /relevance/luci-nginxer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/luci-nginxer/Makefile -------------------------------------------------------------------------------- /relevance/lucky/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/lucky/Makefile -------------------------------------------------------------------------------- /relevance/lucky/files/lucky.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/lucky/files/lucky.config -------------------------------------------------------------------------------- /relevance/lucky/files/lucky.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/lucky/files/lucky.init -------------------------------------------------------------------------------- /relevance/lucky/files/luckyarch.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/lucky/files/luckyarch.bin -------------------------------------------------------------------------------- /relevance/mosdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/mosdns/Makefile -------------------------------------------------------------------------------- /relevance/mosdns/patches/205-format-logtime.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/mosdns/patches/205-format-logtime.patch -------------------------------------------------------------------------------- /relevance/msd_lite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/msd_lite/Makefile -------------------------------------------------------------------------------- /relevance/msd_lite/files/msd_lite.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/msd_lite/files/msd_lite.config -------------------------------------------------------------------------------- /relevance/msd_lite/files/msd_lite.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/msd_lite/files/msd_lite.init -------------------------------------------------------------------------------- /relevance/msd_lite/files/msd_lite.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/msd_lite/files/msd_lite.sample -------------------------------------------------------------------------------- /relevance/natter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/natter/Makefile -------------------------------------------------------------------------------- /relevance/netdata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/netdata/Makefile -------------------------------------------------------------------------------- /relevance/netdata/files/charts.d.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/netdata/files/charts.d.conf -------------------------------------------------------------------------------- /relevance/netdata/files/netdata.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/netdata/files/netdata.conf -------------------------------------------------------------------------------- /relevance/netdata/files/netdata.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/netdata/files/netdata.init -------------------------------------------------------------------------------- /relevance/netdata/patches/005-freebsd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/netdata/patches/005-freebsd.patch -------------------------------------------------------------------------------- /relevance/netdata/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | netdata -version 2>&1 | grep "$2" 4 | -------------------------------------------------------------------------------- /relevance/oaf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/Makefile -------------------------------------------------------------------------------- /relevance/oaf/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/Makefile -------------------------------------------------------------------------------- /relevance/oaf/src/af_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/af_client.c -------------------------------------------------------------------------------- /relevance/oaf/src/af_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/af_client.h -------------------------------------------------------------------------------- /relevance/oaf/src/af_client_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/af_client_fs.c -------------------------------------------------------------------------------- /relevance/oaf/src/af_client_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/af_client_fs.h -------------------------------------------------------------------------------- /relevance/oaf/src/af_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/af_config.c -------------------------------------------------------------------------------- /relevance/oaf/src/af_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/af_config.h -------------------------------------------------------------------------------- /relevance/oaf/src/af_conntrack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/af_conntrack.c -------------------------------------------------------------------------------- /relevance/oaf/src/af_conntrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/af_conntrack.h -------------------------------------------------------------------------------- /relevance/oaf/src/af_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/af_log.c -------------------------------------------------------------------------------- /relevance/oaf/src/af_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/af_log.h -------------------------------------------------------------------------------- /relevance/oaf/src/af_rule_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/af_rule_config.c -------------------------------------------------------------------------------- /relevance/oaf/src/af_rule_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/af_rule_config.h -------------------------------------------------------------------------------- /relevance/oaf/src/af_user_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/af_user_config.c -------------------------------------------------------------------------------- /relevance/oaf/src/af_user_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/af_user_config.h -------------------------------------------------------------------------------- /relevance/oaf/src/af_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/af_utils.c -------------------------------------------------------------------------------- /relevance/oaf/src/af_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/af_utils.h -------------------------------------------------------------------------------- /relevance/oaf/src/af_whitelist_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/af_whitelist_config.c -------------------------------------------------------------------------------- /relevance/oaf/src/af_whitelist_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/af_whitelist_config.h -------------------------------------------------------------------------------- /relevance/oaf/src/app_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/app_filter.c -------------------------------------------------------------------------------- /relevance/oaf/src/app_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/app_filter.h -------------------------------------------------------------------------------- /relevance/oaf/src/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/cJSON.c -------------------------------------------------------------------------------- /relevance/oaf/src/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/cJSON.h -------------------------------------------------------------------------------- /relevance/oaf/src/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oaf/src/regexp.c -------------------------------------------------------------------------------- /relevance/open-app-filter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/open-app-filter/Makefile -------------------------------------------------------------------------------- /relevance/open-app-filter/files/appfilter.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/open-app-filter/files/appfilter.config -------------------------------------------------------------------------------- /relevance/open-app-filter/files/appfilter.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/open-app-filter/files/appfilter.init -------------------------------------------------------------------------------- /relevance/open-app-filter/files/feature.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/open-app-filter/files/feature.cfg -------------------------------------------------------------------------------- /relevance/open-app-filter/files/feature_cn.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/open-app-filter/files/feature_cn.cfg -------------------------------------------------------------------------------- /relevance/open-app-filter/files/feature_en.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/open-app-filter/files/feature_en.cfg -------------------------------------------------------------------------------- /relevance/open-app-filter/files/gen_class.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/open-app-filter/files/gen_class.sh -------------------------------------------------------------------------------- /relevance/open-app-filter/files/hnat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/open-app-filter/files/hnat.sh -------------------------------------------------------------------------------- /relevance/open-app-filter/files/oaf_rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/open-app-filter/files/oaf_rule -------------------------------------------------------------------------------- /relevance/open-app-filter/files/user_info.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /relevance/open-app-filter/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/open-app-filter/src/Makefile -------------------------------------------------------------------------------- /relevance/open-app-filter/src/appfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/open-app-filter/src/appfilter.h -------------------------------------------------------------------------------- /relevance/open-app-filter/src/appfilter_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/open-app-filter/src/appfilter_config.c -------------------------------------------------------------------------------- /relevance/open-app-filter/src/appfilter_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/open-app-filter/src/appfilter_config.h -------------------------------------------------------------------------------- /relevance/open-app-filter/src/appfilter_netlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/open-app-filter/src/appfilter_netlink.c -------------------------------------------------------------------------------- /relevance/open-app-filter/src/appfilter_netlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/open-app-filter/src/appfilter_netlink.h -------------------------------------------------------------------------------- /relevance/open-app-filter/src/appfilter_ubus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/open-app-filter/src/appfilter_ubus.c -------------------------------------------------------------------------------- /relevance/open-app-filter/src/appfilter_ubus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/open-app-filter/src/appfilter_ubus.h -------------------------------------------------------------------------------- /relevance/open-app-filter/src/appfilter_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/open-app-filter/src/appfilter_user.c -------------------------------------------------------------------------------- /relevance/open-app-filter/src/appfilter_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/open-app-filter/src/appfilter_user.h -------------------------------------------------------------------------------- /relevance/open-app-filter/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/open-app-filter/src/main.c -------------------------------------------------------------------------------- /relevance/open-app-filter/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/open-app-filter/src/utils.c -------------------------------------------------------------------------------- /relevance/open-app-filter/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/open-app-filter/src/utils.h -------------------------------------------------------------------------------- /relevance/openwrt-nezha/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/openwrt-nezha/Makefile -------------------------------------------------------------------------------- /relevance/openwrt-subconverter/libcron/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/openwrt-subconverter/libcron/Makefile -------------------------------------------------------------------------------- /relevance/openwrt-subconverter/quickjspp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/openwrt-subconverter/quickjspp/Makefile -------------------------------------------------------------------------------- /relevance/openwrt-subconverter/rapidjson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/openwrt-subconverter/rapidjson/Makefile -------------------------------------------------------------------------------- /relevance/openwrt-subconverter/toml11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/openwrt-subconverter/toml11/Makefile -------------------------------------------------------------------------------- /relevance/openwrt-tmate/msgpack-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/openwrt-tmate/msgpack-c/Makefile -------------------------------------------------------------------------------- /relevance/openwrt-tmate/tmate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/openwrt-tmate/tmate/Makefile -------------------------------------------------------------------------------- /relevance/openwrt-tmate/tmate/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | tmate -V | grep "$PKG_VERSION" 4 | -------------------------------------------------------------------------------- /relevance/openwrt_nezha/luci-app-nezha/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/openwrt_nezha/luci-app-nezha/Makefile -------------------------------------------------------------------------------- /relevance/openwrt_nezha/openwrt-nezha/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/openwrt_nezha/openwrt-nezha/Makefile -------------------------------------------------------------------------------- /relevance/oscam/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oscam/Config.in -------------------------------------------------------------------------------- /relevance/oscam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oscam/Makefile -------------------------------------------------------------------------------- /relevance/oscam/files/oscam-watchdog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oscam/files/oscam-watchdog.sh -------------------------------------------------------------------------------- /relevance/oscam/files/oscam.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oscam/files/oscam.conf -------------------------------------------------------------------------------- /relevance/oscam/files/oscam.dvbapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oscam/files/oscam.dvbapi -------------------------------------------------------------------------------- /relevance/oscam/files/oscam.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oscam/files/oscam.init -------------------------------------------------------------------------------- /relevance/oscam/files/oscam.server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oscam/files/oscam.server -------------------------------------------------------------------------------- /relevance/oscam/files/oscam.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/oscam/files/oscam.user -------------------------------------------------------------------------------- /relevance/packr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/packr/Makefile -------------------------------------------------------------------------------- /relevance/parted/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/parted/Config.in -------------------------------------------------------------------------------- /relevance/parted/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/parted/Makefile -------------------------------------------------------------------------------- /relevance/parted/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/parted/test.sh -------------------------------------------------------------------------------- /relevance/quickstart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/quickstart/Makefile -------------------------------------------------------------------------------- /relevance/quickstart/files/dhcpvalid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/quickstart/files/dhcpvalid.sh -------------------------------------------------------------------------------- /relevance/quickstart/files/manuf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/quickstart/files/manuf -------------------------------------------------------------------------------- /relevance/quickstart/files/quickstart.config: -------------------------------------------------------------------------------- 1 | config quickstart 'main' 2 | -------------------------------------------------------------------------------- /relevance/quickstart/files/quickstart.hotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/quickstart/files/quickstart.hotplug -------------------------------------------------------------------------------- /relevance/quickstart/files/quickstart.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/quickstart/files/quickstart.init -------------------------------------------------------------------------------- /relevance/quickstart/files/quickstart.uci-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/quickstart/files/quickstart.uci-default -------------------------------------------------------------------------------- /relevance/quickstart/files/startdhns.hotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/quickstart/files/startdhns.hotplug -------------------------------------------------------------------------------- /relevance/quickstart/files/startdhns.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/quickstart/files/startdhns.init -------------------------------------------------------------------------------- /relevance/rclone-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/rclone-ng/Makefile -------------------------------------------------------------------------------- /relevance/rclone-webui-react/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/rclone-webui-react/Makefile -------------------------------------------------------------------------------- /relevance/rclone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/rclone/Makefile -------------------------------------------------------------------------------- /relevance/smartdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/smartdns/Makefile -------------------------------------------------------------------------------- /relevance/smartmontools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/smartmontools/Makefile -------------------------------------------------------------------------------- /relevance/smartmontools/files/smartd.conf: -------------------------------------------------------------------------------- 1 | /dev/hdb -H 2 | -------------------------------------------------------------------------------- /relevance/smartmontools/files/smartd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/smartmontools/files/smartd.init -------------------------------------------------------------------------------- /relevance/smartmontools/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/smartmontools/test.sh -------------------------------------------------------------------------------- /relevance/socat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/socat/Makefile -------------------------------------------------------------------------------- /relevance/socat/files/socat.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/socat/files/socat.config -------------------------------------------------------------------------------- /relevance/socat/files/socat.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/socat/files/socat.init -------------------------------------------------------------------------------- /relevance/softethervpn5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/softethervpn5/Makefile -------------------------------------------------------------------------------- /relevance/softethervpn5/files/dummy: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /relevance/softethervpn5/files/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/softethervpn5/files/launcher.sh -------------------------------------------------------------------------------- /relevance/softethervpn5/files/vpnbridge.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/softethervpn5/files/vpnbridge.init -------------------------------------------------------------------------------- /relevance/softethervpn5/files/vpnclient.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/softethervpn5/files/vpnclient.init -------------------------------------------------------------------------------- /relevance/softethervpn5/files/vpnserver.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/softethervpn5/files/vpnserver.init -------------------------------------------------------------------------------- /relevance/udp2raw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/udp2raw/Makefile -------------------------------------------------------------------------------- /relevance/unishare/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/unishare/Makefile -------------------------------------------------------------------------------- /relevance/unishare/files/unishare.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/unishare/files/unishare.config -------------------------------------------------------------------------------- /relevance/unishare/files/unishare.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/unishare/files/unishare.init -------------------------------------------------------------------------------- /relevance/upx-static/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/upx-static/Makefile -------------------------------------------------------------------------------- /relevance/v2dat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/v2dat/Makefile -------------------------------------------------------------------------------- /relevance/v2dat/patches/100-format-logtime.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/v2dat/patches/100-format-logtime.patch -------------------------------------------------------------------------------- /relevance/v2ray-geodata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/v2ray-geodata/Makefile -------------------------------------------------------------------------------- /relevance/vlmcsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/vlmcsd/Makefile -------------------------------------------------------------------------------- /relevance/vlmcsd/files/vlmcsd.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/vlmcsd/files/vlmcsd.ini -------------------------------------------------------------------------------- /relevance/vlmcsd/files/vlmcsd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/vlmcsd/files/vlmcsd.init -------------------------------------------------------------------------------- /relevance/vlmcsd/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/vlmcsd/src/Makefile -------------------------------------------------------------------------------- /relevance/webd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/webd/Makefile -------------------------------------------------------------------------------- /relevance/webdav2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/webdav2/Makefile -------------------------------------------------------------------------------- /relevance/webdav2/files/webdav2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/webdav2/files/webdav2.config -------------------------------------------------------------------------------- /relevance/webdav2/files/webdav2.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shidahuilang/openwrt-package/HEAD/relevance/webdav2/files/webdav2.init --------------------------------------------------------------------------------