├── LICENSE ├── README.md ├── UnblockNeteaseMusic └── Makefile ├── adguardhome ├── Makefile └── files │ ├── adguardhome.config │ └── adguardhome.init ├── alist ├── Makefile ├── files │ └── assets │ │ └── logo.svg └── patches │ └── 001-disable-delete-of-temp-directory-at-startup.patch ├── aliyundrive-fuse ├── Makefile └── files │ ├── aliyundrive-fuse.config │ └── aliyundrive-fuse.init ├── aliyundrive-webdav ├── Makefile └── files │ ├── aliyundrive-webdav.config │ └── aliyundrive-webdav.init ├── app-store-ui ├── Makefile └── src │ └── dist │ ├── index.html │ └── luci-static │ └── istore │ ├── i18n │ ├── en.json │ └── zh-cn.json │ ├── index.js │ ├── style.css │ └── vendor.js ├── ddns-go ├── Makefile └── file │ ├── ddns-go.init │ └── luci-ddns-go.uci-default ├── ddnsto ├── Makefile └── files │ ├── ddnsto-monitor.sh │ ├── ddnsto.config │ ├── ddnsto.init │ └── ddnsto.uci-default ├── gost ├── Makefile └── files │ ├── gost.config │ └── gost.init ├── gowebdav ├── Makefile └── files │ ├── gowebdav.config │ └── gowebdav.init ├── helloworld ├── chinadns-ng │ └── Makefile ├── dns2socks │ └── Makefile ├── dns2tcp │ └── Makefile ├── gn │ ├── Makefile │ ├── patches │ │ └── 010-gcc.patch │ └── src │ │ └── out │ │ └── last_commit_position.h ├── hysteria │ └── Makefile ├── ipt2socks │ └── Makefile ├── lua-neturl │ ├── Makefile │ └── patches │ │ └── 010-userinfo-regex.patch ├── microsocks │ └── Makefile ├── mosdns │ └── Makefile ├── naiveproxy │ ├── Makefile │ ├── patches │ │ └── 100-macros.patch │ └── src │ │ └── init_env.sh ├── redsocks2 │ └── Makefile ├── shadow-tls │ └── Makefile ├── shadowsocks-rust │ └── Makefile ├── shadowsocksr-libev │ ├── Makefile │ ├── patches │ │ ├── 0001-Add-ss-server-and-ss-check.patch │ │ ├── 0002-Revert-verify_simple-and-auth_simple.patch │ │ ├── 0003-Refine-Usage.patch │ │ ├── 100-fix-gcc-10.patch │ │ ├── 101-Fix-Werror-sizeof-pointer-memaccess.patch │ │ ├── 102-Read-listening-mode-from-config.patch │ │ └── 103-Add-TPROXY-support-for-TCP-ssr-redir.patch │ └── src │ │ └── server │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── acl.c │ │ ├── acl.h │ │ ├── auth.c │ │ ├── auth.h │ │ ├── base64.c │ │ ├── base64.h │ │ ├── cache.c │ │ ├── cache.h │ │ ├── check.c │ │ ├── common.h │ │ ├── crc32.c │ │ ├── encrypt.c │ │ ├── encrypt.h │ │ ├── http.c │ │ ├── http.h │ │ ├── http_simple.c │ │ ├── http_simple.h │ │ ├── jconf.c │ │ ├── jconf.h │ │ ├── json.c │ │ ├── json.h │ │ ├── list.c │ │ ├── list.h │ │ ├── netutils.c │ │ ├── netutils.h │ │ ├── obfs.c │ │ ├── obfs.h │ │ ├── obfsutil.c │ │ ├── protocol.h │ │ ├── resolv.c │ │ ├── resolv.h │ │ ├── rule.c │ │ ├── rule.h │ │ ├── server.c │ │ ├── server.h │ │ ├── tls.c │ │ ├── tls.h │ │ ├── tls1.2_ticket.c │ │ ├── tls1.2_ticket.h │ │ ├── udprelay.c │ │ ├── udprelay.h │ │ ├── uthash.h │ │ ├── utils.c │ │ ├── utils.h │ │ ├── verify.c │ │ └── verify.h ├── simple-obfs │ └── Makefile ├── tcping │ └── Makefile ├── trojan │ └── Makefile ├── tuic-client │ └── Makefile ├── v2ray-core │ └── Makefile ├── v2ray-plugin │ └── Makefile ├── v2raya │ ├── Makefile │ ├── files │ │ ├── v2raya.config │ │ └── v2raya.init │ └── patches │ │ ├── 013-fix-we-should-skip-interface-ppp-to-avoid-to-break-net.patch │ │ ├── 014-fix-seed-cannot-be-read-from-vless-sharing-link-and-add-m.patch │ │ ├── 015-fix-a-problem-that-supervisor-cannot-exit-normally.patch │ │ ├── 016-fix-unexpected-exit-does-not-apply-stop-steps.patch │ │ ├── 017-optimize-reduce-disk-writes.patch │ │ ├── 018-fix-do-not-rollback-closed-transaction.patch │ │ └── 100-compat-v5.patch ├── xray-core │ └── Makefile └── xray-plugin │ └── Makefile ├── homebox └── Makefile ├── iptvhelper ├── Makefile └── files │ ├── etc │ ├── config │ │ └── iptvhelper │ ├── firewall.iptvhelper │ └── init.d │ │ └── iptvhelper │ └── usr │ └── sbin │ └── iptvhelper.sh ├── linkease ├── Makefile └── files │ ├── aria2.sh │ ├── linkease-config.sh │ ├── linkease.config │ ├── linkease.init │ └── linkease.uci-default ├── lua-maxminddb └── Makefile ├── 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 │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── AdGuardHome │ ├── 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-advanced ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── fileassistant │ │ ├── fb.css │ │ ├── fb.js │ │ ├── file-icon.png │ │ ├── folder-icon.png │ │ └── link-icon.png ├── luasrc │ ├── controller │ │ ├── advanced.lua │ │ └── fileassistant.lua │ ├── model │ │ └── cbi │ │ │ └── advanced.lua │ └── view │ │ ├── fileassistant.htm │ │ └── filebrowser.htm └── root │ ├── bin │ ├── ipmode4 │ ├── ipmode6 │ ├── normalmode │ └── nuc │ ├── etc │ ├── config │ │ └── advanced │ └── uci-defaults │ │ └── 40_luci-fb │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-advanced.json ├── luci-app-aliddns ├── Makefile ├── files │ ├── luci │ │ ├── controller │ │ │ └── aliddns.lua │ │ ├── i18n │ │ │ └── aliddns.zh-cn.po │ │ └── model │ │ │ └── cbi │ │ │ └── aliddns.lua │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── aliddns │ │ ├── init.d │ │ │ └── aliddns │ │ └── uci-defaults │ │ │ └── luci-aliddns │ │ └── usr │ │ └── sbin │ │ └── aliddns └── tools │ └── po2lmo │ ├── Makefile │ └── src │ ├── po2lmo.c │ ├── template_lmo.c │ └── template_lmo.h ├── 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 │ └── zh_Hans └── root │ ├── etc │ ├── alist │ │ └── data.db │ ├── config │ │ └── alist │ ├── init.d │ │ └── alist │ └── uci-defaults │ │ └── luci-alist │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-alist.json ├── luci-app-aliyundrive-fuse ├── Makefile ├── luasrc │ ├── controller │ │ └── aliyundrive-fuse.lua │ ├── model │ │ └── cbi │ │ │ └── aliyundrive-fuse │ │ │ ├── client.lua │ │ │ └── log.lua │ └── view │ │ └── aliyundrive-fuse │ │ ├── aliyundrive-fuse_log.htm │ │ └── aliyundrive-fuse_status.htm ├── po │ ├── zh-cn │ │ └── aliyundrive-fuse.po │ └── zh_Hans └── root │ ├── etc │ └── uci-defaults │ │ └── luci-aliyundrive-fuse │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-aliyundrive-fuse.json ├── luci-app-aliyundrive-webdav ├── Makefile ├── luasrc │ ├── controller │ │ └── aliyundrive-webdav.lua │ ├── model │ │ └── cbi │ │ │ └── aliyundrive-webdav │ │ │ ├── client.lua │ │ │ └── log.lua │ └── view │ │ └── aliyundrive-webdav │ │ ├── aliyundrive-webdav_log.htm │ │ ├── aliyundrive-webdav_qrcode.htm │ │ └── aliyundrive-webdav_status.htm ├── po │ ├── zh-cn │ │ └── aliyundrive-webdav.po │ └── zh_Hans └── root │ ├── etc │ └── uci-defaults │ │ └── luci-aliyundrive-webdav │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-aliyundrive-webdav.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_snapshot.htm │ │ ├── other_upfiles.htm │ │ └── other_upload.htm ├── po │ ├── zh-cn │ │ └── amlogic.po │ └── zh_Hans └── 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-argon-config ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── argon-config.js ├── po │ ├── es │ │ └── argon-config.po │ ├── templates │ │ └── argon-config.pot │ ├── zh-cn │ ├── zh_Hans │ │ └── argon-config.po │ └── zh_Hant │ │ └── argon-config.po └── root │ ├── etc │ ├── config │ │ └── argon │ └── uci-defaults │ │ └── luci-argon-config │ └── usr │ ├── libexec │ └── rpcd │ │ └── luci.argon │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-argon-config.json │ └── rpcd │ └── acl.d │ └── luci-app-argon-config.json ├── luci-app-autorepeater ├── .directory ├── Makefile ├── files │ ├── 95-upnpc │ ├── autorepeater.config │ ├── autorepeater.init │ ├── autorepeater_functions.sh │ ├── autorepeater_updater.sh │ ├── luci-app-autorepeater.json │ ├── luci │ │ ├── controller │ │ │ └── autorepeater.lua │ │ ├── i18n │ │ │ └── autorepeater.zh-cn.po │ │ ├── model │ │ │ └── cbi │ │ │ │ └── autorepeater │ │ │ │ ├── autorepeater.lua │ │ │ │ ├── global.lua │ │ │ │ ├── hints.lua │ │ │ │ ├── logview.lua │ │ │ │ ├── overview.lua │ │ │ │ ├── pnpmaps.lua │ │ │ │ └── stations.lua │ │ ├── tools │ │ │ └── autorepeater.lua │ │ └── view │ │ │ └── autorepeater │ │ │ ├── detail_lvalue.htm │ │ │ ├── detail_value.htm │ │ │ ├── dynamiclist.htm │ │ │ ├── global_buttons.htm │ │ │ ├── global_link.htm │ │ │ ├── global_value.htm │ │ │ ├── logsview.htm │ │ │ ├── overview_doubleline.htm │ │ │ ├── overview_enabled.htm │ │ │ ├── overview_updater.htm │ │ │ ├── wifi_dev.htm │ │ │ └── wifi_overview.htm │ ├── rfkill.sh │ ├── root │ │ └── etc │ │ │ └── uci-defaults │ │ │ └── luci-autorepeater │ ├── scan_mac80211.awk │ └── scan_wifi.sh └── tools │ ├── lmotool │ ├── Makefile │ └── src │ │ ├── lmotool │ │ ├── lmotool.c │ │ ├── template_lmo.c │ │ └── template_lmo.h │ └── po2lmo │ ├── Makefile │ └── src │ ├── po2lmo.c │ ├── template_lmo.c │ └── template_lmo.h ├── luci-app-bypass ├── Makefile ├── luasrc │ ├── controller │ │ └── bypass.lua │ ├── model │ │ └── cbi │ │ │ └── bypass │ │ │ ├── advanced.lua │ │ │ ├── api.lua │ │ │ ├── app_update.lua │ │ │ ├── base.lua │ │ │ ├── client-config.lua │ │ │ ├── control.lua │ │ │ ├── kcptun.lua │ │ │ ├── log.lua │ │ │ ├── server-config.lua │ │ │ ├── server.lua │ │ │ ├── servers.lua │ │ │ └── xray.lua │ └── view │ │ └── bypass │ │ ├── certupload.htm │ │ ├── check.htm │ │ ├── checkport.htm │ │ ├── kcptun_version.htm │ │ ├── ping.htm │ │ ├── server_list.htm │ │ ├── socket.htm │ │ ├── ssrurl.htm │ │ ├── status.htm │ │ ├── status_bottom.htm │ │ ├── subscribe.htm │ │ └── xray_version.htm ├── po │ ├── zh-cn │ │ └── bypass.po │ └── zh_Hans └── root │ ├── etc │ ├── bypass │ │ ├── black.list │ │ ├── netflix.list │ │ ├── oversea.list │ │ ├── telegram.list │ │ └── white.list │ ├── config │ │ └── bypass │ ├── hotplug.d │ │ └── iface │ │ │ └── 21-bypass │ ├── init.d │ │ └── bypass │ └── uci-defaults │ │ └── luci-bypass │ ├── usr │ └── share │ │ ├── bypass │ │ ├── GeoLite2-Country.mmdb │ │ ├── by-check │ │ ├── by-gfw │ │ ├── by-monitor │ │ ├── by-preload │ │ ├── by-rules │ │ ├── by-switch │ │ ├── checknetwork │ │ ├── chinaipset │ │ ├── gen_config │ │ ├── genred2config │ │ ├── subscribe │ │ └── update │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-bypass.json │ └── www │ └── luci-static │ └── bypass │ ├── flags │ ├── ad.svg │ ├── ae.svg │ ├── af.svg │ ├── ag.svg │ ├── ai.svg │ ├── al.svg │ ├── am.svg │ ├── ao.svg │ ├── ar.svg │ ├── as.svg │ ├── at.svg │ ├── au.svg │ ├── aw.svg │ ├── ax.svg │ ├── az.svg │ ├── ba.svg │ ├── bb.svg │ ├── bd.svg │ ├── be.svg │ ├── bf.svg │ ├── bg.svg │ ├── bh.svg │ ├── bi.svg │ ├── bj.svg │ ├── bl.svg │ ├── bm.svg │ ├── bn.svg │ ├── bo.svg │ ├── bq.svg │ ├── br.svg │ ├── bs.svg │ ├── bt.svg │ ├── bv.svg │ ├── bw.svg │ ├── by.svg │ ├── bz.svg │ ├── ca.svg │ ├── cc.svg │ ├── cd.svg │ ├── cf.svg │ ├── cg.svg │ ├── ch.svg │ ├── ci.svg │ ├── ck.svg │ ├── cl.svg │ ├── cm.svg │ ├── cn.svg │ ├── co.svg │ ├── cr.svg │ ├── cu.svg │ ├── cv.svg │ ├── cw.svg │ ├── cx.svg │ ├── cy.svg │ ├── cz.svg │ ├── de.svg │ ├── dj.svg │ ├── dk.svg │ ├── dm.svg │ ├── do.svg │ ├── dz.svg │ ├── ec.svg │ ├── ee.svg │ ├── eg.svg │ ├── eh.svg │ ├── er.svg │ ├── es-ca.svg │ ├── es.svg │ ├── et.svg │ ├── eu.svg │ ├── fi.svg │ ├── fj.svg │ ├── fk.svg │ ├── fm.svg │ ├── fo.svg │ ├── fr.svg │ ├── ga.svg │ ├── gb-eng.svg │ ├── gb-sct.svg │ ├── gb.svg │ ├── gd.svg │ ├── ge.svg │ ├── gf.svg │ ├── gg.svg │ ├── gh.svg │ ├── gi.svg │ ├── gl.svg │ ├── gm.svg │ ├── gn.svg │ ├── gp.svg │ ├── gq.svg │ ├── gr.svg │ ├── gt.svg │ ├── gu.svg │ ├── gw.svg │ ├── gy.svg │ ├── hk.svg │ ├── hm.svg │ ├── hn.svg │ ├── hr.svg │ ├── ht.svg │ ├── hu.svg │ ├── id.svg │ ├── ie.svg │ ├── il.svg │ ├── im.svg │ ├── in.svg │ ├── io.svg │ ├── iq.svg │ ├── ir.svg │ ├── is.svg │ ├── it.svg │ ├── je.svg │ ├── jm.svg │ ├── jo.svg │ ├── jp.svg │ ├── ke.svg │ ├── kg.svg │ ├── kh.svg │ ├── ki.svg │ ├── km.svg │ ├── kn.svg │ ├── kp.svg │ ├── kr.svg │ ├── kw.svg │ ├── ky.svg │ ├── kz.svg │ ├── la.svg │ ├── lb.svg │ ├── lc.svg │ ├── li.svg │ ├── lk.svg │ ├── loading.svg │ ├── lr.svg │ ├── ls.svg │ ├── lt.svg │ ├── lu.svg │ ├── lv.svg │ ├── ly.svg │ ├── ma.svg │ ├── mc.svg │ ├── md.svg │ ├── me.svg │ ├── mf.svg │ ├── mg.svg │ ├── mh.svg │ ├── mk.svg │ ├── ml.svg │ ├── mm.svg │ ├── mn.svg │ ├── mo.svg │ ├── mp.svg │ ├── mq.svg │ ├── mr.svg │ ├── ms.svg │ ├── mt.svg │ ├── mu.svg │ ├── mv.svg │ ├── mw.svg │ ├── mx.svg │ ├── my.svg │ ├── mz.svg │ ├── na.svg │ ├── nc.svg │ ├── ne.svg │ ├── nf.svg │ ├── ng.svg │ ├── ni.svg │ ├── nl.svg │ ├── no.svg │ ├── np.svg │ ├── nr.svg │ ├── nu.svg │ ├── nz.svg │ ├── om.svg │ ├── pa.svg │ ├── pe.svg │ ├── pf.svg │ ├── pg.svg │ ├── ph.svg │ ├── pk.svg │ ├── pl.svg │ ├── pm.svg │ ├── pn.svg │ ├── pr.svg │ ├── ps.svg │ ├── pt.svg │ ├── pw.svg │ ├── py.svg │ ├── qa.svg │ ├── re.svg │ ├── ro.svg │ ├── rs.svg │ ├── ru.svg │ ├── rw.svg │ ├── sa.svg │ ├── sb.svg │ ├── sc.svg │ ├── sd.svg │ ├── se.svg │ ├── sg.svg │ ├── si.svg │ ├── sj.svg │ ├── sk.svg │ ├── sl.svg │ ├── sm.svg │ ├── sn.svg │ ├── so.svg │ ├── sr.svg │ ├── ss.svg │ ├── st.svg │ ├── sv.svg │ ├── sy.svg │ ├── sz.svg │ ├── tc.svg │ ├── td.svg │ ├── tf.svg │ ├── tg.svg │ ├── th.svg │ ├── tj.svg │ ├── tk.svg │ ├── tl.svg │ ├── tm.svg │ ├── tn.svg │ ├── to.svg │ ├── tr.svg │ ├── tt.svg │ ├── tv.svg │ ├── tw.svg │ ├── tz.svg │ ├── ua.svg │ ├── ug.svg │ ├── us.svg │ ├── uy.svg │ ├── uz.svg │ ├── va.svg │ ├── vc.svg │ ├── ve.svg │ ├── vg.svg │ ├── vi.svg │ ├── vn.svg │ ├── vu.svg │ ├── wf.svg │ ├── ws.svg │ ├── ye.svg │ ├── yt.svg │ ├── za.svg │ ├── zm.svg │ └── zw.svg │ └── img │ ├── site_icon1_01.png │ ├── site_icon1_02.png │ ├── site_icon1_03.png │ ├── site_icon1_04.png │ ├── site_icon_01.png │ ├── site_icon_02.png │ ├── site_icon_03.png │ └── site_icon_04.png ├── 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 │ └── zh_Hans ├── 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 │ │ │ ├── CNAME │ │ │ ├── assets │ │ │ │ ├── index.65038aa0.js │ │ │ │ ├── index.c7a648b5.css │ │ │ │ ├── logo.b453e72f.png │ │ │ │ └── vendor.ca041cc5.js │ │ │ ├── index.html │ │ │ ├── manifest.webmanifest │ │ │ ├── sw.js │ │ │ └── workbox-0c0655d9.js │ │ ├── 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 │ │ │ ├── CNAME │ │ │ ├── _headers │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ ├── assets │ │ │ │ ├── Chart.min.54d214d7.js │ │ │ │ ├── Config.c65424c9.css │ │ │ │ ├── Config.c7872d50.js │ │ │ │ ├── Connections.2596eb6e.js │ │ │ │ ├── Connections.8f8baf6a.css │ │ │ │ ├── Fab.84de8b7d.js │ │ │ │ ├── Fab.f9b7bbae.css │ │ │ │ ├── Logs.0237afce.js │ │ │ │ ├── Logs.c5339eb0.css │ │ │ │ ├── Proxies.dba0af8d.js │ │ │ │ ├── Proxies.f906f5da.css │ │ │ │ ├── Rules.6cf13f46.css │ │ │ │ ├── Rules.90b13e00.js │ │ │ │ ├── Select.34bef176.css │ │ │ │ ├── Select.eb6a5624.js │ │ │ │ ├── TextFitler.6ef2850b.js │ │ │ │ ├── TextFitler.f3ad599c.css │ │ │ │ ├── debounce.cc85a806.js │ │ │ │ ├── en.41adc249.js │ │ │ │ ├── index.0706e044.js │ │ │ │ ├── index.esm.54899aec.js │ │ │ │ ├── index.f4bcc580.css │ │ │ │ ├── index.fbdc8494.js │ │ │ │ ├── logs.c73f6324.js │ │ │ │ ├── open-sans-latin-400-normal.a42f2ec7.woff2 │ │ │ │ ├── open-sans-latin-400-normal.c7118061.woff │ │ │ │ ├── open-sans-latin-700-normal.463da448.woff │ │ │ │ ├── open-sans-latin-700-normal.c7357554.woff2 │ │ │ │ ├── roboto-mono-latin-400-normal.2dfc0e86.woff │ │ │ │ ├── roboto-mono-latin-400-normal.e1fd013a.woff2 │ │ │ │ ├── useRemainingViewPortHeight.c4100a43.js │ │ │ │ ├── vendor.55942996.js │ │ │ │ └── zh.d85002f6.js │ │ │ ├── index.html │ │ │ ├── manifest.webmanifest │ │ │ ├── registerSW.js │ │ │ ├── sw.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-cpulimit ├── Makefile ├── luasrc │ ├── controller │ │ └── cpulimit.lua │ └── model │ │ └── cbi │ │ └── cpulimit.lua ├── po │ ├── zh-cn │ │ └── cpulimit.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── cpulimit │ ├── init.d │ │ └── cpulimit │ └── uci-defaults │ │ └── luci-cpulimit │ └── usr │ ├── bin │ └── cpulimit.sh │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-cpulimit.json ├── luci-app-ddns-go ├── Makefile ├── luasrc │ ├── controller │ │ └── ddns-go.lua │ ├── model │ │ └── cbi │ │ │ └── ddns-go.lua │ └── view │ │ ├── ddns-go.htm │ │ └── ddns-go_status.htm ├── po │ ├── zh-cn │ │ └── ddns-go.po │ └── zh_Hans │ │ └── ddns-go.po └── root │ ├── etc │ ├── config │ │ └── ddns-go │ └── ddns-go │ │ ├── ddns-go-config.yaml │ │ └── localtime │ └── usr │ └── share │ ├── ddns-go │ └── ddns-go-default.yaml │ └── rpcd │ └── acl.d │ └── luci-app-ddns-go.json ├── luci-app-ddnsto ├── Makefile ├── luasrc │ ├── controller │ │ └── ddnsto.lua │ ├── model │ │ └── cbi │ │ │ └── ddnsto.lua │ └── view │ │ └── ddnsto │ │ └── main.htm ├── po │ ├── zh-cn │ │ └── ddnsto.po │ └── zh_Hans └── root │ ├── etc │ └── uci-defaults │ │ └── 50_luci-ddnsto │ └── www │ └── luci-static │ └── ddnsto │ ├── index.js │ └── style.css ├── luci-app-dnsfilter ├── Makefile ├── luasrc │ ├── controller │ │ └── dnsfilter.lua │ ├── model │ │ └── cbi │ │ │ └── dnsfilter │ │ │ ├── base.lua │ │ │ ├── black.lua │ │ │ ├── ip.lua │ │ │ ├── log.lua │ │ │ └── white.lua │ └── view │ │ └── dnsfilter │ │ ├── dnsfilter_refresh.htm │ │ └── dnsfilter_status.htm ├── po │ ├── zh-cn │ │ └── dnsfilter.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── dnsfilter │ ├── dnsfilter │ │ ├── black.list │ │ ├── ip.list │ │ └── white.list │ ├── init.d │ │ └── dnsfilter │ └── uci-defaults │ │ └── luci-dnsfilter │ └── usr │ └── share │ ├── dnsfilter │ ├── addown │ └── dnsfilter │ └── rpcd │ └── acl.d │ └── luci-app-dnsfilter.json ├── luci-app-dockerman ├── Makefile ├── depends.lst ├── htdocs │ └── luci-static │ │ └── resources │ │ └── dockerman │ │ ├── containers.svg │ │ ├── file-icon.png │ │ ├── file-manager.css │ │ ├── folder-icon.png │ │ ├── images.svg │ │ ├── link-icon.png │ │ ├── networks.svg │ │ ├── tar.min.js │ │ └── volumes.svg ├── luasrc │ ├── controller │ │ └── dockerman.lua │ ├── model │ │ ├── cbi │ │ │ └── dockerman │ │ │ │ ├── configuration.lua │ │ │ │ ├── container.lua │ │ │ │ ├── containers.lua │ │ │ │ ├── images.lua │ │ │ │ ├── networks.lua │ │ │ │ ├── newcontainer.lua │ │ │ │ ├── newnetwork.lua │ │ │ │ ├── overview.lua │ │ │ │ └── volumes.lua │ │ └── docker.lua │ └── view │ │ └── dockerman │ │ ├── apply_widget.htm │ │ ├── cbi │ │ ├── inlinebutton.htm │ │ ├── inlinevalue.htm │ │ ├── namedsection.htm │ │ └── xfvalue.htm │ │ ├── container.htm │ │ ├── container_console.htm │ │ ├── container_file_manager.htm │ │ ├── container_stats.htm │ │ ├── containers_running_stats.htm │ │ ├── images_import.htm │ │ ├── images_load.htm │ │ ├── logs.htm │ │ ├── newcontainer_resolve.htm │ │ ├── overview.htm │ │ └── volume_size.htm ├── po │ ├── templates │ │ └── dockerman.pot │ ├── zh-cn │ │ └── dockerman.po │ └── zh_Hans ├── postinst └── root │ ├── etc │ ├── init.d │ │ └── dockerman │ └── uci-defaults │ │ └── luci-app-dockerman │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-dockerman.json ├── luci-app-easymesh ├── Makefile ├── luasrc │ ├── controller │ │ └── easymesh.lua │ └── model │ │ └── cbi │ │ └── easymesh.lua ├── po │ ├── zh-cn │ │ └── easymesh.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── easymesh │ ├── init.d │ │ └── easymesh │ └── uci-defaults │ │ └── luci-easymesh │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-easymesh.json ├── luci-app-eqos ├── Makefile ├── luasrc │ ├── controller │ │ └── eqos.lua │ └── model │ │ └── cbi │ │ └── eqos.lua ├── po │ ├── zh-cn │ │ └── eqos.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── eqos │ ├── hotplug.d │ │ └── iface │ │ │ └── 10-eqos │ ├── init.d │ │ └── eqos │ └── uci-defaults │ │ └── luci-eqos │ └── usr │ ├── sbin │ └── eqos │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-eqos.json ├── luci-app-eqosplus ├── Makefile ├── luasrc │ ├── controller │ │ └── eqosplus.lua │ ├── model │ │ └── cbi │ │ │ └── eqosplus.lua │ └── view │ │ └── eqosplus │ │ ├── eqosplus.htm │ │ └── index.htm ├── po │ ├── zh-cn │ │ └── eqosplus.po │ └── zh_Hans ├── root │ ├── etc │ │ ├── config │ │ │ └── eqosplus │ │ ├── init.d │ │ │ └── eqosplus │ │ └── uci-defaults │ │ │ └── luci-eqosplus │ └── usr │ │ ├── bin │ │ └── eqosplus │ │ ├── sbin │ │ └── eqosplusctrl │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-eqosplus.json └── 界面.png ├── 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 │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── filebrowser │ ├── init.d │ │ └── filebrowser │ └── uci-defaults │ │ └── luci-app-filebrowser │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-filebrowser.json ├── luci-app-gost ├── Makefile ├── luasrc │ ├── controller │ │ └── gost.lua │ ├── model │ │ └── cbi │ │ │ └── gost.lua │ └── view │ │ └── gost │ │ └── gost_status.htm ├── po │ ├── zh-cn │ │ └── gost.po │ └── zh_Hans └── root │ └── etc │ └── uci-defaults │ └── gost ├── luci-app-gowebdav ├── Makefile ├── luasrc │ ├── controller │ │ └── gowebdav.lua │ ├── model │ │ └── cbi │ │ │ └── gowebdav.lua │ └── view │ │ └── gowebdav │ │ └── gowebdav_status.htm ├── po │ ├── zh-cn │ │ └── gowebdav.po │ └── zh_Hans │ │ └── gowebdav.po └── root │ ├── etc │ └── uci-defaults │ │ └── gowebdav │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-gowebdav.json ├── luci-app-homebox ├── Makefile ├── luasrc │ ├── controller │ │ └── homebox.lua │ ├── model │ │ └── cbi │ │ │ └── homebox.lua │ └── view │ │ ├── admin_status │ │ └── index │ │ │ └── homebox.htm │ │ └── homebox_status.htm ├── po │ ├── zh-cn │ │ └── homebox.po │ └── zh_Hans └── root │ └── etc │ └── uci-defaults │ └── 50_luci-homebox ├── 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 ├── luci-app-iptvhelper ├── Makefile ├── luasrc │ ├── controller │ │ └── iptvhelper.lua │ └── model │ │ └── cbi │ │ └── iptvhelper.lua ├── po │ ├── templates │ │ └── iptvhelper.pot │ ├── zh-cn │ │ └── iptvhelper.po │ └── zh_Hans └── root │ └── etc │ └── uci-defaults │ └── 40_iptvhelper ├── luci-app-istorex ├── Makefile ├── htdocs │ └── luci-static │ │ └── istorex │ │ ├── bg.jpg │ │ ├── chunk.0e1b8751.js │ │ ├── chunk.16bb279d.js │ │ ├── chunk.23994218.js │ │ ├── chunk.284102ec.js │ │ ├── chunk.2fe49ad9.js │ │ ├── chunk.3571f5f7.js │ │ ├── chunk.3b0445dc.js │ │ ├── chunk.449d9094.js │ │ ├── chunk.4861788e.js │ │ ├── chunk.55f665b5.js │ │ ├── chunk.5dcd6c16.js │ │ ├── chunk.61921636.js │ │ ├── chunk.63b34a57.js │ │ ├── chunk.664161d9.js │ │ ├── chunk.67f41c8f.js │ │ ├── chunk.6d3585bb.js │ │ ├── chunk.7ec62e0d.js │ │ ├── chunk.82abb9ea.js │ │ ├── chunk.96a06bc8.js │ │ ├── chunk.9d00ca13.js │ │ ├── chunk.b72df2dc.js │ │ ├── chunk.dd870398.js │ │ ├── chunk.e59c59f8.js │ │ ├── chunk.e99c80f3.js │ │ ├── chunk.ee71e34a.js │ │ ├── chunk.f2c20819.js │ │ ├── chunk.f6200ba0.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 │ └── rpcd │ └── acl.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 │ └── zh_Hans └── root │ └── etc │ └── uci-defaults │ └── 50_luci-linkease ├── luci-app-mentohust ├── Makefile └── files │ ├── luci │ ├── controller │ │ └── mentohust.lua │ ├── i18n │ │ └── mentohust.zh-cn.po │ └── model │ │ └── cbi │ │ └── mentohust │ │ ├── general.lua │ │ └── log.lua │ └── root │ └── etc │ ├── config │ └── mentohust │ └── init.d │ └── mentohust ├── luci-app-mosdns ├── Makefile ├── luasrc │ ├── controller │ │ └── mosdns.lua │ ├── model │ │ └── cbi │ │ │ └── mosdns │ │ │ ├── basic.lua │ │ │ ├── log.lua │ │ │ ├── rule_list.lua │ │ │ └── update.lua │ └── view │ │ └── mosdns │ │ ├── mosdns_editor.htm │ │ ├── mosdns_flush_cache.htm │ │ ├── mosdns_geo_update.htm │ │ ├── mosdns_log.htm │ │ └── mosdns_status.htm ├── po │ ├── zh-cn │ │ └── mosdns.po │ └── zh_Hans └── 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 │ │ │ └── whitelist.txt │ └── uci-defaults │ │ └── luci-mosdns │ ├── usr │ └── share │ │ ├── mosdns │ │ ├── cache.dump │ │ ├── default.yaml │ │ └── mosdns.sh │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-mosdns.json │ └── www │ └── luci-static │ └── resources │ └── mosdns │ ├── addon │ └── fold │ │ ├── foldcode.js │ │ ├── foldgutter.css │ │ ├── foldgutter.js │ │ └── indent-fold.js │ ├── lib │ ├── codemirror.css │ └── codemirror.js │ ├── mode │ └── yaml │ │ └── yaml.js │ └── theme │ └── dracula.css ├── 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 │ └── zh_Hans └── root │ └── etc │ └── uci-defaults │ └── 40_luci-msd_lite ├── luci-app-netdata ├── Makefile ├── luasrc │ ├── controller │ │ └── netdata.lua │ ├── model │ │ └── cgi │ │ │ └── netdate.lua │ └── view │ │ └── netdata │ │ └── netdata.htm ├── po │ ├── zh-cn │ │ └── netdata.po │ └── zh_Hans ├── root │ ├── etc │ │ ├── netdata │ │ │ ├── apps_groups.conf │ │ │ ├── ebpf.conf │ │ │ ├── exporting.conf │ │ │ ├── netdata.conf │ │ │ └── stream.conf │ │ └── uci-defaults │ │ │ └── 40_luci-app-netdata │ └── usr │ │ └── share │ │ ├── netdata │ │ └── webcn │ │ │ ├── dashboard.js │ │ │ ├── dashboard_info.js │ │ │ ├── index.html │ │ │ └── main.js │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-netdata.json └── web │ ├── dashboard.js │ ├── dashboard_info.js │ ├── index.html │ └── main.js ├── luci-app-netspeedtest ├── Makefile ├── luasrc │ ├── controller │ │ └── netspeedtest.lua │ ├── model │ │ └── cbi │ │ │ └── netspeedtest │ │ │ ├── homebox.lua │ │ │ ├── netperftestwan.lua │ │ │ ├── speedtestiperf3.lua │ │ │ └── speedtestwan.lua │ └── view │ │ └── netspeedtest │ │ ├── homebox.htm │ │ ├── homebox_status.htm │ │ ├── log.htm │ │ ├── netperftestwan.htm │ │ ├── speedtestiperf3.htm │ │ ├── speedtestiperf3_status.htm │ │ ├── speedtestport.htm │ │ └── speedtestwan.htm ├── po │ ├── zh-cn │ │ └── netspeedtest.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── netspeedtest │ ├── init.d │ │ └── netspeedtest │ └── uci-defaults │ │ └── 40_luci-app-netspeedtest │ └── usr │ ├── bin │ ├── netperftest │ └── speedtest │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-netspeedtest.json ├── luci-app-netwizard ├── Makefile ├── luasrc │ ├── controller │ │ └── netwizard.lua │ └── model │ │ └── cbi │ │ └── netwizard │ │ └── netwizard.lua ├── po │ ├── zh-cn │ │ └── netwizard.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── netwizard │ ├── init.d │ │ └── netwizard │ └── uci-defaults │ │ ├── luci-netwizard │ │ └── luci-netwizard-defaults │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-netwizard.json ├── luci-app-oaf ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── echarts.min.js ├── luasrc │ ├── controller │ │ └── appfilter.lua │ ├── model │ │ └── cbi │ │ │ └── appfilter │ │ │ ├── base_setting.lua │ │ │ ├── dev_status.lua │ │ │ ├── feature.lua │ │ │ ├── time_setting.lua │ │ │ ├── user_list.lua │ │ │ └── user_setting.lua │ └── view │ │ ├── admin_network │ │ ├── dev_status.htm │ │ └── user_status.htm │ │ └── cbi │ │ ├── oaf_dvalue.htm │ │ └── oaf_upload.htm ├── po │ ├── zh-cn │ │ └── oaf.po │ └── zh_Hans │ │ └── oaf.po └── root │ └── etc │ └── uci-defaults │ ├── 91_luci-oaf │ ├── 92_oaf_time │ └── 93_feature_2.0 ├── 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 ├── po │ ├── zh-cn │ │ └── onliner.po │ └── zh_Hans └── root │ └── usr │ └── share │ └── onliner │ └── setnlbw.sh ├── luci-app-openclash ├── Makefile ├── luasrc │ ├── controller │ │ └── openclash.lua │ ├── model │ │ └── cbi │ │ │ └── openclash │ │ │ ├── client.lua │ │ │ ├── config-overwrite.lua │ │ │ ├── config-subscribe-edit.lua │ │ │ ├── config-subscribe.lua │ │ │ ├── config.lua │ │ │ ├── custom-dns-edit.lua │ │ │ ├── game-rules-file-manage.lua │ │ │ ├── game-rules-manage.lua │ │ │ ├── groups-config.lua │ │ │ ├── log.lua │ │ │ ├── other-file-edit.lua │ │ │ ├── other-rules-edit.lua │ │ │ ├── proxy-provider-config.lua │ │ │ ├── proxy-provider-file-manage.lua │ │ │ ├── rule-providers-config.lua │ │ │ ├── rule-providers-file-manage.lua │ │ │ ├── rule-providers-manage.lua │ │ │ ├── rule-providers-settings.lua │ │ │ ├── servers-config.lua │ │ │ ├── servers.lua │ │ │ └── settings.lua │ ├── openclash.lua │ └── view │ │ └── openclash │ │ ├── cfg_check.htm │ │ ├── config_editor.htm │ │ ├── debug.htm │ │ ├── developer.htm │ │ ├── dler_login.htm │ │ ├── dlercloud.htm │ │ ├── download_rule.htm │ │ ├── download_stream_domains.htm │ │ ├── dvalue.htm │ │ ├── flush_fakeip_cache.htm │ │ ├── input_file_name.htm │ │ ├── input_rename.htm │ │ ├── log.htm │ │ ├── myip.htm │ │ ├── other_button.htm │ │ ├── other_stream_option.htm │ │ ├── server_url.htm │ │ ├── status.htm │ │ ├── sub_info_show.htm │ │ ├── switch_dashboard.htm │ │ ├── switch_mode.htm │ │ ├── tblsection.htm │ │ ├── tblsection_dns.htm │ │ ├── toolbar_show.htm │ │ ├── update.htm │ │ └── upload.htm ├── po │ ├── zh-cn │ │ └── openclash.zh-cn.po │ └── zh_Hans ├── root │ ├── etc │ │ ├── config │ │ │ └── openclash │ │ ├── init.d │ │ │ └── openclash │ │ ├── openclash │ │ │ ├── Country.mmdb │ │ │ ├── GeoSite.dat │ │ │ ├── accelerated-domains.china.conf │ │ │ ├── china_ip6_route.ipset │ │ │ ├── china_ip_route.ipset │ │ │ ├── custom │ │ │ │ ├── openclash_custom_chnroute6_pass.list │ │ │ │ ├── openclash_custom_chnroute_pass.list │ │ │ │ ├── openclash_custom_domain_dns.list │ │ │ │ ├── openclash_custom_domain_dns_policy.list │ │ │ │ ├── openclash_custom_fake_filter.list │ │ │ │ ├── openclash_custom_fallback_filter.yaml │ │ │ │ ├── openclash_custom_firewall_rules.sh │ │ │ │ ├── openclash_custom_hosts.list │ │ │ │ ├── openclash_custom_localnetwork_ipv4.list │ │ │ │ ├── openclash_custom_localnetwork_ipv6.list │ │ │ │ ├── openclash_custom_netflix_domains.list │ │ │ │ ├── openclash_custom_overwrite.sh │ │ │ │ ├── openclash_custom_rules.list │ │ │ │ ├── openclash_custom_rules_2.list │ │ │ │ ├── openclash_force_sniffing_domain.yaml │ │ │ │ ├── openclash_sniffing_domain_filter.yaml │ │ │ │ └── openclash_sniffing_ports_filter.yaml │ │ │ ├── game_rules │ │ │ │ ├── CS-GO.rules │ │ │ │ ├── Monster-Hunter-World.rules │ │ │ │ └── Steam.rules │ │ │ └── rule_provider │ │ │ │ ├── ABC │ │ │ │ ├── Abema_TV │ │ │ │ ├── Amazon │ │ │ │ ├── Anti_IP │ │ │ │ ├── Apple │ │ │ │ ├── Apple_Music │ │ │ │ ├── Apple_News │ │ │ │ ├── Apple_TV │ │ │ │ ├── BBC_iPlayer │ │ │ │ ├── Bahamut │ │ │ │ ├── Bilibili │ │ │ │ ├── ChatGPT │ │ │ │ ├── China.yaml │ │ │ │ ├── ChinaIP.yaml │ │ │ │ ├── Crypto │ │ │ │ ├── DAZN │ │ │ │ ├── Discord │ │ │ │ ├── Discovery_Plus │ │ │ │ ├── Disney_Plus │ │ │ │ ├── Domestic │ │ │ │ ├── Domestic_IPs │ │ │ │ ├── F1_TV │ │ │ │ ├── FCM │ │ │ │ ├── Fox+ │ │ │ │ ├── Fox_Now │ │ │ │ ├── Global.yaml │ │ │ │ ├── Google FCM │ │ │ │ ├── HBO │ │ │ │ ├── HBO_Go │ │ │ │ ├── HBO_Max │ │ │ │ ├── Hulu │ │ │ │ ├── Hulu_Japan │ │ │ │ ├── IQI │ │ │ │ ├── IQYI │ │ │ │ ├── JOOX │ │ │ │ ├── Japonx │ │ │ │ ├── KKBOX │ │ │ │ ├── KKTV │ │ │ │ ├── LAN │ │ │ │ ├── Letv │ │ │ │ ├── Line_TV │ │ │ │ ├── Microsoft │ │ │ │ ├── Netease_Music │ │ │ │ ├── Netflix │ │ │ │ ├── Niconico │ │ │ │ ├── PBS │ │ │ │ ├── Pandora │ │ │ │ ├── PayPal │ │ │ │ ├── Pornhub │ │ │ │ ├── Proxy │ │ │ │ ├── Reject │ │ │ │ ├── Scholar │ │ │ │ ├── Soundcloud │ │ │ │ ├── Special │ │ │ │ ├── Speedtest │ │ │ │ ├── Spotify │ │ │ │ ├── Steam │ │ │ │ ├── Streaming.yaml │ │ │ │ ├── StreamingCN.yaml │ │ │ │ ├── StreamingSE.yaml │ │ │ │ ├── Telegram │ │ │ │ ├── Tencent_Video │ │ │ │ ├── Unbreak.yaml │ │ │ │ ├── ViuTV │ │ │ │ ├── WeTV │ │ │ │ ├── YouTube │ │ │ │ ├── Youku │ │ │ │ ├── encoreTVB │ │ │ │ ├── iQiyi │ │ │ │ ├── miHoYo │ │ │ │ └── myTV_SUPER │ │ └── uci-defaults │ │ │ └── luci-openclash │ ├── usr │ │ └── share │ │ │ ├── openclash │ │ │ ├── YAML.rb │ │ │ ├── cfg_unused_servers_del.sh │ │ │ ├── clash_version.sh │ │ │ ├── log.sh │ │ │ ├── openclash.sh │ │ │ ├── openclash_chnroute.sh │ │ │ ├── openclash_core.sh │ │ │ ├── openclash_custom_domain_dns.sh │ │ │ ├── openclash_debug.sh │ │ │ ├── openclash_debug_dns.lua │ │ │ ├── openclash_debug_getcon.lua │ │ │ ├── openclash_dler_checkin.lua │ │ │ ├── openclash_download_dashboard.sh │ │ │ ├── openclash_download_rule_list.sh │ │ │ ├── openclash_geoip.sh │ │ │ ├── openclash_geosite.sh │ │ │ ├── openclash_get_network.lua │ │ │ ├── openclash_history_get.sh │ │ │ ├── openclash_ipdb.sh │ │ │ ├── openclash_ps.sh │ │ │ ├── openclash_rule.sh │ │ │ ├── openclash_streaming_unlock.lua │ │ │ ├── openclash_update.sh │ │ │ ├── openclash_urlencode.lua │ │ │ ├── openclash_version.sh │ │ │ ├── openclash_watchdog.sh │ │ │ ├── res │ │ │ │ ├── ConnersHua.yaml │ │ │ │ ├── ConnersHua_return.yaml │ │ │ │ ├── Disney_Plus_Domains.list │ │ │ │ ├── Netflix_Domains.list │ │ │ │ ├── default.yaml │ │ │ │ ├── game_rules.list │ │ │ │ ├── lhie1.yaml │ │ │ │ ├── rule_providers.list │ │ │ │ └── sub_ini.list │ │ │ ├── ruby.sh │ │ │ ├── ui │ │ │ │ ├── dashboard │ │ │ │ │ ├── CNAME │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── index-41a41303.css │ │ │ │ │ │ ├── index-abc6db04.js │ │ │ │ │ │ ├── logo-b453e72f.png │ │ │ │ │ │ └── vendor-0c169955.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.webmanifest │ │ │ │ │ ├── sw.js │ │ │ │ │ └── workbox-4de3aa5f.js │ │ │ │ ├── metacubexd │ │ │ │ │ ├── CNAME │ │ │ │ │ ├── apple-touch-icon-180x180.png │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── Config-FN-Wqjyv.js │ │ │ │ │ │ ├── ConfigTitle-_jKUZ02Y.js │ │ │ │ │ │ ├── Connections-G3NKrw3N.js │ │ │ │ │ │ ├── Logs-2lK8RJqA.js │ │ │ │ │ │ ├── Overview-5_c_esIi.js │ │ │ │ │ │ ├── Proxies-Tt9GNuSW.js │ │ │ │ │ │ ├── Rules-hglfpXzR.js │ │ │ │ │ │ ├── Setup-mkV79sjj.js │ │ │ │ │ │ ├── Twemoji.Mozilla-UkCiemhT.ttf │ │ │ │ │ │ ├── fira-sans-cyrillic-400-normal-4ryKXlYU.woff │ │ │ │ │ │ ├── fira-sans-cyrillic-400-normal-PYrWRMJ5.woff2 │ │ │ │ │ │ ├── fira-sans-cyrillic-ext-400-normal-1RYie3E0.woff2 │ │ │ │ │ │ ├── fira-sans-cyrillic-ext-400-normal-rf3f-Kaw.woff │ │ │ │ │ │ ├── fira-sans-greek-400-normal-Mc4iyeKH.woff2 │ │ │ │ │ │ ├── fira-sans-greek-400-normal-eCSWGL47.woff │ │ │ │ │ │ ├── fira-sans-greek-ext-400-normal-QOf54KGx.woff │ │ │ │ │ │ ├── fira-sans-greek-ext-400-normal-wxqRhc-I.woff2 │ │ │ │ │ │ ├── fira-sans-latin-400-normal-6lFYBE6Z.woff2 │ │ │ │ │ │ ├── fira-sans-latin-400-normal-ka9-J3LG.woff │ │ │ │ │ │ ├── fira-sans-latin-ext-400-normal-bFWruaeo.woff2 │ │ │ │ │ │ ├── fira-sans-latin-ext-400-normal-moeor6ib.woff │ │ │ │ │ │ ├── fira-sans-vietnamese-400-normal--U_MOZBq.woff2 │ │ │ │ │ │ ├── fira-sans-vietnamese-400-normal-ois6Ns-t.woff │ │ │ │ │ │ ├── global-MCJ9PAgv.js │ │ │ │ │ │ ├── index-5ivcdObt.css │ │ │ │ │ │ ├── index-IZ7lrjtp.js │ │ │ │ │ │ ├── index-k-FO5KmN.js │ │ │ │ │ │ └── vendor-TCjgV7Sn.js │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── favicon.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.webmanifest │ │ │ │ │ ├── maskable-icon-512x512.png │ │ │ │ │ ├── pwa-192x192.png │ │ │ │ │ ├── pwa-512x512.png │ │ │ │ │ ├── pwa-64x64.png │ │ │ │ │ ├── registerSW.js │ │ │ │ │ ├── sw.js │ │ │ │ │ └── workbox-3e911b1d.js │ │ │ │ └── yacd │ │ │ │ │ ├── CNAME │ │ │ │ │ ├── _headers │ │ │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ │ │ ├── assets │ │ │ │ │ ├── Config-5a241eed.js │ │ │ │ │ ├── Config-cf41b8ef.css │ │ │ │ │ ├── Connections-a9e050f3.js │ │ │ │ │ ├── Connections-ddae4f70.css │ │ │ │ │ ├── Fab-6279b0bb.js │ │ │ │ │ ├── Fab-a434d836.css │ │ │ │ │ ├── Input-505b5fdb.css │ │ │ │ │ ├── Input-6985be35.js │ │ │ │ │ ├── Logs-5e5ee0ad.css │ │ │ │ │ ├── Logs-a4be0f66.js │ │ │ │ │ ├── Modal-86bce5c3.css │ │ │ │ │ ├── Modal.module-c406ff95.js │ │ │ │ │ ├── Proxies-40f80166.css │ │ │ │ │ ├── Proxies-420aa72b.js │ │ │ │ │ ├── Rules-04c64a3e.js │ │ │ │ │ ├── Rules-e11cb70e.css │ │ │ │ │ ├── Select-3de40504.css │ │ │ │ │ ├── Select-dda18c57.js │ │ │ │ │ ├── StyleGuide-255b125c.css │ │ │ │ │ ├── StyleGuide-409386d8.js │ │ │ │ │ ├── TextFilter-ced87fc6.css │ │ │ │ │ ├── TextFilter-ea8f9266.js │ │ │ │ │ ├── Toggle-4f572f6c.css │ │ │ │ │ ├── Toggle-cc905705.js │ │ │ │ │ ├── TwemojiCountryFlags-9f04f144.woff2 │ │ │ │ │ ├── ZapAnimated-6c3cdb8c.css │ │ │ │ │ ├── ZapAnimated-d32c4141.js │ │ │ │ │ ├── chart-lib-da3c73a9.js │ │ │ │ │ ├── debounce-c1ba2006.js │ │ │ │ │ ├── en-89e30f54.js │ │ │ │ │ ├── index-08f400cf.js │ │ │ │ │ ├── index-8cf47a1c.js │ │ │ │ │ ├── index-d26de9ee.js │ │ │ │ │ ├── index-d5e38ae4.css │ │ │ │ │ ├── index.esm-eb217302.js │ │ │ │ │ ├── index.modern-c58ff412.js │ │ │ │ │ ├── inter-latin-400-normal-0364d368.woff2 │ │ │ │ │ ├── inter-latin-400-normal-e3982e96.woff │ │ │ │ │ ├── inter-latin-800-normal-02e00891.woff │ │ │ │ │ ├── inter-latin-800-normal-a51ac27d.woff2 │ │ │ │ │ ├── logs-281e0071.js │ │ │ │ │ ├── play-85de9511.js │ │ │ │ │ ├── roboto-mono-latin-400-normal-7295944e.woff2 │ │ │ │ │ ├── roboto-mono-latin-400-normal-d5d7d67f.woff │ │ │ │ │ ├── useMutation-4610ee00.js │ │ │ │ │ ├── useRemainingViewPortHeight-b3800ff0.js │ │ │ │ │ └── zh-019c0297.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.webmanifest │ │ │ │ │ ├── registerSW.js │ │ │ │ │ ├── sw.js │ │ │ │ │ ├── yacd-128.png │ │ │ │ │ ├── yacd-64.png │ │ │ │ │ └── yacd.ico │ │ │ ├── yml_change.sh │ │ │ ├── yml_groups_get.sh │ │ │ ├── yml_groups_name_ch.sh │ │ │ ├── yml_groups_name_get.sh │ │ │ ├── yml_groups_set.sh │ │ │ ├── yml_proxys_get.sh │ │ │ ├── yml_proxys_set.sh │ │ │ └── yml_rules_change.sh │ │ │ └── rpcd │ │ │ └── acl.d │ │ │ └── luci-app-openclash.json │ └── www │ │ └── luci-static │ │ └── resources │ │ └── openclash │ │ ├── addon │ │ ├── dialog │ │ │ ├── dialog.css │ │ │ └── dialog.js │ │ ├── display │ │ │ ├── autorefresh.js │ │ │ ├── fullscreen.css │ │ │ └── fullscreen.js │ │ ├── edit │ │ │ └── matchbrackets.js │ │ ├── fold │ │ │ ├── foldcode.js │ │ │ ├── foldgutter.css │ │ │ ├── foldgutter.js │ │ │ └── indent-fold.js │ │ ├── lint │ │ │ ├── js-yaml.min.js │ │ │ ├── lint.css │ │ │ ├── lint.js │ │ │ └── yaml-lint.js │ │ ├── merge │ │ │ ├── diff_match_patch.js │ │ │ ├── merge.css │ │ │ └── merge.js │ │ ├── scroll │ │ │ └── annotatescrollbar.js │ │ ├── search │ │ │ ├── jump-to-line.js │ │ │ ├── match-highlighter.js │ │ │ ├── matchesonscrollbar.css │ │ │ ├── matchesonscrollbar.js │ │ │ ├── search.js │ │ │ └── searchcursor.js │ │ └── selection │ │ │ └── active-line.js │ │ ├── img │ │ ├── Sponsor.svg │ │ ├── Star.svg │ │ ├── Telegram.svg │ │ ├── Tutorials.svg │ │ ├── Wiki.svg │ │ ├── arrow-clockwise-light.svg │ │ ├── eye-light.svg │ │ ├── eye-slash-light.svg │ │ ├── logo.png │ │ ├── meta.png │ │ ├── version.svg │ │ └── wrench-light.svg │ │ ├── lib │ │ ├── codemirror.css │ │ └── codemirror.js │ │ ├── mode │ │ ├── lua │ │ │ └── lua.js │ │ ├── shell │ │ │ └── shell.js │ │ └── yaml │ │ │ └── yaml.js │ │ └── theme │ │ ├── idea.css │ │ └── material.css └── tools │ └── po2lmo │ ├── Makefile │ └── src │ ├── po2lmo │ ├── po2lmo.c │ ├── template_lmo.c │ └── template_lmo.h ├── luci-app-passwall ├── Makefile ├── luasrc │ ├── controller │ │ └── passwall.lua │ ├── model │ │ └── cbi │ │ │ └── passwall │ │ │ ├── client │ │ │ ├── acl.lua │ │ │ ├── acl_config.lua │ │ │ ├── app_update.lua │ │ │ ├── global.lua │ │ │ ├── haproxy.lua │ │ │ ├── log.lua │ │ │ ├── node_config.lua │ │ │ ├── node_list.lua │ │ │ ├── node_subscribe.lua │ │ │ ├── node_subscribe_config.lua │ │ │ ├── other.lua │ │ │ ├── rule.lua │ │ │ ├── rule_list.lua │ │ │ ├── shunt_rules.lua │ │ │ ├── socks_config.lua │ │ │ └── type │ │ │ │ ├── brook.lua │ │ │ │ ├── hysteria2.lua │ │ │ │ ├── naive.lua │ │ │ │ ├── ray.lua │ │ │ │ ├── sing-box.lua │ │ │ │ ├── ss-rust.lua │ │ │ │ ├── ss.lua │ │ │ │ ├── ssr.lua │ │ │ │ ├── trojan-go.lua │ │ │ │ ├── trojan-plus.lua │ │ │ │ └── tuic.lua │ │ │ └── server │ │ │ ├── index.lua │ │ │ ├── type │ │ │ ├── brook.lua │ │ │ ├── hysteria2.lua │ │ │ ├── ray.lua │ │ │ ├── sing-box.lua │ │ │ ├── socks.lua │ │ │ ├── ss-rust.lua │ │ │ ├── ss.lua │ │ │ ├── ssr.lua │ │ │ ├── trojan-go.lua │ │ │ └── trojan-plus.lua │ │ │ └── user.lua │ ├── passwall │ │ ├── api.lua │ │ ├── com.lua │ │ ├── server_app.lua │ │ ├── util_hysteria2.lua │ │ ├── util_naiveproxy.lua │ │ ├── util_shadowsocks.lua │ │ ├── util_sing-box.lua │ │ ├── util_trojan.lua │ │ ├── util_tuic.lua │ │ └── util_xray.lua │ └── view │ │ └── passwall │ │ ├── app_update │ │ └── app_version.htm │ │ ├── global │ │ ├── faq.htm │ │ ├── footer.htm │ │ └── status.htm │ │ ├── haproxy │ │ └── status.htm │ │ ├── log │ │ └── log.htm │ │ ├── node_list │ │ ├── link_add_node.htm │ │ ├── link_share_man.htm │ │ └── node_list.htm │ │ ├── rule │ │ └── rule_version.htm │ │ ├── server │ │ ├── log.htm │ │ └── users_list_status.htm │ │ └── socks_auto_switch │ │ └── footer.htm ├── po │ ├── zh-cn │ │ └── passwall.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── passwall_server │ ├── hotplug.d │ │ └── iface │ │ │ └── 98-passwall │ ├── init.d │ │ ├── passwall │ │ └── passwall_server │ └── uci-defaults │ │ └── luci-passwall │ └── usr │ └── share │ ├── passwall │ ├── 0_default_config │ ├── app.sh │ ├── haproxy.lua │ ├── haproxy_check.sh │ ├── helper_dnsmasq.sh │ ├── helper_dnsmasq_add.lua │ ├── iptables.sh │ ├── monitor.sh │ ├── nftables.sh │ ├── rule_update.lua │ ├── rules │ │ ├── block_host │ │ ├── block_ip │ │ ├── chnlist │ │ ├── chnroute │ │ ├── chnroute6 │ │ ├── direct_host │ │ ├── direct_ip │ │ ├── domains_excluded │ │ ├── gfwlist │ │ ├── lanlist_ipv4 │ │ ├── lanlist_ipv6 │ │ ├── proxy_host │ │ └── proxy_ip │ ├── socks_auto_switch.sh │ ├── subscribe.lua │ └── test.sh │ └── rpcd │ └── acl.d │ └── luci-app-passwall.json ├── luci-app-passwall2 ├── Makefile ├── luasrc │ ├── controller │ │ └── passwall2.lua │ ├── model │ │ └── cbi │ │ │ └── passwall2 │ │ │ ├── client │ │ │ ├── acl.lua │ │ │ ├── acl_config.lua │ │ │ ├── app_update.lua │ │ │ ├── global.lua │ │ │ ├── haproxy.lua │ │ │ ├── log.lua │ │ │ ├── node_config.lua │ │ │ ├── node_list.lua │ │ │ ├── node_subscribe.lua │ │ │ ├── node_subscribe_config.lua │ │ │ ├── other.lua │ │ │ ├── rule.lua │ │ │ ├── shunt_rules.lua │ │ │ ├── socks_config.lua │ │ │ └── type │ │ │ │ ├── brook.lua │ │ │ │ ├── hysteria2.lua │ │ │ │ ├── naive.lua │ │ │ │ ├── ray.lua │ │ │ │ ├── sing-box.lua │ │ │ │ ├── ss-rust.lua │ │ │ │ ├── ss.lua │ │ │ │ ├── ssr.lua │ │ │ │ └── tuic.lua │ │ │ └── server │ │ │ ├── index.lua │ │ │ ├── type │ │ │ ├── brook.lua │ │ │ ├── hysteria2.lua │ │ │ ├── ray.lua │ │ │ ├── sing-box.lua │ │ │ ├── ss-rust.lua │ │ │ ├── ss.lua │ │ │ └── ssr.lua │ │ │ └── user.lua │ ├── passwall2 │ │ ├── api.lua │ │ ├── com.lua │ │ ├── server_app.lua │ │ ├── util_hysteria2.lua │ │ ├── util_naiveproxy.lua │ │ ├── util_shadowsocks.lua │ │ ├── util_sing-box.lua │ │ ├── util_tuic.lua │ │ └── util_xray.lua │ └── view │ │ └── passwall2 │ │ ├── app_update │ │ └── app_version.htm │ │ ├── global │ │ ├── faq.htm │ │ ├── footer.htm │ │ └── status.htm │ │ ├── haproxy │ │ └── status.htm │ │ ├── log │ │ └── log.htm │ │ ├── node_list │ │ ├── link_add_node.htm │ │ ├── link_share_man.htm │ │ └── node_list.htm │ │ ├── rule │ │ └── rule_version.htm │ │ ├── server │ │ ├── log.htm │ │ └── users_list_status.htm │ │ └── socks_auto_switch │ │ └── footer.htm ├── po │ ├── zh-cn │ │ └── passwall2.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── passwall2_server │ ├── hotplug.d │ │ └── iface │ │ │ └── 98-passwall2 │ ├── init.d │ │ ├── passwall2 │ │ └── passwall2_server │ └── uci-defaults │ │ └── luci-passwall2 │ └── usr │ └── share │ ├── passwall2 │ ├── 0_default_config │ ├── app.sh │ ├── domains_excluded │ ├── haproxy.lua │ ├── haproxy_check.sh │ ├── helper_dnsmasq.sh │ ├── iptables.sh │ ├── monitor.sh │ ├── nftables.sh │ ├── rule_update.lua │ ├── socks_auto_switch.sh │ ├── subscribe.lua │ └── test.sh │ └── rpcd │ └── acl.d │ └── luci-app-passwall2.json ├── luci-app-poweroff ├── Makefile ├── luasrc │ ├── controller │ │ └── poweroff.lua │ └── view │ │ └── poweroff.htm └── po │ ├── zh-cn │ └── poweroff.po │ ├── zh-tw │ └── poweroff.po │ └── zh_Hans ├── 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 │ └── zh_Hans └── 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 │ │ ├── index.js │ │ ├── style.css │ │ └── vendor.js ├── luasrc │ ├── controller │ │ ├── istore_backend.lua │ │ └── quickstart.lua │ └── view │ │ └── quickstart │ │ ├── home.htm │ │ └── main.htm ├── po │ ├── zh-cn │ │ └── quickstart.po │ └── zh_Hans └── root │ ├── etc │ └── uci-defaults │ │ └── 50_luci-quickstart │ └── usr │ ├── libexec │ └── quickstart │ │ └── auto_setup.sh │ └── share │ └── luci │ └── menu.d │ └── luci-app-quickstart.json ├── luci-app-serverchan ├── Makefile ├── luasrc │ ├── controller │ │ └── serverchan.lua │ ├── model │ │ └── cbi │ │ │ └── serverchan │ │ │ ├── advanced.lua │ │ │ ├── client.lua │ │ │ ├── log.lua │ │ │ └── setting.lua │ └── view │ │ └── serverchan │ │ ├── serverchan_log.htm │ │ └── serverchan_status.htm └── root │ ├── etc │ ├── config │ │ └── serverchan │ ├── init.d │ │ └── serverchan │ └── uci-defaults │ │ └── luci-serverchan │ └── usr │ └── share │ ├── rpcd │ └── acl.d │ │ └── luci-app-serverchan.json │ └── serverchan │ ├── api │ ├── diy.json │ ├── ip_blacklist │ ├── ipv4.list │ ├── ipv6.list │ ├── logo.jpg │ ├── pushplus.json │ ├── qywx_markdown.json │ ├── qywx_mpnews.json │ ├── serverchan.json │ ├── telegram.json │ └── wxpusher.json │ └── serverchan ├── 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 │ └── zh_Hans └── root │ └── etc │ └── uci-defaults │ └── 50_luci-smartdns ├── 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 │ └── zh_Hans └── 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-ssr-plus ├── Makefile ├── luasrc │ ├── controller │ │ └── shadowsocksr.lua │ ├── model │ │ └── cbi │ │ │ └── shadowsocksr │ │ │ ├── advanced.lua │ │ │ ├── client-config.lua │ │ │ ├── client.lua │ │ │ ├── control.lua │ │ │ ├── log.lua │ │ │ ├── server-config.lua │ │ │ ├── server.lua │ │ │ ├── servers.lua │ │ │ └── status.lua │ └── view │ │ └── shadowsocksr │ │ ├── certupload.htm │ │ ├── check.htm │ │ ├── checkport.htm │ │ ├── ping.htm │ │ ├── refresh.htm │ │ ├── reset.htm │ │ ├── server_list.htm │ │ ├── socket.htm │ │ ├── ssrurl.htm │ │ ├── status.htm │ │ └── subscribe.htm ├── po │ ├── zh-cn │ │ └── ssr-plus.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── shadowsocksr │ ├── init.d │ │ └── shadowsocksr │ ├── ssrplus │ │ ├── ad.conf │ │ ├── black.list │ │ ├── china_ssr.txt │ │ ├── deny.list │ │ ├── gfw_base.conf │ │ ├── gfw_list.conf │ │ ├── mosdns-config.yaml │ │ ├── netflix.list │ │ ├── netflixip.list │ │ ├── oversea_list.conf │ │ └── white.list │ └── uci-defaults │ │ └── luci-ssr-plus │ └── usr │ ├── bin │ ├── ssr-monitor │ ├── ssr-rules │ └── ssr-switch │ └── share │ ├── rpcd │ └── acl.d │ │ └── luci-app-ssr-plus.json │ └── shadowsocksr │ ├── chinaipset.sh │ ├── gen_config.lua │ ├── genred2config.sh │ ├── gfw2ipset.sh │ ├── ssrplusupdate.sh │ ├── subscribe.lua │ └── update.lua ├── 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 │ │ │ └── ipkg-build │ │ └── share │ │ ├── opkg │ │ └── intercept │ │ │ └── rm │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-store.json └── src │ ├── Makefile │ ├── compat.conf │ ├── dummy │ └── package.mk │ ├── key-build.pub │ └── po │ ├── templates │ └── iStore.pot │ ├── zh-cn │ └── iStore.po │ └── zh-tw │ └── iStore.po ├── luci-app-udp2raw ├── Makefile ├── files │ ├── luci │ │ ├── controller │ │ │ └── udp2raw.lua │ │ ├── i18n │ │ │ ├── udp2raw.zh-cn.lmo │ │ │ └── udp2raw.zh-cn.po │ │ ├── model │ │ │ └── cbi │ │ │ │ └── udp2raw │ │ │ │ ├── general.lua │ │ │ │ ├── servers-details.lua │ │ │ │ └── servers.lua │ │ └── view │ │ │ └── udp2raw │ │ │ ├── dynamiclist.htm │ │ │ └── status.htm │ └── root │ │ └── etc │ │ ├── config │ │ └── udp2raw │ │ ├── init.d │ │ ├── udp2raw │ │ └── udp2raw.init │ │ └── uci-defaults │ │ └── luci-udp2raw ├── images │ ├── luci-app-udp2raw1.jpg │ ├── luci-app-udp2raw2.jpg │ └── luci-app-udp2raw3.jpg └── tools │ └── po2lmo │ ├── Makefile │ └── src │ ├── po2lmo.c │ ├── template_lmo.c │ └── template_lmo.h ├── 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 │ └── zh_Hans ├── luci-app-vssr ├── Makefile ├── luasrc │ ├── controller │ │ └── vssr.lua │ ├── model │ │ └── cbi │ │ │ └── vssr │ │ │ ├── advanced.lua │ │ │ ├── client-config.lua │ │ │ ├── client.lua │ │ │ ├── control.lua │ │ │ ├── log.lua │ │ │ ├── router.lua │ │ │ ├── server-config.lua │ │ │ ├── server.lua │ │ │ ├── servers.lua │ │ │ ├── socks5.lua │ │ │ └── subscribe-config.lua │ └── view │ │ └── vssr │ │ ├── cell_valuefooter.htm │ │ ├── cell_valueheader.htm │ │ ├── licence.htm │ │ ├── refresh.htm │ │ ├── ssrurl.htm │ │ ├── status_bottom.htm │ │ ├── status_top.htm │ │ ├── tblsection.htm │ │ └── update_subscribe.htm ├── po │ ├── zh-cn │ │ └── vssr.po │ └── zh_Hans ├── relnotes.txt └── root │ ├── etc │ ├── config │ │ └── vssr │ ├── init.d │ │ └── vssr │ ├── uci-defaults │ │ └── luci-vssr │ └── vssr │ │ ├── ad.conf │ │ ├── black.list │ │ ├── china_ssr.txt │ │ ├── custom_domain.list │ │ ├── custom_ip.list │ │ ├── disney_domain.list │ │ ├── disney_ip.list │ │ ├── gfw.list │ │ ├── gfw_base.conf │ │ ├── gfw_list.conf │ │ ├── netflix_domain.list │ │ ├── netflix_ip.list │ │ ├── oversea_list.conf │ │ ├── prime_domain.list │ │ ├── prime_ip.list │ │ ├── tvb_domain.list │ │ ├── tvb_ip.list │ │ ├── tw_video_domain.list │ │ ├── tw_video_ip.list │ │ ├── white.list │ │ ├── youtube_domain.list │ │ └── youtube_ip.list │ ├── usr │ ├── bin │ │ ├── vssr-ad │ │ ├── vssr-gfw │ │ ├── vssr-monitor │ │ ├── vssr-qucikswitch │ │ ├── vssr-rules │ │ └── vssr-switch │ └── share │ │ ├── lua │ │ └── vssrutil.lua │ │ ├── rpcd │ │ └── acl.d │ │ │ └── luci-app-vssr.json │ │ └── vssr │ │ ├── GeoLite2-Country.mmdb │ │ ├── chinaipset.sh │ │ ├── genconfig_hysteria.lua │ │ ├── genconfig_ss.lua │ │ ├── genconfig_ssr.lua │ │ ├── genconfig_trojan.lua │ │ ├── genconfig_v2ray.lua │ │ ├── genconfig_v2ray_s.lua │ │ ├── gfw2ipset.sh │ │ ├── subscribe.lua │ │ └── update.lua │ └── www │ └── luci-static │ └── vssr │ ├── css │ ├── flag-icon.min.css │ ├── pure.css │ ├── sweetalert2.css │ └── vssr.css │ ├── emoji.js │ ├── emoji │ ├── 1f1e6-1f1e8.png │ ├── 1f1e6-1f1e9.png │ ├── 1f1e6-1f1ea.png │ ├── 1f1e6-1f1eb.png │ ├── 1f1e6-1f1ec.png │ ├── 1f1e6-1f1ee.png │ ├── 1f1e6-1f1f1.png │ ├── 1f1e6-1f1f2.png │ ├── 1f1e6-1f1f4.png │ ├── 1f1e6-1f1f6.png │ ├── 1f1e6-1f1f7.png │ ├── 1f1e6-1f1f8.png │ ├── 1f1e6-1f1f9.png │ ├── 1f1e6-1f1fa.png │ ├── 1f1e6-1f1fc.png │ ├── 1f1e6-1f1fd.png │ ├── 1f1e6-1f1ff.png │ ├── 1f1e7-1f1e6.png │ ├── 1f1e7-1f1e7.png │ ├── 1f1e7-1f1e9.png │ ├── 1f1e7-1f1ea.png │ ├── 1f1e7-1f1eb.png │ ├── 1f1e7-1f1ec.png │ ├── 1f1e7-1f1ed.png │ ├── 1f1e7-1f1ee.png │ ├── 1f1e7-1f1ef.png │ ├── 1f1e7-1f1f1.png │ ├── 1f1e7-1f1f2.png │ ├── 1f1e7-1f1f3.png │ ├── 1f1e7-1f1f4.png │ ├── 1f1e7-1f1f6.png │ ├── 1f1e7-1f1f7.png │ ├── 1f1e7-1f1f8.png │ ├── 1f1e7-1f1f9.png │ ├── 1f1e7-1f1fb.png │ ├── 1f1e7-1f1fc.png │ ├── 1f1e7-1f1fe.png │ ├── 1f1e7-1f1ff.png │ ├── 1f1e8-1f1e6.png │ ├── 1f1e8-1f1e8.png │ ├── 1f1e8-1f1e9.png │ ├── 1f1e8-1f1eb.png │ ├── 1f1e8-1f1ec.png │ ├── 1f1e8-1f1ed.png │ ├── 1f1e8-1f1ee.png │ ├── 1f1e8-1f1f0.png │ ├── 1f1e8-1f1f1.png │ ├── 1f1e8-1f1f2.png │ ├── 1f1e8-1f1f3.png │ ├── 1f1e8-1f1f4.png │ ├── 1f1e8-1f1f5.png │ ├── 1f1e8-1f1f7.png │ ├── 1f1e8-1f1fa.png │ ├── 1f1e8-1f1fb.png │ ├── 1f1e8-1f1fc.png │ ├── 1f1e8-1f1fd.png │ ├── 1f1e8-1f1fe.png │ ├── 1f1e8-1f1ff.png │ ├── 1f1e9-1f1ea.png │ ├── 1f1e9-1f1ec.png │ ├── 1f1e9-1f1ef.png │ ├── 1f1e9-1f1f0.png │ ├── 1f1e9-1f1f2.png │ ├── 1f1e9-1f1f4.png │ ├── 1f1e9-1f1ff.png │ ├── 1f1ea-1f1e6.png │ ├── 1f1ea-1f1e8.png │ ├── 1f1ea-1f1ea.png │ ├── 1f1ea-1f1ec.png │ ├── 1f1ea-1f1ed.png │ ├── 1f1ea-1f1f7.png │ ├── 1f1ea-1f1f8.png │ ├── 1f1ea-1f1f9.png │ ├── 1f1ea-1f1fa.png │ ├── 1f1eb-1f1ee.png │ ├── 1f1eb-1f1ef.png │ ├── 1f1eb-1f1f0.png │ ├── 1f1eb-1f1f2.png │ ├── 1f1eb-1f1f4.png │ ├── 1f1eb-1f1f7.png │ ├── 1f1ec-1f1e6.png │ ├── 1f1ec-1f1e7.png │ ├── 1f1ec-1f1e9.png │ ├── 1f1ec-1f1ea.png │ ├── 1f1ec-1f1eb.png │ ├── 1f1ec-1f1ec.png │ ├── 1f1ec-1f1ed.png │ ├── 1f1ec-1f1ee.png │ ├── 1f1ec-1f1f1.png │ ├── 1f1ec-1f1f2.png │ ├── 1f1ec-1f1f3.png │ ├── 1f1ec-1f1f5.png │ ├── 1f1ec-1f1f6.png │ ├── 1f1ec-1f1f7.png │ ├── 1f1ec-1f1f8.png │ ├── 1f1ec-1f1f9.png │ ├── 1f1ec-1f1fa.png │ ├── 1f1ec-1f1fc.png │ ├── 1f1ec-1f1fe.png │ ├── 1f1ed-1f1f0.png │ ├── 1f1ed-1f1f2.png │ ├── 1f1ed-1f1f3.png │ ├── 1f1ed-1f1f7.png │ ├── 1f1ed-1f1f9.png │ ├── 1f1ed-1f1fa.png │ ├── 1f1ee-1f1e8.png │ ├── 1f1ee-1f1e9.png │ ├── 1f1ee-1f1ea.png │ ├── 1f1ee-1f1f1.png │ ├── 1f1ee-1f1f2.png │ ├── 1f1ee-1f1f3.png │ ├── 1f1ee-1f1f4.png │ ├── 1f1ee-1f1f6.png │ ├── 1f1ee-1f1f7.png │ ├── 1f1ee-1f1f8.png │ ├── 1f1ee-1f1f9.png │ ├── 1f1ef-1f1ea.png │ ├── 1f1ef-1f1f2.png │ ├── 1f1ef-1f1f4.png │ ├── 1f1ef-1f1f5.png │ ├── 1f1f0-1f1ea.png │ ├── 1f1f0-1f1ec.png │ ├── 1f1f0-1f1ed.png │ ├── 1f1f0-1f1ee.png │ ├── 1f1f0-1f1f2.png │ ├── 1f1f0-1f1f3.png │ ├── 1f1f0-1f1f5.png │ ├── 1f1f0-1f1f7.png │ ├── 1f1f0-1f1fc.png │ ├── 1f1f0-1f1fe.png │ ├── 1f1f0-1f1ff.png │ ├── 1f1f1-1f1e6.png │ ├── 1f1f1-1f1e7.png │ ├── 1f1f1-1f1e8.png │ ├── 1f1f1-1f1ee.png │ ├── 1f1f1-1f1f0.png │ ├── 1f1f1-1f1f7.png │ ├── 1f1f1-1f1f8.png │ ├── 1f1f1-1f1f9.png │ ├── 1f1f1-1f1fa.png │ ├── 1f1f1-1f1fb.png │ ├── 1f1f1-1f1fe.png │ ├── 1f1f2-1f1e6.png │ ├── 1f1f2-1f1e8.png │ ├── 1f1f2-1f1e9.png │ ├── 1f1f2-1f1ea.png │ ├── 1f1f2-1f1eb.png │ ├── 1f1f2-1f1ec.png │ ├── 1f1f2-1f1ed.png │ ├── 1f1f2-1f1f0.png │ ├── 1f1f2-1f1f1.png │ ├── 1f1f2-1f1f2.png │ ├── 1f1f2-1f1f3.png │ ├── 1f1f2-1f1f4.png │ ├── 1f1f2-1f1f5.png │ ├── 1f1f2-1f1f6.png │ ├── 1f1f2-1f1f7.png │ ├── 1f1f2-1f1f8.png │ ├── 1f1f2-1f1f9.png │ ├── 1f1f2-1f1fa.png │ ├── 1f1f2-1f1fb.png │ ├── 1f1f2-1f1fc.png │ ├── 1f1f2-1f1fd.png │ ├── 1f1f2-1f1fe.png │ ├── 1f1f2-1f1ff.png │ ├── 1f1f3-1f1e6.png │ ├── 1f1f3-1f1e8.png │ ├── 1f1f3-1f1ea.png │ ├── 1f1f3-1f1eb.png │ ├── 1f1f3-1f1ec.png │ ├── 1f1f3-1f1ee.png │ ├── 1f1f3-1f1f1.png │ ├── 1f1f3-1f1f4.png │ ├── 1f1f3-1f1f5.png │ ├── 1f1f3-1f1f7.png │ ├── 1f1f3-1f1fa.png │ ├── 1f1f3-1f1ff.png │ ├── 1f1f4-1f1f2.png │ ├── 1f1f5-1f1e6.png │ ├── 1f1f5-1f1ea.png │ ├── 1f1f5-1f1eb.png │ ├── 1f1f5-1f1ec.png │ ├── 1f1f5-1f1ed.png │ ├── 1f1f5-1f1f0.png │ ├── 1f1f5-1f1f1.png │ ├── 1f1f5-1f1f2.png │ ├── 1f1f5-1f1f3.png │ ├── 1f1f5-1f1f7.png │ ├── 1f1f5-1f1f8.png │ ├── 1f1f5-1f1f9.png │ ├── 1f1f5-1f1fc.png │ ├── 1f1f5-1f1fe.png │ ├── 1f1f6-1f1e6.png │ ├── 1f1f7-1f1ea.png │ ├── 1f1f7-1f1f4.png │ ├── 1f1f7-1f1f8.png │ ├── 1f1f7-1f1fa.png │ ├── 1f1f7-1f1fc.png │ ├── 1f1f8-1f1e6.png │ ├── 1f1f8-1f1e7.png │ ├── 1f1f8-1f1e8.png │ ├── 1f1f8-1f1e9.png │ ├── 1f1f8-1f1ea.png │ ├── 1f1f8-1f1ec.png │ ├── 1f1f8-1f1ed.png │ ├── 1f1f8-1f1ee.png │ ├── 1f1f8-1f1ef.png │ ├── 1f1f8-1f1f0.png │ ├── 1f1f8-1f1f1.png │ ├── 1f1f8-1f1f2.png │ ├── 1f1f8-1f1f3.png │ ├── 1f1f8-1f1f4.png │ ├── 1f1f8-1f1f7.png │ ├── 1f1f8-1f1f8.png │ ├── 1f1f8-1f1f9.png │ ├── 1f1f8-1f1fb.png │ ├── 1f1f8-1f1fd.png │ ├── 1f1f8-1f1fe.png │ ├── 1f1f8-1f1ff.png │ ├── 1f1f9-1f1e6.png │ ├── 1f1f9-1f1e8.png │ ├── 1f1f9-1f1e9.png │ ├── 1f1f9-1f1eb.png │ ├── 1f1f9-1f1ec.png │ ├── 1f1f9-1f1ed.png │ ├── 1f1f9-1f1ef.png │ ├── 1f1f9-1f1f0.png │ ├── 1f1f9-1f1f1.png │ ├── 1f1f9-1f1f2.png │ ├── 1f1f9-1f1f3.png │ ├── 1f1f9-1f1f4.png │ ├── 1f1f9-1f1f7.png │ ├── 1f1f9-1f1f9.png │ ├── 1f1f9-1f1fb.png │ ├── 1f1f9-1f1fc.png │ ├── 1f1f9-1f1ff.png │ ├── 1f1fa-1f1e6.png │ ├── 1f1fa-1f1ec.png │ ├── 1f1fa-1f1f2.png │ ├── 1f1fa-1f1f3.png │ ├── 1f1fa-1f1f8.png │ ├── 1f1fa-1f1fe.png │ ├── 1f1fa-1f1ff.png │ ├── 1f1fb-1f1e6.png │ ├── 1f1fb-1f1e8.png │ ├── 1f1fb-1f1ea.png │ ├── 1f1fb-1f1ec.png │ ├── 1f1fb-1f1ee.png │ ├── 1f1fb-1f1f3.png │ ├── 1f1fb-1f1fa.png │ ├── 1f1fc-1f1eb.png │ ├── 1f1fc-1f1f8.png │ ├── 1f1fd-1f1f0.png │ ├── 1f1fe-1f1ea.png │ ├── 1f1fe-1f1f9.png │ ├── 1f1ff-1f1e6.png │ ├── 1f1ff-1f1f2.png │ ├── 1f1ff-1f1fc.png │ └── 2x │ │ ├── 1f1e6-1f1e8.png │ │ ├── 1f1e6-1f1e9.png │ │ ├── 1f1e6-1f1ea.png │ │ ├── 1f1e6-1f1eb.png │ │ ├── 1f1e6-1f1ec.png │ │ ├── 1f1e6-1f1ee.png │ │ ├── 1f1e6-1f1f1.png │ │ ├── 1f1e6-1f1f2.png │ │ ├── 1f1e6-1f1f4.png │ │ ├── 1f1e6-1f1f6.png │ │ ├── 1f1e6-1f1f7.png │ │ ├── 1f1e6-1f1f8.png │ │ ├── 1f1e6-1f1f9.png │ │ ├── 1f1e6-1f1fa.png │ │ ├── 1f1e6-1f1fc.png │ │ ├── 1f1e6-1f1fd.png │ │ ├── 1f1e6-1f1ff.png │ │ ├── 1f1e7-1f1e6.png │ │ ├── 1f1e7-1f1e7.png │ │ ├── 1f1e7-1f1e9.png │ │ ├── 1f1e7-1f1ea.png │ │ ├── 1f1e7-1f1eb.png │ │ ├── 1f1e7-1f1ec.png │ │ ├── 1f1e7-1f1ed.png │ │ ├── 1f1e7-1f1ee.png │ │ ├── 1f1e7-1f1ef.png │ │ ├── 1f1e7-1f1f1.png │ │ ├── 1f1e7-1f1f2.png │ │ ├── 1f1e7-1f1f3.png │ │ ├── 1f1e7-1f1f4.png │ │ ├── 1f1e7-1f1f6.png │ │ ├── 1f1e7-1f1f7.png │ │ ├── 1f1e7-1f1f8.png │ │ ├── 1f1e7-1f1f9.png │ │ ├── 1f1e7-1f1fb.png │ │ ├── 1f1e7-1f1fc.png │ │ ├── 1f1e7-1f1fe.png │ │ ├── 1f1e7-1f1ff.png │ │ ├── 1f1e8-1f1e6.png │ │ ├── 1f1e8-1f1e8.png │ │ ├── 1f1e8-1f1e9.png │ │ ├── 1f1e8-1f1eb.png │ │ ├── 1f1e8-1f1ec.png │ │ ├── 1f1e8-1f1ed.png │ │ ├── 1f1e8-1f1ee.png │ │ ├── 1f1e8-1f1f0.png │ │ ├── 1f1e8-1f1f1.png │ │ ├── 1f1e8-1f1f2.png │ │ ├── 1f1e8-1f1f3.png │ │ ├── 1f1e8-1f1f4.png │ │ ├── 1f1e8-1f1f5.png │ │ ├── 1f1e8-1f1f7.png │ │ ├── 1f1e8-1f1fa.png │ │ ├── 1f1e8-1f1fb.png │ │ ├── 1f1e8-1f1fc.png │ │ ├── 1f1e8-1f1fd.png │ │ ├── 1f1e8-1f1fe.png │ │ ├── 1f1e8-1f1ff.png │ │ ├── 1f1e9-1f1ea.png │ │ ├── 1f1e9-1f1ec.png │ │ ├── 1f1e9-1f1ef.png │ │ ├── 1f1e9-1f1f0.png │ │ ├── 1f1e9-1f1f2.png │ │ ├── 1f1e9-1f1f4.png │ │ ├── 1f1e9-1f1ff.png │ │ ├── 1f1ea-1f1e6.png │ │ ├── 1f1ea-1f1e8.png │ │ ├── 1f1ea-1f1ea.png │ │ ├── 1f1ea-1f1ec.png │ │ ├── 1f1ea-1f1ed.png │ │ ├── 1f1ea-1f1f7.png │ │ ├── 1f1ea-1f1f8.png │ │ ├── 1f1ea-1f1f9.png │ │ ├── 1f1ea-1f1fa.png │ │ ├── 1f1eb-1f1ee.png │ │ ├── 1f1eb-1f1ef.png │ │ ├── 1f1eb-1f1f0.png │ │ ├── 1f1eb-1f1f2.png │ │ ├── 1f1eb-1f1f4.png │ │ ├── 1f1eb-1f1f7.png │ │ ├── 1f1ec-1f1e6.png │ │ ├── 1f1ec-1f1e7.png │ │ ├── 1f1ec-1f1e9.png │ │ ├── 1f1ec-1f1ea.png │ │ ├── 1f1ec-1f1eb.png │ │ ├── 1f1ec-1f1ec.png │ │ ├── 1f1ec-1f1ed.png │ │ ├── 1f1ec-1f1ee.png │ │ ├── 1f1ec-1f1f1.png │ │ ├── 1f1ec-1f1f2.png │ │ ├── 1f1ec-1f1f3.png │ │ ├── 1f1ec-1f1f5.png │ │ ├── 1f1ec-1f1f6.png │ │ ├── 1f1ec-1f1f7.png │ │ ├── 1f1ec-1f1f8.png │ │ ├── 1f1ec-1f1f9.png │ │ ├── 1f1ec-1f1fa.png │ │ ├── 1f1ec-1f1fc.png │ │ ├── 1f1ec-1f1fe.png │ │ ├── 1f1ed-1f1f0.png │ │ ├── 1f1ed-1f1f2.png │ │ ├── 1f1ed-1f1f3.png │ │ ├── 1f1ed-1f1f7.png │ │ ├── 1f1ed-1f1f9.png │ │ ├── 1f1ed-1f1fa.png │ │ ├── 1f1ee-1f1e8.png │ │ ├── 1f1ee-1f1e9.png │ │ ├── 1f1ee-1f1ea.png │ │ ├── 1f1ee-1f1f1.png │ │ ├── 1f1ee-1f1f2.png │ │ ├── 1f1ee-1f1f3.png │ │ ├── 1f1ee-1f1f4.png │ │ ├── 1f1ee-1f1f6.png │ │ ├── 1f1ee-1f1f7.png │ │ ├── 1f1ee-1f1f8.png │ │ ├── 1f1ee-1f1f9.png │ │ ├── 1f1ef-1f1ea.png │ │ ├── 1f1ef-1f1f2.png │ │ ├── 1f1ef-1f1f4.png │ │ ├── 1f1ef-1f1f5.png │ │ ├── 1f1f0-1f1ea.png │ │ ├── 1f1f0-1f1ec.png │ │ ├── 1f1f0-1f1ed.png │ │ ├── 1f1f0-1f1ee.png │ │ ├── 1f1f0-1f1f2.png │ │ ├── 1f1f0-1f1f3.png │ │ ├── 1f1f0-1f1f5.png │ │ ├── 1f1f0-1f1f7.png │ │ ├── 1f1f0-1f1fc.png │ │ ├── 1f1f0-1f1fe.png │ │ ├── 1f1f0-1f1ff.png │ │ ├── 1f1f1-1f1e6.png │ │ ├── 1f1f1-1f1e7.png │ │ ├── 1f1f1-1f1e8.png │ │ ├── 1f1f1-1f1ee.png │ │ ├── 1f1f1-1f1f0.png │ │ ├── 1f1f1-1f1f7.png │ │ ├── 1f1f1-1f1f8.png │ │ ├── 1f1f1-1f1f9.png │ │ ├── 1f1f1-1f1fa.png │ │ ├── 1f1f1-1f1fb.png │ │ ├── 1f1f1-1f1fe.png │ │ ├── 1f1f2-1f1e6.png │ │ ├── 1f1f2-1f1e8.png │ │ ├── 1f1f2-1f1e9.png │ │ ├── 1f1f2-1f1ea.png │ │ ├── 1f1f2-1f1eb.png │ │ ├── 1f1f2-1f1ec.png │ │ ├── 1f1f2-1f1ed.png │ │ ├── 1f1f2-1f1f0.png │ │ ├── 1f1f2-1f1f1.png │ │ ├── 1f1f2-1f1f2.png │ │ ├── 1f1f2-1f1f3.png │ │ ├── 1f1f2-1f1f4.png │ │ ├── 1f1f2-1f1f5.png │ │ ├── 1f1f2-1f1f6.png │ │ ├── 1f1f2-1f1f7.png │ │ ├── 1f1f2-1f1f8.png │ │ ├── 1f1f2-1f1f9.png │ │ ├── 1f1f2-1f1fa.png │ │ ├── 1f1f2-1f1fb.png │ │ ├── 1f1f2-1f1fc.png │ │ ├── 1f1f2-1f1fd.png │ │ ├── 1f1f2-1f1fe.png │ │ ├── 1f1f2-1f1ff.png │ │ ├── 1f1f3-1f1e6.png │ │ ├── 1f1f3-1f1e8.png │ │ ├── 1f1f3-1f1ea.png │ │ ├── 1f1f3-1f1eb.png │ │ ├── 1f1f3-1f1ec.png │ │ ├── 1f1f3-1f1ee.png │ │ ├── 1f1f3-1f1f1.png │ │ ├── 1f1f3-1f1f4.png │ │ ├── 1f1f3-1f1f5.png │ │ ├── 1f1f3-1f1f7.png │ │ ├── 1f1f3-1f1fa.png │ │ ├── 1f1f3-1f1ff.png │ │ ├── 1f1f4-1f1f2.png │ │ ├── 1f1f5-1f1e6.png │ │ ├── 1f1f5-1f1ea.png │ │ ├── 1f1f5-1f1eb.png │ │ ├── 1f1f5-1f1ec.png │ │ ├── 1f1f5-1f1ed.png │ │ ├── 1f1f5-1f1f0.png │ │ ├── 1f1f5-1f1f1.png │ │ ├── 1f1f5-1f1f2.png │ │ ├── 1f1f5-1f1f3.png │ │ ├── 1f1f5-1f1f7.png │ │ ├── 1f1f5-1f1f8.png │ │ ├── 1f1f5-1f1f9.png │ │ ├── 1f1f5-1f1fc.png │ │ ├── 1f1f5-1f1fe.png │ │ ├── 1f1f6-1f1e6.png │ │ ├── 1f1f7-1f1ea.png │ │ ├── 1f1f7-1f1f4.png │ │ ├── 1f1f7-1f1f8.png │ │ ├── 1f1f7-1f1fa.png │ │ ├── 1f1f7-1f1fc.png │ │ ├── 1f1f8-1f1e6.png │ │ ├── 1f1f8-1f1e7.png │ │ ├── 1f1f8-1f1e8.png │ │ ├── 1f1f8-1f1e9.png │ │ ├── 1f1f8-1f1ea.png │ │ ├── 1f1f8-1f1ec.png │ │ ├── 1f1f8-1f1ed.png │ │ ├── 1f1f8-1f1ee.png │ │ ├── 1f1f8-1f1ef.png │ │ ├── 1f1f8-1f1f0.png │ │ ├── 1f1f8-1f1f1.png │ │ ├── 1f1f8-1f1f2.png │ │ ├── 1f1f8-1f1f3.png │ │ ├── 1f1f8-1f1f4.png │ │ ├── 1f1f8-1f1f7.png │ │ ├── 1f1f8-1f1f8.png │ │ ├── 1f1f8-1f1f9.png │ │ ├── 1f1f8-1f1fb.png │ │ ├── 1f1f8-1f1fd.png │ │ ├── 1f1f8-1f1fe.png │ │ ├── 1f1f8-1f1ff.png │ │ ├── 1f1f9-1f1e6.png │ │ ├── 1f1f9-1f1e8.png │ │ ├── 1f1f9-1f1e9.png │ │ ├── 1f1f9-1f1eb.png │ │ ├── 1f1f9-1f1ec.png │ │ ├── 1f1f9-1f1ed.png │ │ ├── 1f1f9-1f1ef.png │ │ ├── 1f1f9-1f1f0.png │ │ ├── 1f1f9-1f1f1.png │ │ ├── 1f1f9-1f1f2.png │ │ ├── 1f1f9-1f1f3.png │ │ ├── 1f1f9-1f1f4.png │ │ ├── 1f1f9-1f1f7.png │ │ ├── 1f1f9-1f1f9.png │ │ ├── 1f1f9-1f1fb.png │ │ ├── 1f1f9-1f1fc.png │ │ ├── 1f1f9-1f1ff.png │ │ ├── 1f1fa-1f1e6.png │ │ ├── 1f1fa-1f1ec.png │ │ ├── 1f1fa-1f1f2.png │ │ ├── 1f1fa-1f1f3.png │ │ ├── 1f1fa-1f1f8.png │ │ ├── 1f1fa-1f1fe.png │ │ ├── 1f1fa-1f1ff.png │ │ ├── 1f1fb-1f1e6.png │ │ ├── 1f1fb-1f1e8.png │ │ ├── 1f1fb-1f1ea.png │ │ ├── 1f1fb-1f1ec.png │ │ ├── 1f1fb-1f1ee.png │ │ ├── 1f1fb-1f1f3.png │ │ ├── 1f1fb-1f1fa.png │ │ ├── 1f1fc-1f1eb.png │ │ ├── 1f1fc-1f1f8.png │ │ ├── 1f1fd-1f1f0.png │ │ ├── 1f1fe-1f1ea.png │ │ ├── 1f1fe-1f1f9.png │ │ ├── 1f1ff-1f1e6.png │ │ ├── 1f1ff-1f1f2.png │ │ └── 1f1ff-1f1fc.png │ ├── flags │ └── 4x3 │ │ ├── ad.svg │ │ ├── ae.svg │ │ ├── af.svg │ │ ├── ag.svg │ │ ├── ai.svg │ │ ├── al.svg │ │ ├── am.svg │ │ ├── ao.svg │ │ ├── aq.svg │ │ ├── ar.svg │ │ ├── as.svg │ │ ├── at.svg │ │ ├── au.svg │ │ ├── aw.svg │ │ ├── ax.svg │ │ ├── az.svg │ │ ├── ba.svg │ │ ├── bb.svg │ │ ├── bd.svg │ │ ├── be.svg │ │ ├── bf.svg │ │ ├── bg.svg │ │ ├── bh.svg │ │ ├── bi.svg │ │ ├── bj.svg │ │ ├── bl.svg │ │ ├── bm.svg │ │ ├── bn.svg │ │ ├── bo.svg │ │ ├── bq.svg │ │ ├── br.svg │ │ ├── bs.svg │ │ ├── bt.svg │ │ ├── bv.svg │ │ ├── bw.svg │ │ ├── by.svg │ │ ├── bz.svg │ │ ├── ca.svg │ │ ├── cc.svg │ │ ├── cd.svg │ │ ├── cf.svg │ │ ├── cg.svg │ │ ├── ch.svg │ │ ├── ci.svg │ │ ├── ck.svg │ │ ├── cl.svg │ │ ├── cm.svg │ │ ├── cn.svg │ │ ├── co.svg │ │ ├── cr.svg │ │ ├── cu.svg │ │ ├── cv.svg │ │ ├── cw.svg │ │ ├── cx.svg │ │ ├── cy.svg │ │ ├── cz.svg │ │ ├── de.svg │ │ ├── dj.svg │ │ ├── dk.svg │ │ ├── dm.svg │ │ ├── do.svg │ │ ├── dz.svg │ │ ├── ec.svg │ │ ├── ee.svg │ │ ├── eg.svg │ │ ├── eh.svg │ │ ├── er.svg │ │ ├── es-ca.svg │ │ ├── es.svg │ │ ├── et.svg │ │ ├── eu.svg │ │ ├── fi.svg │ │ ├── fj.svg │ │ ├── fk.svg │ │ ├── fm.svg │ │ ├── fo.svg │ │ ├── fr.svg │ │ ├── ga.svg │ │ ├── gb-eng.svg │ │ ├── gb-nir.svg │ │ ├── gb-sct.svg │ │ ├── gb-wls.svg │ │ ├── gb.svg │ │ ├── gd.svg │ │ ├── ge.svg │ │ ├── gf.svg │ │ ├── gg.svg │ │ ├── gh.svg │ │ ├── gi.svg │ │ ├── gl.svg │ │ ├── gm.svg │ │ ├── gn.svg │ │ ├── gp.svg │ │ ├── gq.svg │ │ ├── gr.svg │ │ ├── gs.svg │ │ ├── gt.svg │ │ ├── gu.svg │ │ ├── gw.svg │ │ ├── gy.svg │ │ ├── hk.svg │ │ ├── hm.svg │ │ ├── hn.svg │ │ ├── hr.svg │ │ ├── ht.svg │ │ ├── hu.svg │ │ ├── id.svg │ │ ├── ie.svg │ │ ├── il.svg │ │ ├── im.svg │ │ ├── in.svg │ │ ├── io.svg │ │ ├── iq.svg │ │ ├── ir.svg │ │ ├── is.svg │ │ ├── it.svg │ │ ├── je.svg │ │ ├── jm.svg │ │ ├── jo.svg │ │ ├── jp.svg │ │ ├── ke.svg │ │ ├── kg.svg │ │ ├── kh.svg │ │ ├── ki.svg │ │ ├── km.svg │ │ ├── kn.svg │ │ ├── kp.svg │ │ ├── kr.svg │ │ ├── kw.svg │ │ ├── ky.svg │ │ ├── kz.svg │ │ ├── la.svg │ │ ├── lb.svg │ │ ├── lc.svg │ │ ├── li.svg │ │ ├── lk.svg │ │ ├── lr.svg │ │ ├── ls.svg │ │ ├── lt.svg │ │ ├── lu.svg │ │ ├── lv.svg │ │ ├── ly.svg │ │ ├── ma.svg │ │ ├── mc.svg │ │ ├── md.svg │ │ ├── me.svg │ │ ├── mf.svg │ │ ├── mg.svg │ │ ├── mh.svg │ │ ├── mk.svg │ │ ├── ml.svg │ │ ├── mm.svg │ │ ├── mn.svg │ │ ├── mo.svg │ │ ├── mp.svg │ │ ├── mq.svg │ │ ├── mr.svg │ │ ├── ms.svg │ │ ├── mt.svg │ │ ├── mu.svg │ │ ├── mv.svg │ │ ├── mw.svg │ │ ├── mx.svg │ │ ├── my.svg │ │ ├── mz.svg │ │ ├── na.svg │ │ ├── nc.svg │ │ ├── ne.svg │ │ ├── nf.svg │ │ ├── ng.svg │ │ ├── ni.svg │ │ ├── nl.svg │ │ ├── no.svg │ │ ├── np.svg │ │ ├── nr.svg │ │ ├── nu.svg │ │ ├── nz.svg │ │ ├── om.svg │ │ ├── pa.svg │ │ ├── pe.svg │ │ ├── pf.svg │ │ ├── pg.svg │ │ ├── ph.svg │ │ ├── pk.svg │ │ ├── pl.svg │ │ ├── pm.svg │ │ ├── pn.svg │ │ ├── pr.svg │ │ ├── ps.svg │ │ ├── pt.svg │ │ ├── pw.svg │ │ ├── py.svg │ │ ├── qa.svg │ │ ├── re.svg │ │ ├── ro.svg │ │ ├── rs.svg │ │ ├── ru.svg │ │ ├── rw.svg │ │ ├── sa.svg │ │ ├── sb.svg │ │ ├── sc.svg │ │ ├── sd.svg │ │ ├── se.svg │ │ ├── sg.svg │ │ ├── sh.svg │ │ ├── si.svg │ │ ├── sj.svg │ │ ├── sk.svg │ │ ├── sl.svg │ │ ├── sm.svg │ │ ├── sn.svg │ │ ├── so.svg │ │ ├── sr.svg │ │ ├── ss.svg │ │ ├── st.svg │ │ ├── sv.svg │ │ ├── sx.svg │ │ ├── sy.svg │ │ ├── sz.svg │ │ ├── tc.svg │ │ ├── td.svg │ │ ├── tf.svg │ │ ├── tg.svg │ │ ├── th.svg │ │ ├── tj.svg │ │ ├── tk.svg │ │ ├── tl.svg │ │ ├── tm.svg │ │ ├── tn.svg │ │ ├── to.svg │ │ ├── tr.svg │ │ ├── tt.svg │ │ ├── tv.svg │ │ ├── tw.svg │ │ ├── tz.svg │ │ ├── ua.svg │ │ ├── ug.svg │ │ ├── um.svg │ │ ├── un.svg │ │ ├── us.svg │ │ ├── uy.svg │ │ ├── uz.svg │ │ ├── va.svg │ │ ├── vc.svg │ │ ├── ve.svg │ │ ├── vg.svg │ │ ├── vi.svg │ │ ├── vn.svg │ │ ├── vu.svg │ │ ├── wf.svg │ │ ├── ws.svg │ │ ├── xk.svg │ │ ├── ye.svg │ │ ├── yt.svg │ │ ├── za.svg │ │ ├── zm.svg │ │ └── zw.svg │ ├── img │ ├── client.svg │ ├── pdnsd.svg │ ├── site_icon1_01.png │ ├── site_icon1_02.png │ ├── site_icon1_03.png │ ├── site_icon1_04.png │ ├── site_icon_01.png │ ├── site_icon_02.png │ ├── site_icon_03.png │ ├── site_icon_04.png │ ├── socks5.svg │ ├── switch.png │ └── udp.svg │ ├── jquery.min.js │ ├── polyfill.js │ ├── sweetalert.js │ └── vssr.js ├── luci-app-wrtbwmon ├── Makefile ├── luasrc │ ├── controller │ │ └── wrtbwmon.lua │ ├── model │ │ └── cbi │ │ │ └── wrtbwmon │ │ │ ├── config.lua │ │ │ └── custom.lua │ └── view │ │ └── wrtbwmon.htm ├── po │ ├── zh-cn │ │ └── wrtbwmon.po │ └── zh_Hans └── root │ └── etc │ └── uci-defaults │ └── luci-wrtbwmon ├── 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-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 ├── luci-theme-argon ├── Makefile ├── Screenshots │ ├── screenshot_pc.jpg │ └── screenshot_phone.jpg ├── htdocs │ └── luci-static │ │ └── argon │ │ ├── css │ │ ├── cascade.css │ │ ├── dark.css │ │ ├── fonts.css │ │ └── pure-min.css │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── TypoGraphica.eot │ │ ├── TypoGraphica.svg │ │ ├── TypoGraphica.ttf │ │ ├── TypoGraphica.woff │ │ ├── argon.eot │ │ ├── argon.svg │ │ ├── argon.ttf │ │ └── argon.woff │ │ ├── icon │ │ ├── android-icon-192x192.png │ │ ├── apple-icon-144x144.png │ │ ├── apple-icon-60x60.png │ │ ├── apple-icon-72x72.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── manifest.json │ │ └── ms-icon-144x144.png │ │ ├── img │ │ ├── add.webp │ │ ├── argon.svg │ │ ├── bg1.jpg │ │ ├── blank.png │ │ ├── edit.webp │ │ ├── fieldadd.webp │ │ ├── file.webp │ │ ├── find.webp │ │ ├── folder.webp │ │ ├── link.webp │ │ ├── reload.webp │ │ ├── remove.webp │ │ ├── trafficbar.png │ │ ├── volume_high.svg │ │ └── volume_off.svg │ │ ├── js │ │ ├── color_calc-argon.js │ │ ├── jquery.min.js │ │ ├── menu-argon.js │ │ ├── sidebar-argon.js │ │ └── styles-argon.js │ │ └── less │ │ ├── cascade.less │ │ └── dark.less ├── luasrc │ └── view │ │ └── themes │ │ └── argon │ │ ├── footer.htm │ │ ├── header.htm │ │ ├── header_login.htm │ │ ├── out_header_login.htm │ │ └── sysauth.htm └── root │ ├── etc │ └── uci-defaults │ │ └── 90_luci-theme-argon │ └── usr │ └── libexec │ └── argon │ └── online_wallpaper ├── luci-theme-atmaterial ├── Makefile └── files │ ├── 30_luci-theme-atmaterial │ ├── htdocs │ ├── css │ │ └── style.css │ ├── favicon.ico │ ├── fonts │ │ ├── Roboto-Medium-webfont.woff │ │ ├── Roboto-Regular-webfont.woff │ │ ├── advancedtomato.eot │ │ ├── advancedtomato.svg │ │ ├── advancedtomato.ttf │ │ ├── advancedtomato.woff │ │ ├── font.eot │ │ ├── font.svg │ │ ├── font.ttf │ │ └── font.woff │ ├── js │ │ ├── jquery.min.js │ │ └── script.js │ └── logo.png │ └── templates │ ├── footer.htm │ └── header.htm ├── luci-theme-atmaterial_new ├── Makefile ├── htdocs │ └── luci-static │ │ ├── atmaterial │ │ ├── css │ │ │ └── style.css │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── Roboto-Medium-webfont.woff │ │ │ ├── Roboto-Regular-webfont.woff │ │ │ ├── advancedtomato.eot │ │ │ ├── advancedtomato.svg │ │ │ ├── advancedtomato.ttf │ │ │ ├── advancedtomato.woff │ │ │ ├── font.eot │ │ │ ├── font.svg │ │ │ ├── font.ttf │ │ │ └── font.woff │ │ ├── js │ │ │ ├── jquery.min.js │ │ │ └── script.js │ │ └── logo.png │ │ ├── atmaterial_brown │ │ ├── css │ │ │ └── style.css │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── Roboto-Medium-webfont.woff │ │ │ ├── Roboto-Regular-webfont.woff │ │ │ ├── advancedtomato.eot │ │ │ ├── advancedtomato.svg │ │ │ ├── advancedtomato.ttf │ │ │ ├── advancedtomato.woff │ │ │ ├── font.eot │ │ │ ├── font.svg │ │ │ ├── font.ttf │ │ │ └── font.woff │ │ ├── js │ │ │ ├── jquery.min.js │ │ │ └── script.js │ │ └── logo.png │ │ └── atmaterial_red │ │ ├── css │ │ └── style.css │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── Roboto-Medium-webfont.woff │ │ ├── Roboto-Regular-webfont.woff │ │ ├── advancedtomato.eot │ │ ├── advancedtomato.svg │ │ ├── advancedtomato.ttf │ │ ├── advancedtomato.woff │ │ ├── font.eot │ │ ├── font.svg │ │ ├── font.ttf │ │ └── font.woff │ │ ├── js │ │ ├── jquery.min.js │ │ └── script.js │ │ └── logo.png ├── luasrc │ └── view │ │ └── themes │ │ ├── atmaterial │ │ ├── footer.htm │ │ └── header.htm │ │ ├── atmaterial_brown │ │ ├── footer.htm │ │ └── header.htm │ │ └── atmaterial_red │ │ ├── footer.htm │ │ └── header.htm └── root │ └── etc │ └── uci-defaults │ └── 30_luci-theme-atmaterial_new ├── luci-theme-edge ├── Makefile ├── htdocs │ └── luci-static │ │ └── edge │ │ ├── background │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ └── 3.jpg │ │ ├── cascade.css │ │ ├── custom.css │ │ ├── favicon.ico │ │ ├── fonts │ │ └── argon.woff │ │ ├── glare.svg │ │ ├── icons │ │ ├── arrow.svg │ │ └── spinner.svg │ │ ├── js │ │ ├── jquery.min.js │ │ └── script.js │ │ ├── landscape.css │ │ ├── logo.png │ │ └── sun.svg ├── luasrc │ └── view │ │ ├── header_login.htm │ │ └── themes │ │ └── edge │ │ ├── footer.htm │ │ ├── header.htm │ │ ├── header_login.htm │ │ └── sysauth.htm └── root │ └── etc │ └── uci-defaults │ └── 30_luci-theme-edge ├── luci-theme-infinityfreedom ├── Makefile └── files │ ├── 10_luci-theme-infinityfreedom │ ├── htdocs │ ├── css │ │ └── style.css │ ├── favicon.ico │ ├── fonts │ │ ├── Roboto-Medium-webfont.woff │ │ ├── Roboto-Regular-webfont.woff │ │ ├── font.eot │ │ ├── font.svg │ │ ├── font.ttf │ │ ├── font.woff │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ ├── images │ │ ├── main_bg.jpg │ │ └── main_bg_5k.jpg │ ├── js │ │ ├── jquery.min.js │ │ └── script.js │ └── logo.png │ └── templates │ ├── footer.htm │ └── header.htm ├── luci-theme-neobird ├── Makefile ├── htdocs │ └── luci-static │ │ └── neobird │ │ ├── css │ │ └── style.css │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── font.eot │ │ ├── font.svg │ │ ├── font.ttf │ │ ├── font.woff │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 │ │ ├── images │ │ ├── add.png │ │ ├── bridge.png │ │ ├── ethernet.png │ │ ├── ethernet_disabled.png │ │ ├── home.png │ │ ├── icon.png │ │ ├── link.png │ │ ├── loading.gif │ │ ├── logo.png │ │ ├── logod.png │ │ ├── mlogo.png │ │ ├── mlogod.png │ │ ├── port_up.png │ │ ├── rank.png │ │ ├── reload.png │ │ ├── remove.png │ │ ├── splash.png │ │ ├── ssr.png │ │ └── user.png │ │ ├── js │ │ ├── jquery.min.js │ │ └── script.js │ │ └── manifest.json ├── luasrc │ └── view │ │ └── themes │ │ └── neobird │ │ ├── footer.htm │ │ └── header.htm ├── preview │ ├── IMG_6474.PNG │ ├── IMG_6475.PNG │ ├── IMG_6476.PNG │ ├── IMG_6478.PNG │ ├── IMG_6479.PNG │ ├── IMG_6480.PNG │ ├── IMG_6481.PNG │ ├── SCR-20220223-iw6.png │ ├── SCR-20220223-iwe.png │ ├── SCR-20220223-iwp.png │ ├── SCR-20220223-ix1.png │ ├── SCR-20220223-ixs.png │ ├── SCR-20220223-j1l.png │ ├── SCR-20220514-d0j.png │ ├── SCR-20220514-d1g.png │ └── SCR-20220514-d1n.png └── root │ └── etc │ └── uci-defaults │ └── 30_luci-theme-neobird ├── luci-theme-netgear ├── Makefile ├── htdocs │ └── luci-static │ │ └── netgear │ │ ├── css │ │ └── style.css │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── Roboto-Medium-webfont.woff │ │ ├── Roboto-Regular-webfont.woff │ │ ├── advancedtomato.eot │ │ ├── advancedtomato.svg │ │ ├── advancedtomato.ttf │ │ ├── advancedtomato.woff │ │ ├── font.eot │ │ ├── font.svg │ │ ├── font.ttf │ │ └── font.woff │ │ ├── js │ │ ├── jquery.min.js │ │ └── script.js │ │ ├── logo.png │ │ └── nlogo.png ├── luasrc │ └── view │ │ └── themes │ │ └── netgear │ │ ├── footer.htm │ │ └── header.htm └── root │ └── etc │ └── uci-defaults │ └── 30_luci-theme-netgear ├── luci-theme-opentomato ├── Makefile ├── htdocs │ └── luci-static │ │ └── opentomato │ │ ├── cascade.css │ │ ├── favicon.ico │ │ ├── fonts.css │ │ ├── fonts │ │ ├── Roboto-Medium-webfont.woff │ │ ├── Roboto-Regular-webfont.woff │ │ ├── advancedtomato.eot │ │ ├── advancedtomato.svg │ │ ├── advancedtomato.ttf │ │ ├── advancedtomato.woff │ │ ├── font.eot │ │ ├── font.svg │ │ ├── font.ttf │ │ └── font.woff │ │ ├── icons │ │ ├── arrow.svg │ │ ├── logo.svg │ │ ├── logout.svg │ │ ├── menu.svg │ │ └── spinner.svg │ │ └── js │ │ ├── jquery.min.js │ │ └── script.js ├── luasrc │ └── view │ │ └── themes │ │ └── opentomato │ │ ├── footer.htm │ │ └── header.htm └── root │ └── etc │ └── uci-defaults │ └── 30_luci-theme-opentomato ├── luci-theme-opentomcat ├── Makefile └── files │ ├── 30_luci-theme-opentomcat │ ├── htdocs │ ├── css │ │ └── style.css │ ├── favicon.ico │ ├── fonts │ │ ├── Roboto-Medium-webfont.woff │ │ ├── Roboto-Regular-webfont.woff │ │ ├── advancedtomato.eot │ │ ├── advancedtomato.svg │ │ ├── advancedtomato.ttf │ │ ├── advancedtomato.woff │ │ ├── font.eot │ │ ├── font.svg │ │ ├── font.ttf │ │ └── font.woff │ ├── js │ │ ├── jquery.min.js │ │ └── script.js │ └── logo.png │ └── templates │ ├── footer.htm │ └── header.htm ├── luci-theme-rosy ├── Makefile ├── htdocs │ └── luci-static │ │ └── rosy │ │ ├── cascade.css │ │ ├── cl-eye.png │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── font.eot │ │ ├── font.svg │ │ ├── font.ttf │ │ └── font.woff │ │ ├── js │ │ ├── ScrollY.js │ │ ├── jquery.min.js │ │ └── script.js │ │ ├── loading.svg │ │ ├── loginBG.png │ │ ├── logo.png │ │ ├── menu-logo.png │ │ ├── mobile-loginBG.png │ │ ├── no-pwd.png │ │ ├── op-eye.png │ │ ├── pwd.png │ │ └── user.png ├── luasrc │ └── view │ │ └── themes │ │ └── rosy │ │ ├── footer.htm │ │ └── header.htm └── root │ └── etc │ └── uci-defaults │ └── 30_luci-theme-rosy ├── mentohust ├── Makefile ├── files │ ├── mentohust.conf │ └── mentohust.init └── src │ ├── Makefile │ ├── dlfunc.c │ ├── dlfunc.h │ ├── md5.c │ ├── md5.h │ ├── mentohust.c │ ├── mycheck.c │ ├── mycheck.h │ ├── myconfig.c │ ├── myconfig.h │ ├── myfunc.c │ ├── myfunc.h │ ├── myini.c │ ├── myini.h │ ├── mystate.c │ ├── mystate.h │ ├── strnormalize.c │ ├── strnormalize.h │ └── types.h ├── mosdns ├── Makefile └── patches │ ├── 201-compatible-with-go1.20.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 ├── oaf ├── Makefile └── src │ ├── Makefile │ ├── af_client.c │ ├── af_client.h │ ├── af_client_fs.c │ ├── af_client_fs.h │ ├── af_log.c │ ├── af_log.h │ ├── af_utils.c │ ├── af_utils.h │ ├── app_filter.c │ ├── app_filter.h │ ├── app_filter_config.c │ ├── cJSON.c │ ├── cJSON.h │ └── regexp.c ├── open-app-filter ├── Makefile ├── files │ ├── appfilter.config │ ├── appfilter.init │ ├── feature_cn.cfg │ ├── feature_en.cfg │ ├── gen_class.sh │ └── oaf_rule └── 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-passwall ├── brook │ └── Makefile ├── chinadns-ng │ └── Makefile ├── dns2socks │ └── Makefile ├── dns2tcp │ └── Makefile ├── gn │ ├── Makefile │ ├── patches │ │ └── 010-gcc.patch │ └── src │ │ └── out │ │ └── last_commit_position.h ├── hysteria │ └── Makefile ├── ipt2socks │ └── Makefile ├── microsocks │ └── Makefile ├── naiveproxy │ ├── Makefile │ └── src │ │ └── init_env.sh ├── pdnsd-alt │ ├── Makefile │ ├── files │ │ └── pdnsd.init │ └── patches │ │ ├── 010-no-doc-and-test.patch │ │ └── 020-headers.patch ├── shadowsocks-rust │ └── Makefile ├── shadowsocksr-libev │ ├── Makefile │ ├── patches │ │ ├── 0001-Add-ss-server-and-ss-check.patch │ │ ├── 0002-Revert-verify_simple-and-auth_simple.patch │ │ ├── 0003-Refine-Usage.patch │ │ ├── 100-fix-gcc-10.patch │ │ ├── 101-Fix-Werror-sizeof-pointer-memaccess.patch │ │ ├── 102-Read-listening-mode-from-config.patch │ │ └── 103-Add-TPROXY-support-for-TCP-ssr-redir.patch │ └── src │ │ └── server │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── acl.c │ │ ├── acl.h │ │ ├── auth.c │ │ ├── auth.h │ │ ├── base64.c │ │ ├── base64.h │ │ ├── cache.c │ │ ├── cache.h │ │ ├── check.c │ │ ├── common.h │ │ ├── crc32.c │ │ ├── encrypt.c │ │ ├── encrypt.h │ │ ├── http.c │ │ ├── http.h │ │ ├── http_simple.c │ │ ├── http_simple.h │ │ ├── jconf.c │ │ ├── jconf.h │ │ ├── json.c │ │ ├── json.h │ │ ├── list.c │ │ ├── list.h │ │ ├── netutils.c │ │ ├── netutils.h │ │ ├── obfs.c │ │ ├── obfs.h │ │ ├── obfsutil.c │ │ ├── protocol.h │ │ ├── resolv.c │ │ ├── resolv.h │ │ ├── rule.c │ │ ├── rule.h │ │ ├── server.c │ │ ├── server.h │ │ ├── tls.c │ │ ├── tls.h │ │ ├── tls1.2_ticket.c │ │ ├── tls1.2_ticket.h │ │ ├── udprelay.c │ │ ├── udprelay.h │ │ ├── uthash.h │ │ ├── utils.c │ │ ├── utils.h │ │ ├── verify.c │ │ └── verify.h ├── simple-obfs │ └── Makefile ├── sing-box │ ├── Makefile │ └── files │ │ ├── config.json.example │ │ └── sing-box.init ├── ssocks │ ├── Makefile │ └── patches │ │ ├── 001-fix.patch │ │ └── 002-gcc10.patch ├── tcping │ └── Makefile ├── trojan-go │ └── Makefile ├── trojan-plus │ └── Makefile ├── trojan │ ├── Makefile │ └── patches │ │ └── 001-force-openssl-version.patch ├── tuic-client │ └── Makefile ├── v2ray-core │ ├── Makefile │ └── files │ │ ├── v2ray.conf │ │ └── v2ray.init ├── v2ray-geodata │ └── Makefile ├── v2ray-plugin │ └── Makefile ├── xray-core │ ├── Makefile │ └── files │ │ ├── config.json.example │ │ ├── vpoint_socks_vmess.json │ │ ├── vpoint_vmess_freedom.json │ │ ├── xray.conf │ │ └── xray.init └── xray-plugin │ └── Makefile ├── qBittorrent-Enhanced-Edition ├── Makefile └── patches │ ├── 001-remove-host-include-dir.patch │ └── 100-use-original-user-agent.patch ├── quickstart ├── Makefile └── files │ ├── quickstart.config │ ├── quickstart.hotplug │ ├── quickstart.init │ └── quickstart.uci-default ├── smartdns └── Makefile ├── taskd ├── Makefile └── files │ ├── taskd.sh │ └── tasks.init ├── udp2raw └── Makefile ├── unishare ├── Makefile └── files │ ├── unishare.config │ └── unishare.init ├── v2dat ├── Makefile └── patches │ └── 100-format-logtime.patch ├── webdav2 ├── Makefile └── files │ ├── webdav2.config │ └── webdav2.init └── wrtbwmon ├── Makefile └── net ├── etc ├── config │ └── wrtbwmon ├── hotplug.d │ └── iface │ │ └── 99-wrtbwmon └── init.d │ └── wrtbwmon └── usr ├── sbin ├── readDB.awk └── wrtbwmon └── share └── wrtbwmon ├── usage.htm1 └── usage.htm2 /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/README.md -------------------------------------------------------------------------------- /UnblockNeteaseMusic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/UnblockNeteaseMusic/Makefile -------------------------------------------------------------------------------- /adguardhome/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/adguardhome/Makefile -------------------------------------------------------------------------------- /adguardhome/files/adguardhome.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/adguardhome/files/adguardhome.config -------------------------------------------------------------------------------- /adguardhome/files/adguardhome.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/adguardhome/files/adguardhome.init -------------------------------------------------------------------------------- /alist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/alist/Makefile -------------------------------------------------------------------------------- /alist/files/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/alist/files/assets/logo.svg -------------------------------------------------------------------------------- /aliyundrive-fuse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/aliyundrive-fuse/Makefile -------------------------------------------------------------------------------- /aliyundrive-fuse/files/aliyundrive-fuse.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/aliyundrive-fuse/files/aliyundrive-fuse.config -------------------------------------------------------------------------------- /aliyundrive-fuse/files/aliyundrive-fuse.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/aliyundrive-fuse/files/aliyundrive-fuse.init -------------------------------------------------------------------------------- /aliyundrive-webdav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/aliyundrive-webdav/Makefile -------------------------------------------------------------------------------- /aliyundrive-webdav/files/aliyundrive-webdav.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/aliyundrive-webdav/files/aliyundrive-webdav.init -------------------------------------------------------------------------------- /app-store-ui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/app-store-ui/Makefile -------------------------------------------------------------------------------- /app-store-ui/src/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/app-store-ui/src/dist/index.html -------------------------------------------------------------------------------- /app-store-ui/src/dist/luci-static/istore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/app-store-ui/src/dist/luci-static/istore/index.js -------------------------------------------------------------------------------- /ddns-go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/ddns-go/Makefile -------------------------------------------------------------------------------- /ddns-go/file/ddns-go.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/ddns-go/file/ddns-go.init -------------------------------------------------------------------------------- /ddns-go/file/luci-ddns-go.uci-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/ddns-go/file/luci-ddns-go.uci-default -------------------------------------------------------------------------------- /ddnsto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/ddnsto/Makefile -------------------------------------------------------------------------------- /ddnsto/files/ddnsto-monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/ddnsto/files/ddnsto-monitor.sh -------------------------------------------------------------------------------- /ddnsto/files/ddnsto.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/ddnsto/files/ddnsto.config -------------------------------------------------------------------------------- /ddnsto/files/ddnsto.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/ddnsto/files/ddnsto.init -------------------------------------------------------------------------------- /ddnsto/files/ddnsto.uci-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/ddnsto/files/ddnsto.uci-default -------------------------------------------------------------------------------- /gost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/gost/Makefile -------------------------------------------------------------------------------- /gost/files/gost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/gost/files/gost.config -------------------------------------------------------------------------------- /gost/files/gost.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/gost/files/gost.init -------------------------------------------------------------------------------- /gowebdav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/gowebdav/Makefile -------------------------------------------------------------------------------- /gowebdav/files/gowebdav.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/gowebdav/files/gowebdav.config -------------------------------------------------------------------------------- /gowebdav/files/gowebdav.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/gowebdav/files/gowebdav.init -------------------------------------------------------------------------------- /helloworld/chinadns-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/chinadns-ng/Makefile -------------------------------------------------------------------------------- /helloworld/dns2socks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/dns2socks/Makefile -------------------------------------------------------------------------------- /helloworld/dns2tcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/dns2tcp/Makefile -------------------------------------------------------------------------------- /helloworld/gn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/gn/Makefile -------------------------------------------------------------------------------- /helloworld/gn/patches/010-gcc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/gn/patches/010-gcc.patch -------------------------------------------------------------------------------- /helloworld/gn/src/out/last_commit_position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/gn/src/out/last_commit_position.h -------------------------------------------------------------------------------- /helloworld/hysteria/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/hysteria/Makefile -------------------------------------------------------------------------------- /helloworld/ipt2socks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/ipt2socks/Makefile -------------------------------------------------------------------------------- /helloworld/lua-neturl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/lua-neturl/Makefile -------------------------------------------------------------------------------- /helloworld/microsocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/microsocks/Makefile -------------------------------------------------------------------------------- /helloworld/mosdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/mosdns/Makefile -------------------------------------------------------------------------------- /helloworld/naiveproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/naiveproxy/Makefile -------------------------------------------------------------------------------- /helloworld/naiveproxy/patches/100-macros.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/naiveproxy/patches/100-macros.patch -------------------------------------------------------------------------------- /helloworld/naiveproxy/src/init_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/naiveproxy/src/init_env.sh -------------------------------------------------------------------------------- /helloworld/redsocks2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/redsocks2/Makefile -------------------------------------------------------------------------------- /helloworld/shadow-tls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadow-tls/Makefile -------------------------------------------------------------------------------- /helloworld/shadowsocks-rust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocks-rust/Makefile -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/Makefile -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/acl.c -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/acl.h -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/auth.c -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/auth.h -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/base64.c -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/base64.h -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/cache.c -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/cache.h -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/check.c -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/common.h -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/crc32.c -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/http.c -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/http.h -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/jconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/jconf.c -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/jconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/jconf.h -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/json.c -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/json.h -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/list.c -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/list.h -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/obfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/obfs.c -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/obfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/obfs.h -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/resolv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/resolv.c -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/resolv.h -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/rule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/rule.c -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/rule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/rule.h -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/server.c -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/server.h -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/tls.c -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/tls.h -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/uthash.h -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/utils.c -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/utils.h -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/verify.c -------------------------------------------------------------------------------- /helloworld/shadowsocksr-libev/src/server/verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/shadowsocksr-libev/src/server/verify.h -------------------------------------------------------------------------------- /helloworld/simple-obfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/simple-obfs/Makefile -------------------------------------------------------------------------------- /helloworld/tcping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/tcping/Makefile -------------------------------------------------------------------------------- /helloworld/trojan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/trojan/Makefile -------------------------------------------------------------------------------- /helloworld/tuic-client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/tuic-client/Makefile -------------------------------------------------------------------------------- /helloworld/v2ray-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/v2ray-core/Makefile -------------------------------------------------------------------------------- /helloworld/v2ray-plugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/v2ray-plugin/Makefile -------------------------------------------------------------------------------- /helloworld/v2raya/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/v2raya/Makefile -------------------------------------------------------------------------------- /helloworld/v2raya/files/v2raya.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/v2raya/files/v2raya.config -------------------------------------------------------------------------------- /helloworld/v2raya/files/v2raya.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/v2raya/files/v2raya.init -------------------------------------------------------------------------------- /helloworld/v2raya/patches/100-compat-v5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/v2raya/patches/100-compat-v5.patch -------------------------------------------------------------------------------- /helloworld/xray-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/xray-core/Makefile -------------------------------------------------------------------------------- /helloworld/xray-plugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/helloworld/xray-plugin/Makefile -------------------------------------------------------------------------------- /homebox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/homebox/Makefile -------------------------------------------------------------------------------- /iptvhelper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/iptvhelper/Makefile -------------------------------------------------------------------------------- /iptvhelper/files/etc/config/iptvhelper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/iptvhelper/files/etc/config/iptvhelper -------------------------------------------------------------------------------- /iptvhelper/files/etc/firewall.iptvhelper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/iptvhelper/files/etc/firewall.iptvhelper -------------------------------------------------------------------------------- /iptvhelper/files/etc/init.d/iptvhelper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/iptvhelper/files/etc/init.d/iptvhelper -------------------------------------------------------------------------------- /iptvhelper/files/usr/sbin/iptvhelper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/iptvhelper/files/usr/sbin/iptvhelper.sh -------------------------------------------------------------------------------- /linkease/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/linkease/Makefile -------------------------------------------------------------------------------- /linkease/files/aria2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/linkease/files/aria2.sh -------------------------------------------------------------------------------- /linkease/files/linkease-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/linkease/files/linkease-config.sh -------------------------------------------------------------------------------- /linkease/files/linkease.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/linkease/files/linkease.config -------------------------------------------------------------------------------- /linkease/files/linkease.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/linkease/files/linkease.init -------------------------------------------------------------------------------- /linkease/files/linkease.uci-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/linkease/files/linkease.uci-default -------------------------------------------------------------------------------- /lua-maxminddb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/lua-maxminddb/Makefile -------------------------------------------------------------------------------- /luci-app-adguardhome/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-adguardhome/Makefile -------------------------------------------------------------------------------- /luci-app-adguardhome/po/zh-cn/AdGuardHome.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-adguardhome/po/zh-cn/AdGuardHome.po -------------------------------------------------------------------------------- /luci-app-adguardhome/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-adguardhome/root/etc/config/AdGuardHome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-adguardhome/root/etc/config/AdGuardHome -------------------------------------------------------------------------------- /luci-app-adguardhome/root/etc/init.d/AdGuardHome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-adguardhome/root/etc/init.d/AdGuardHome -------------------------------------------------------------------------------- /luci-app-advanced/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-advanced/Makefile -------------------------------------------------------------------------------- /luci-app-advanced/luasrc/controller/advanced.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-advanced/luasrc/controller/advanced.lua -------------------------------------------------------------------------------- /luci-app-advanced/luasrc/model/cbi/advanced.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-advanced/luasrc/model/cbi/advanced.lua -------------------------------------------------------------------------------- /luci-app-advanced/luasrc/view/fileassistant.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-advanced/luasrc/view/fileassistant.htm -------------------------------------------------------------------------------- /luci-app-advanced/luasrc/view/filebrowser.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-advanced/luasrc/view/filebrowser.htm -------------------------------------------------------------------------------- /luci-app-advanced/root/bin/ipmode4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-advanced/root/bin/ipmode4 -------------------------------------------------------------------------------- /luci-app-advanced/root/bin/ipmode6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-advanced/root/bin/ipmode6 -------------------------------------------------------------------------------- /luci-app-advanced/root/bin/normalmode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-advanced/root/bin/normalmode -------------------------------------------------------------------------------- /luci-app-advanced/root/bin/nuc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-advanced/root/bin/nuc -------------------------------------------------------------------------------- /luci-app-advanced/root/etc/config/advanced: -------------------------------------------------------------------------------- 1 | config advanced 2 | option enabled '1' 3 | -------------------------------------------------------------------------------- /luci-app-aliddns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-aliddns/Makefile -------------------------------------------------------------------------------- /luci-app-aliddns/files/luci/i18n/aliddns.zh-cn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-aliddns/files/luci/i18n/aliddns.zh-cn.po -------------------------------------------------------------------------------- /luci-app-aliddns/files/luci/model/cbi/aliddns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-aliddns/files/luci/model/cbi/aliddns.lua -------------------------------------------------------------------------------- /luci-app-aliddns/files/root/etc/config/aliddns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-aliddns/files/root/etc/config/aliddns -------------------------------------------------------------------------------- /luci-app-aliddns/files/root/etc/init.d/aliddns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-aliddns/files/root/etc/init.d/aliddns -------------------------------------------------------------------------------- /luci-app-aliddns/files/root/usr/sbin/aliddns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-aliddns/files/root/usr/sbin/aliddns -------------------------------------------------------------------------------- /luci-app-aliddns/tools/po2lmo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-aliddns/tools/po2lmo/Makefile -------------------------------------------------------------------------------- /luci-app-aliddns/tools/po2lmo/src/po2lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-aliddns/tools/po2lmo/src/po2lmo.c -------------------------------------------------------------------------------- /luci-app-aliddns/tools/po2lmo/src/template_lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-aliddns/tools/po2lmo/src/template_lmo.c -------------------------------------------------------------------------------- /luci-app-aliddns/tools/po2lmo/src/template_lmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-aliddns/tools/po2lmo/src/template_lmo.h -------------------------------------------------------------------------------- /luci-app-alist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-alist/Makefile -------------------------------------------------------------------------------- /luci-app-alist/luasrc/controller/alist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-alist/luasrc/controller/alist.lua -------------------------------------------------------------------------------- /luci-app-alist/luasrc/model/cbi/alist/basic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-alist/luasrc/model/cbi/alist/basic.lua -------------------------------------------------------------------------------- /luci-app-alist/luasrc/model/cbi/alist/log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-alist/luasrc/model/cbi/alist/log.lua -------------------------------------------------------------------------------- /luci-app-alist/luasrc/view/alist/admin_info.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-alist/luasrc/view/alist/admin_info.htm -------------------------------------------------------------------------------- /luci-app-alist/luasrc/view/alist/alist_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-alist/luasrc/view/alist/alist_log.htm -------------------------------------------------------------------------------- /luci-app-alist/luasrc/view/alist/alist_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-alist/luasrc/view/alist/alist_status.htm -------------------------------------------------------------------------------- /luci-app-alist/po/zh-cn/alist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-alist/po/zh-cn/alist.po -------------------------------------------------------------------------------- /luci-app-alist/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-alist/root/etc/alist/data.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-alist/root/etc/alist/data.db -------------------------------------------------------------------------------- /luci-app-alist/root/etc/config/alist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-alist/root/etc/config/alist -------------------------------------------------------------------------------- /luci-app-alist/root/etc/init.d/alist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-alist/root/etc/init.d/alist -------------------------------------------------------------------------------- /luci-app-alist/root/etc/uci-defaults/luci-alist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-alist/root/etc/uci-defaults/luci-alist -------------------------------------------------------------------------------- /luci-app-aliyundrive-fuse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-aliyundrive-fuse/Makefile -------------------------------------------------------------------------------- /luci-app-aliyundrive-fuse/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-aliyundrive-webdav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-aliyundrive-webdav/Makefile -------------------------------------------------------------------------------- /luci-app-aliyundrive-webdav/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-amlogic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-amlogic/Makefile -------------------------------------------------------------------------------- /luci-app-amlogic/luasrc/controller/amlogic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-amlogic/luasrc/controller/amlogic.lua -------------------------------------------------------------------------------- /luci-app-amlogic/po/zh-cn/amlogic.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-amlogic/po/zh-cn/amlogic.po -------------------------------------------------------------------------------- /luci-app-amlogic/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-amlogic/root/etc/config/amlogic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-amlogic/root/etc/config/amlogic -------------------------------------------------------------------------------- /luci-app-amlogic/root/etc/init.d/amlogic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-amlogic/root/etc/init.d/amlogic -------------------------------------------------------------------------------- /luci-app-amlogic/root/usr/sbin/fixcpufreq.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-amlogic/root/usr/sbin/fixcpufreq.pl -------------------------------------------------------------------------------- /luci-app-amlogic/root/usr/sbin/openwrt-backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-amlogic/root/usr/sbin/openwrt-backup -------------------------------------------------------------------------------- /luci-app-amlogic/root/usr/sbin/openwrt-ddbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-amlogic/root/usr/sbin/openwrt-ddbr -------------------------------------------------------------------------------- /luci-app-amlogic/root/usr/sbin/openwrt-kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-amlogic/root/usr/sbin/openwrt-kernel -------------------------------------------------------------------------------- /luci-app-amlogic/root/usr/sbin/openwrt-update-kvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-amlogic/root/usr/sbin/openwrt-update-kvm -------------------------------------------------------------------------------- /luci-app-argon-config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-argon-config/Makefile -------------------------------------------------------------------------------- /luci-app-argon-config/po/es/argon-config.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-argon-config/po/es/argon-config.po -------------------------------------------------------------------------------- /luci-app-argon-config/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-argon-config/po/zh_Hans/argon-config.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-argon-config/po/zh_Hans/argon-config.po -------------------------------------------------------------------------------- /luci-app-argon-config/po/zh_Hant/argon-config.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-argon-config/po/zh_Hant/argon-config.po -------------------------------------------------------------------------------- /luci-app-argon-config/root/etc/config/argon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-argon-config/root/etc/config/argon -------------------------------------------------------------------------------- /luci-app-autorepeater/.directory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-autorepeater/.directory -------------------------------------------------------------------------------- /luci-app-autorepeater/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-autorepeater/Makefile -------------------------------------------------------------------------------- /luci-app-autorepeater/files/95-upnpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-autorepeater/files/95-upnpc -------------------------------------------------------------------------------- /luci-app-autorepeater/files/autorepeater.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-autorepeater/files/autorepeater.config -------------------------------------------------------------------------------- /luci-app-autorepeater/files/autorepeater.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-autorepeater/files/autorepeater.init -------------------------------------------------------------------------------- /luci-app-autorepeater/files/rfkill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-autorepeater/files/rfkill.sh -------------------------------------------------------------------------------- /luci-app-autorepeater/files/scan_mac80211.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-autorepeater/files/scan_mac80211.awk -------------------------------------------------------------------------------- /luci-app-autorepeater/files/scan_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-autorepeater/files/scan_wifi.sh -------------------------------------------------------------------------------- /luci-app-autorepeater/tools/lmotool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-autorepeater/tools/lmotool/Makefile -------------------------------------------------------------------------------- /luci-app-autorepeater/tools/lmotool/src/lmotool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-autorepeater/tools/lmotool/src/lmotool -------------------------------------------------------------------------------- /luci-app-autorepeater/tools/lmotool/src/lmotool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-autorepeater/tools/lmotool/src/lmotool.c -------------------------------------------------------------------------------- /luci-app-autorepeater/tools/po2lmo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-autorepeater/tools/po2lmo/Makefile -------------------------------------------------------------------------------- /luci-app-autorepeater/tools/po2lmo/src/po2lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-autorepeater/tools/po2lmo/src/po2lmo.c -------------------------------------------------------------------------------- /luci-app-bypass/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/Makefile -------------------------------------------------------------------------------- /luci-app-bypass/luasrc/controller/bypass.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/luasrc/controller/bypass.lua -------------------------------------------------------------------------------- /luci-app-bypass/luasrc/model/cbi/bypass/api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/luasrc/model/cbi/bypass/api.lua -------------------------------------------------------------------------------- /luci-app-bypass/luasrc/model/cbi/bypass/base.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/luasrc/model/cbi/bypass/base.lua -------------------------------------------------------------------------------- /luci-app-bypass/luasrc/model/cbi/bypass/log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/luasrc/model/cbi/bypass/log.lua -------------------------------------------------------------------------------- /luci-app-bypass/luasrc/model/cbi/bypass/xray.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/luasrc/model/cbi/bypass/xray.lua -------------------------------------------------------------------------------- /luci-app-bypass/luasrc/view/bypass/certupload.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/luasrc/view/bypass/certupload.htm -------------------------------------------------------------------------------- /luci-app-bypass/luasrc/view/bypass/check.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/luasrc/view/bypass/check.htm -------------------------------------------------------------------------------- /luci-app-bypass/luasrc/view/bypass/checkport.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/luasrc/view/bypass/checkport.htm -------------------------------------------------------------------------------- /luci-app-bypass/luasrc/view/bypass/ping.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/luasrc/view/bypass/ping.htm -------------------------------------------------------------------------------- /luci-app-bypass/luasrc/view/bypass/socket.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/luasrc/view/bypass/socket.htm -------------------------------------------------------------------------------- /luci-app-bypass/luasrc/view/bypass/ssrurl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/luasrc/view/bypass/ssrurl.htm -------------------------------------------------------------------------------- /luci-app-bypass/luasrc/view/bypass/status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/luasrc/view/bypass/status.htm -------------------------------------------------------------------------------- /luci-app-bypass/luasrc/view/bypass/subscribe.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/luasrc/view/bypass/subscribe.htm -------------------------------------------------------------------------------- /luci-app-bypass/po/zh-cn/bypass.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/po/zh-cn/bypass.po -------------------------------------------------------------------------------- /luci-app-bypass/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-bypass/root/etc/bypass/black.list: -------------------------------------------------------------------------------- 1 | api.ipify.org 2 | whrq.net 3 | test-ipv6.com 4 | -------------------------------------------------------------------------------- /luci-app-bypass/root/etc/bypass/netflix.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/root/etc/bypass/netflix.list -------------------------------------------------------------------------------- /luci-app-bypass/root/etc/bypass/oversea.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/root/etc/bypass/oversea.list -------------------------------------------------------------------------------- /luci-app-bypass/root/etc/bypass/telegram.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/root/etc/bypass/telegram.list -------------------------------------------------------------------------------- /luci-app-bypass/root/etc/bypass/white.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/root/etc/bypass/white.list -------------------------------------------------------------------------------- /luci-app-bypass/root/etc/config/bypass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/root/etc/config/bypass -------------------------------------------------------------------------------- /luci-app-bypass/root/etc/init.d/bypass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/root/etc/init.d/bypass -------------------------------------------------------------------------------- /luci-app-bypass/root/etc/uci-defaults/luci-bypass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/root/etc/uci-defaults/luci-bypass -------------------------------------------------------------------------------- /luci-app-bypass/root/usr/share/bypass/by-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/root/usr/share/bypass/by-check -------------------------------------------------------------------------------- /luci-app-bypass/root/usr/share/bypass/by-gfw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/root/usr/share/bypass/by-gfw -------------------------------------------------------------------------------- /luci-app-bypass/root/usr/share/bypass/by-monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/root/usr/share/bypass/by-monitor -------------------------------------------------------------------------------- /luci-app-bypass/root/usr/share/bypass/by-preload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/root/usr/share/bypass/by-preload -------------------------------------------------------------------------------- /luci-app-bypass/root/usr/share/bypass/by-rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/root/usr/share/bypass/by-rules -------------------------------------------------------------------------------- /luci-app-bypass/root/usr/share/bypass/by-switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/root/usr/share/bypass/by-switch -------------------------------------------------------------------------------- /luci-app-bypass/root/usr/share/bypass/chinaipset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/root/usr/share/bypass/chinaipset -------------------------------------------------------------------------------- /luci-app-bypass/root/usr/share/bypass/gen_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/root/usr/share/bypass/gen_config -------------------------------------------------------------------------------- /luci-app-bypass/root/usr/share/bypass/subscribe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/root/usr/share/bypass/subscribe -------------------------------------------------------------------------------- /luci-app-bypass/root/usr/share/bypass/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-bypass/root/usr/share/bypass/update -------------------------------------------------------------------------------- /luci-app-clash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/Makefile -------------------------------------------------------------------------------- /luci-app-clash/luasrc/clash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/luasrc/clash.lua -------------------------------------------------------------------------------- /luci-app-clash/luasrc/controller/clash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/luasrc/controller/clash.lua -------------------------------------------------------------------------------- /luci-app-clash/luasrc/model/cbi/clash/dns/dns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/luasrc/model/cbi/clash/dns/dns.lua -------------------------------------------------------------------------------- /luci-app-clash/luasrc/model/cbi/clash/other.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/luasrc/model/cbi/clash/other.lua -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/clash_dvalue.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/luasrc/view/clash/clash_dvalue.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/clash_upload.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/luasrc/view/clash/clash_upload.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/conf.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/luasrc/view/clash/conf.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/core_check.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/luasrc/view/clash/core_check.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/game_rule.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/luasrc/view/clash/game_rule.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/geoip.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/luasrc/view/clash/geoip.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/list.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/luasrc/view/clash/list.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/other_button.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/luasrc/view/clash/other_button.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/ping.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/luasrc/view/clash/ping.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/rulep.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/luasrc/view/clash/rulep.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/ssrurl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/luasrc/view/clash/ssrurl.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/start_stop.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/luasrc/view/clash/start_stop.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/luasrc/view/clash/status.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/status_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/luasrc/view/clash/status_log.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/tvalue.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/luasrc/view/clash/tvalue.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/luasrc/view/clash/update.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/upload_core.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/luasrc/view/clash/upload_core.htm -------------------------------------------------------------------------------- /luci-app-clash/po/zh-cn/clash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/po/zh-cn/clash.po -------------------------------------------------------------------------------- /luci-app-clash/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-clash/root/etc/clash/Country.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/root/etc/clash/Country.mmdb -------------------------------------------------------------------------------- /luci-app-clash/root/etc/config/clash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/root/etc/config/clash -------------------------------------------------------------------------------- /luci-app-clash/root/etc/init.d/clash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/root/etc/init.d/clash -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/root/usr/share/clash/backup.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/china_ip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/root/usr/share/clash/china_ip.txt -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/chinaipset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/root/usr/share/clash/chinaipset.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/clash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/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/cuslist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/root/usr/share/clash/cuslist.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/dashboard/CNAME: -------------------------------------------------------------------------------- 1 | clash.razord.top -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/game.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/root/usr/share/clash/game.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/geoip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/root/usr/share/clash/geoip.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/groups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/root/usr/share/clash/groups.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/iprules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/root/usr/share/clash/iprules.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/haiibo/openwrt-packages/HEAD/luci-app-clash/root/usr/share/clash/restore.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/rmlist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/root/usr/share/clash/rmlist.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/rule.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/root/usr/share/clash/rule.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/root/usr/share/clash/rule.yaml -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/server.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/root/usr/share/clash/server.list -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/root/usr/share/clash/update.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/update_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/root/usr/share/clash/update_all.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/uplist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/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/haiibo/openwrt-packages/HEAD/luci-app-clash/root/usr/share/clash/yacd/_headers -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/yacd/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/root/usr/share/clash/yacd/sw.js -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/yacd/yacd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/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/haiibo/openwrt-packages/HEAD/luci-app-clash/root/usr/share/clash/yum_change.sh -------------------------------------------------------------------------------- /luci-app-clash/tools/po2lmo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/tools/po2lmo/Makefile -------------------------------------------------------------------------------- /luci-app-clash/tools/po2lmo/src/po2lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/tools/po2lmo/src/po2lmo.c -------------------------------------------------------------------------------- /luci-app-clash/tools/po2lmo/src/template_lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/tools/po2lmo/src/template_lmo.c -------------------------------------------------------------------------------- /luci-app-clash/tools/po2lmo/src/template_lmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-clash/tools/po2lmo/src/template_lmo.h -------------------------------------------------------------------------------- /luci-app-cpulimit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-cpulimit/Makefile -------------------------------------------------------------------------------- /luci-app-cpulimit/luasrc/controller/cpulimit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-cpulimit/luasrc/controller/cpulimit.lua -------------------------------------------------------------------------------- /luci-app-cpulimit/luasrc/model/cbi/cpulimit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-cpulimit/luasrc/model/cbi/cpulimit.lua -------------------------------------------------------------------------------- /luci-app-cpulimit/po/zh-cn/cpulimit.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-cpulimit/po/zh-cn/cpulimit.po -------------------------------------------------------------------------------- /luci-app-cpulimit/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-cpulimit/root/etc/config/cpulimit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-cpulimit/root/etc/config/cpulimit -------------------------------------------------------------------------------- /luci-app-cpulimit/root/etc/init.d/cpulimit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-cpulimit/root/etc/init.d/cpulimit -------------------------------------------------------------------------------- /luci-app-cpulimit/root/usr/bin/cpulimit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-cpulimit/root/usr/bin/cpulimit.sh -------------------------------------------------------------------------------- /luci-app-ddns-go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ddns-go/Makefile -------------------------------------------------------------------------------- /luci-app-ddns-go/luasrc/controller/ddns-go.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ddns-go/luasrc/controller/ddns-go.lua -------------------------------------------------------------------------------- /luci-app-ddns-go/luasrc/model/cbi/ddns-go.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ddns-go/luasrc/model/cbi/ddns-go.lua -------------------------------------------------------------------------------- /luci-app-ddns-go/luasrc/view/ddns-go.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ddns-go/luasrc/view/ddns-go.htm -------------------------------------------------------------------------------- /luci-app-ddns-go/luasrc/view/ddns-go_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ddns-go/luasrc/view/ddns-go_status.htm -------------------------------------------------------------------------------- /luci-app-ddns-go/po/zh-cn/ddns-go.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ddns-go/po/zh-cn/ddns-go.po -------------------------------------------------------------------------------- /luci-app-ddns-go/po/zh_Hans/ddns-go.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ddns-go/po/zh_Hans/ddns-go.po -------------------------------------------------------------------------------- /luci-app-ddns-go/root/etc/config/ddns-go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ddns-go/root/etc/config/ddns-go -------------------------------------------------------------------------------- /luci-app-ddns-go/root/etc/ddns-go/localtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ddns-go/root/etc/ddns-go/localtime -------------------------------------------------------------------------------- /luci-app-ddnsto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ddnsto/Makefile -------------------------------------------------------------------------------- /luci-app-ddnsto/luasrc/controller/ddnsto.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ddnsto/luasrc/controller/ddnsto.lua -------------------------------------------------------------------------------- /luci-app-ddnsto/luasrc/model/cbi/ddnsto.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ddnsto/luasrc/model/cbi/ddnsto.lua -------------------------------------------------------------------------------- /luci-app-ddnsto/luasrc/view/ddnsto/main.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ddnsto/luasrc/view/ddnsto/main.htm -------------------------------------------------------------------------------- /luci-app-ddnsto/po/zh-cn/ddnsto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ddnsto/po/zh-cn/ddnsto.po -------------------------------------------------------------------------------- /luci-app-ddnsto/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /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-dnsfilter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-dnsfilter/Makefile -------------------------------------------------------------------------------- /luci-app-dnsfilter/po/zh-cn/dnsfilter.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-dnsfilter/po/zh-cn/dnsfilter.po -------------------------------------------------------------------------------- /luci-app-dnsfilter/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-dnsfilter/root/etc/config/dnsfilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-dnsfilter/root/etc/config/dnsfilter -------------------------------------------------------------------------------- /luci-app-dnsfilter/root/etc/dnsfilter/black.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-dnsfilter/root/etc/dnsfilter/ip.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-dnsfilter/root/etc/dnsfilter/white.list: -------------------------------------------------------------------------------- 1 | boxer.baidu.com 2 | -------------------------------------------------------------------------------- /luci-app-dnsfilter/root/etc/init.d/dnsfilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-dnsfilter/root/etc/init.d/dnsfilter -------------------------------------------------------------------------------- /luci-app-dockerman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-dockerman/Makefile -------------------------------------------------------------------------------- /luci-app-dockerman/depends.lst: -------------------------------------------------------------------------------- 1 | ttyd docker-cli -------------------------------------------------------------------------------- /luci-app-dockerman/luasrc/model/docker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-dockerman/luasrc/model/docker.lua -------------------------------------------------------------------------------- /luci-app-dockerman/luasrc/view/dockerman/logs.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-dockerman/luasrc/view/dockerman/logs.htm -------------------------------------------------------------------------------- /luci-app-dockerman/po/templates/dockerman.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-dockerman/po/templates/dockerman.pot -------------------------------------------------------------------------------- /luci-app-dockerman/po/zh-cn/dockerman.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-dockerman/po/zh-cn/dockerman.po -------------------------------------------------------------------------------- /luci-app-dockerman/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-dockerman/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-dockerman/postinst -------------------------------------------------------------------------------- /luci-app-dockerman/root/etc/init.d/dockerman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-dockerman/root/etc/init.d/dockerman -------------------------------------------------------------------------------- /luci-app-easymesh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-easymesh/Makefile -------------------------------------------------------------------------------- /luci-app-easymesh/luasrc/controller/easymesh.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-easymesh/luasrc/controller/easymesh.lua -------------------------------------------------------------------------------- /luci-app-easymesh/luasrc/model/cbi/easymesh.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-easymesh/luasrc/model/cbi/easymesh.lua -------------------------------------------------------------------------------- /luci-app-easymesh/po/zh-cn/easymesh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-easymesh/po/zh-cn/easymesh.po -------------------------------------------------------------------------------- /luci-app-easymesh/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-easymesh/root/etc/config/easymesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-easymesh/root/etc/config/easymesh -------------------------------------------------------------------------------- /luci-app-easymesh/root/etc/init.d/easymesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-easymesh/root/etc/init.d/easymesh -------------------------------------------------------------------------------- /luci-app-eqos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-eqos/Makefile -------------------------------------------------------------------------------- /luci-app-eqos/luasrc/controller/eqos.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-eqos/luasrc/controller/eqos.lua -------------------------------------------------------------------------------- /luci-app-eqos/luasrc/model/cbi/eqos.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-eqos/luasrc/model/cbi/eqos.lua -------------------------------------------------------------------------------- /luci-app-eqos/po/zh-cn/eqos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-eqos/po/zh-cn/eqos.po -------------------------------------------------------------------------------- /luci-app-eqos/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-eqos/root/etc/config/eqos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-eqos/root/etc/config/eqos -------------------------------------------------------------------------------- /luci-app-eqos/root/etc/hotplug.d/iface/10-eqos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-eqos/root/etc/hotplug.d/iface/10-eqos -------------------------------------------------------------------------------- /luci-app-eqos/root/etc/init.d/eqos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-eqos/root/etc/init.d/eqos -------------------------------------------------------------------------------- /luci-app-eqos/root/etc/uci-defaults/luci-eqos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-eqos/root/etc/uci-defaults/luci-eqos -------------------------------------------------------------------------------- /luci-app-eqos/root/usr/sbin/eqos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-eqos/root/usr/sbin/eqos -------------------------------------------------------------------------------- /luci-app-eqosplus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-eqosplus/Makefile -------------------------------------------------------------------------------- /luci-app-eqosplus/luasrc/controller/eqosplus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-eqosplus/luasrc/controller/eqosplus.lua -------------------------------------------------------------------------------- /luci-app-eqosplus/luasrc/model/cbi/eqosplus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-eqosplus/luasrc/model/cbi/eqosplus.lua -------------------------------------------------------------------------------- /luci-app-eqosplus/luasrc/view/eqosplus/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-eqosplus/luasrc/view/eqosplus/index.htm -------------------------------------------------------------------------------- /luci-app-eqosplus/po/zh-cn/eqosplus.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-eqosplus/po/zh-cn/eqosplus.po -------------------------------------------------------------------------------- /luci-app-eqosplus/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-eqosplus/root/etc/config/eqosplus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-eqosplus/root/etc/config/eqosplus -------------------------------------------------------------------------------- /luci-app-eqosplus/root/etc/init.d/eqosplus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-eqosplus/root/etc/init.d/eqosplus -------------------------------------------------------------------------------- /luci-app-eqosplus/root/usr/bin/eqosplus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-eqosplus/root/usr/bin/eqosplus -------------------------------------------------------------------------------- /luci-app-eqosplus/root/usr/sbin/eqosplusctrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-eqosplus/root/usr/sbin/eqosplusctrl -------------------------------------------------------------------------------- /luci-app-eqosplus/界面.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-eqosplus/界面.png -------------------------------------------------------------------------------- /luci-app-filebrowser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-filebrowser/Makefile -------------------------------------------------------------------------------- /luci-app-filebrowser/po/zh-cn/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-filebrowser/po/zh-cn/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-filebrowser/root/etc/config/filebrowser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-filebrowser/root/etc/config/filebrowser -------------------------------------------------------------------------------- /luci-app-filebrowser/root/etc/init.d/filebrowser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-filebrowser/root/etc/init.d/filebrowser -------------------------------------------------------------------------------- /luci-app-gost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-gost/Makefile -------------------------------------------------------------------------------- /luci-app-gost/luasrc/controller/gost.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-gost/luasrc/controller/gost.lua -------------------------------------------------------------------------------- /luci-app-gost/luasrc/model/cbi/gost.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-gost/luasrc/model/cbi/gost.lua -------------------------------------------------------------------------------- /luci-app-gost/luasrc/view/gost/gost_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-gost/luasrc/view/gost/gost_status.htm -------------------------------------------------------------------------------- /luci-app-gost/po/zh-cn/gost.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-gost/po/zh-cn/gost.po -------------------------------------------------------------------------------- /luci-app-gost/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-gost/root/etc/uci-defaults/gost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-gost/root/etc/uci-defaults/gost -------------------------------------------------------------------------------- /luci-app-gowebdav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-gowebdav/Makefile -------------------------------------------------------------------------------- /luci-app-gowebdav/luasrc/controller/gowebdav.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-gowebdav/luasrc/controller/gowebdav.lua -------------------------------------------------------------------------------- /luci-app-gowebdav/luasrc/model/cbi/gowebdav.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-gowebdav/luasrc/model/cbi/gowebdav.lua -------------------------------------------------------------------------------- /luci-app-gowebdav/po/zh-cn/gowebdav.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-gowebdav/po/zh-cn/gowebdav.po -------------------------------------------------------------------------------- /luci-app-gowebdav/po/zh_Hans/gowebdav.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-gowebdav/po/zh_Hans/gowebdav.po -------------------------------------------------------------------------------- /luci-app-gowebdav/root/etc/uci-defaults/gowebdav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-gowebdav/root/etc/uci-defaults/gowebdav -------------------------------------------------------------------------------- /luci-app-homebox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-homebox/Makefile -------------------------------------------------------------------------------- /luci-app-homebox/luasrc/controller/homebox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-homebox/luasrc/controller/homebox.lua -------------------------------------------------------------------------------- /luci-app-homebox/luasrc/model/cbi/homebox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-homebox/luasrc/model/cbi/homebox.lua -------------------------------------------------------------------------------- /luci-app-homebox/luasrc/view/admin_status/index/homebox.htm: -------------------------------------------------------------------------------- 1 | <%+homebox_status%> 2 | -------------------------------------------------------------------------------- /luci-app-homebox/luasrc/view/homebox_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-homebox/luasrc/view/homebox_status.htm -------------------------------------------------------------------------------- /luci-app-homebox/po/zh-cn/homebox.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-homebox/po/zh-cn/homebox.po -------------------------------------------------------------------------------- /luci-app-homebox/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-homebox/root/etc/uci-defaults/50_luci-homebox: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /tmp/luci-indexcache 4 | exit 0 5 | -------------------------------------------------------------------------------- /luci-app-ikoolproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ikoolproxy/Makefile -------------------------------------------------------------------------------- /luci-app-ikoolproxy/change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ikoolproxy/change.log -------------------------------------------------------------------------------- /luci-app-ikoolproxy/development.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ikoolproxy/development.doc -------------------------------------------------------------------------------- /luci-app-ikoolproxy/koolproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ikoolproxy/koolproxy/Makefile -------------------------------------------------------------------------------- /luci-app-ikoolproxy/koolproxy/files/aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ikoolproxy/koolproxy/files/aarch64 -------------------------------------------------------------------------------- /luci-app-ikoolproxy/koolproxy/files/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ikoolproxy/koolproxy/files/arm -------------------------------------------------------------------------------- /luci-app-ikoolproxy/koolproxy/files/i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ikoolproxy/koolproxy/files/i386 -------------------------------------------------------------------------------- /luci-app-ikoolproxy/koolproxy/files/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ikoolproxy/koolproxy/files/mips -------------------------------------------------------------------------------- /luci-app-ikoolproxy/koolproxy/files/mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ikoolproxy/koolproxy/files/mipsel -------------------------------------------------------------------------------- /luci-app-ikoolproxy/koolproxy/files/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ikoolproxy/koolproxy/files/x86_64 -------------------------------------------------------------------------------- /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/haiibo/openwrt-packages/HEAD/luci-app-ikoolproxy/root/etc/config/koolproxy -------------------------------------------------------------------------------- /luci-app-ikoolproxy/root/etc/init.d/koolproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ikoolproxy/root/etc/init.d/koolproxy -------------------------------------------------------------------------------- /luci-app-ikoolproxy/root/usr/sbin/adblockplus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/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-iptvhelper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-iptvhelper/Makefile -------------------------------------------------------------------------------- /luci-app-iptvhelper/po/templates/iptvhelper.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-iptvhelper/po/templates/iptvhelper.pot -------------------------------------------------------------------------------- /luci-app-iptvhelper/po/zh-cn/iptvhelper.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-iptvhelper/po/zh-cn/iptvhelper.po -------------------------------------------------------------------------------- /luci-app-iptvhelper/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-istorex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-istorex/Makefile -------------------------------------------------------------------------------- /luci-app-istorex/luasrc/controller/istorex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-istorex/luasrc/controller/istorex.lua -------------------------------------------------------------------------------- /luci-app-istorex/luasrc/view/istorex/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-istorex/luasrc/view/istorex/index.htm -------------------------------------------------------------------------------- /luci-app-istorex/luasrc/view/istorex/main.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-istorex/luasrc/view/istorex/main.htm -------------------------------------------------------------------------------- /luci-app-istorex/luasrc/view/istorex/main_dev.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-istorex/luasrc/view/istorex/main_dev.htm -------------------------------------------------------------------------------- /luci-app-istorex/root/etc/config/istorex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/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/haiibo/openwrt-packages/HEAD/luci-app-linkease/Makefile -------------------------------------------------------------------------------- /luci-app-linkease/luasrc/controller/linkease.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-linkease/luasrc/controller/linkease.lua -------------------------------------------------------------------------------- /luci-app-linkease/luasrc/model/cbi/linkease.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/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/haiibo/openwrt-packages/HEAD/luci-app-linkease/luasrc/view/linkease/file.htm -------------------------------------------------------------------------------- /luci-app-linkease/luasrc/view/linkease_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-linkease/luasrc/view/linkease_status.htm -------------------------------------------------------------------------------- /luci-app-linkease/po/zh-cn/linkease.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-linkease/po/zh-cn/linkease.po -------------------------------------------------------------------------------- /luci-app-linkease/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /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-mentohust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-mentohust/Makefile -------------------------------------------------------------------------------- /luci-app-mentohust/files/root/etc/config/mentohust: -------------------------------------------------------------------------------- 1 | config mentohust 2 | -------------------------------------------------------------------------------- /luci-app-mosdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-mosdns/Makefile -------------------------------------------------------------------------------- /luci-app-mosdns/luasrc/controller/mosdns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-mosdns/luasrc/controller/mosdns.lua -------------------------------------------------------------------------------- /luci-app-mosdns/luasrc/model/cbi/mosdns/basic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-mosdns/luasrc/model/cbi/mosdns/basic.lua -------------------------------------------------------------------------------- /luci-app-mosdns/luasrc/model/cbi/mosdns/log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-mosdns/luasrc/model/cbi/mosdns/log.lua -------------------------------------------------------------------------------- /luci-app-mosdns/luasrc/view/mosdns/mosdns_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-mosdns/luasrc/view/mosdns/mosdns_log.htm -------------------------------------------------------------------------------- /luci-app-mosdns/po/zh-cn/mosdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-mosdns/po/zh-cn/mosdns.po -------------------------------------------------------------------------------- /luci-app-mosdns/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-mosdns/root/etc/config/mosdns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/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/haiibo/openwrt-packages/HEAD/luci-app-mosdns/root/etc/init.d/mosdns -------------------------------------------------------------------------------- /luci-app-mosdns/root/etc/mosdns/rule/blocklist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-mosdns/root/etc/mosdns/rule/ddnslist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-mosdns/root/etc/mosdns/rule/greylist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-mosdns/root/etc/mosdns/rule/hosts.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-mosdns/root/etc/mosdns/rule/redirect.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-mosdns/root/etc/uci-defaults/luci-mosdns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-mosdns/root/etc/uci-defaults/luci-mosdns -------------------------------------------------------------------------------- /luci-app-mosdns/root/usr/share/mosdns/cache.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-mosdns/root/usr/share/mosdns/cache.dump -------------------------------------------------------------------------------- /luci-app-mosdns/root/usr/share/mosdns/mosdns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-mosdns/root/usr/share/mosdns/mosdns.sh -------------------------------------------------------------------------------- /luci-app-msd_lite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-msd_lite/Makefile -------------------------------------------------------------------------------- /luci-app-msd_lite/luasrc/controller/msd_lite.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-msd_lite/luasrc/controller/msd_lite.lua -------------------------------------------------------------------------------- /luci-app-msd_lite/luasrc/model/cbi/msd_lite.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/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/haiibo/openwrt-packages/HEAD/luci-app-msd_lite/po/zh-cn/msd_lite.po -------------------------------------------------------------------------------- /luci-app-msd_lite/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-netdata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-netdata/Makefile -------------------------------------------------------------------------------- /luci-app-netdata/luasrc/controller/netdata.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-netdata/luasrc/controller/netdata.lua -------------------------------------------------------------------------------- /luci-app-netdata/luasrc/model/cgi/netdate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-netdata/luasrc/model/cgi/netdate.lua -------------------------------------------------------------------------------- /luci-app-netdata/luasrc/view/netdata/netdata.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-netdata/luasrc/view/netdata/netdata.htm -------------------------------------------------------------------------------- /luci-app-netdata/po/zh-cn/netdata.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-netdata/po/zh-cn/netdata.po -------------------------------------------------------------------------------- /luci-app-netdata/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-netdata/root/etc/netdata/ebpf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-netdata/root/etc/netdata/ebpf.conf -------------------------------------------------------------------------------- /luci-app-netdata/root/etc/netdata/exporting.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-netdata/root/etc/netdata/exporting.conf -------------------------------------------------------------------------------- /luci-app-netdata/root/etc/netdata/netdata.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-netdata/root/etc/netdata/netdata.conf -------------------------------------------------------------------------------- /luci-app-netdata/root/etc/netdata/stream.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-netdata/root/etc/netdata/stream.conf -------------------------------------------------------------------------------- /luci-app-netdata/web/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-netdata/web/dashboard.js -------------------------------------------------------------------------------- /luci-app-netdata/web/dashboard_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-netdata/web/dashboard_info.js -------------------------------------------------------------------------------- /luci-app-netdata/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-netdata/web/index.html -------------------------------------------------------------------------------- /luci-app-netdata/web/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-netdata/web/main.js -------------------------------------------------------------------------------- /luci-app-netspeedtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-netspeedtest/Makefile -------------------------------------------------------------------------------- /luci-app-netspeedtest/po/zh-cn/netspeedtest.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-netspeedtest/po/zh-cn/netspeedtest.po -------------------------------------------------------------------------------- /luci-app-netspeedtest/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-netspeedtest/root/usr/bin/netperftest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-netspeedtest/root/usr/bin/netperftest -------------------------------------------------------------------------------- /luci-app-netspeedtest/root/usr/bin/speedtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-netspeedtest/root/usr/bin/speedtest -------------------------------------------------------------------------------- /luci-app-netwizard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-netwizard/Makefile -------------------------------------------------------------------------------- /luci-app-netwizard/po/zh-cn/netwizard.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-netwizard/po/zh-cn/netwizard.po -------------------------------------------------------------------------------- /luci-app-netwizard/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-netwizard/root/etc/config/netwizard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-netwizard/root/etc/config/netwizard -------------------------------------------------------------------------------- /luci-app-netwizard/root/etc/init.d/netwizard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-netwizard/root/etc/init.d/netwizard -------------------------------------------------------------------------------- /luci-app-oaf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-oaf/Makefile -------------------------------------------------------------------------------- /luci-app-oaf/luasrc/controller/appfilter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-oaf/luasrc/controller/appfilter.lua -------------------------------------------------------------------------------- /luci-app-oaf/luasrc/view/cbi/oaf_dvalue.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-oaf/luasrc/view/cbi/oaf_dvalue.htm -------------------------------------------------------------------------------- /luci-app-oaf/luasrc/view/cbi/oaf_upload.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-oaf/luasrc/view/cbi/oaf_upload.htm -------------------------------------------------------------------------------- /luci-app-oaf/po/zh-cn/oaf.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-oaf/po/zh-cn/oaf.po -------------------------------------------------------------------------------- /luci-app-oaf/po/zh_Hans/oaf.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-oaf/po/zh_Hans/oaf.po -------------------------------------------------------------------------------- /luci-app-oaf/root/etc/uci-defaults/91_luci-oaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-oaf/root/etc/uci-defaults/91_luci-oaf -------------------------------------------------------------------------------- /luci-app-oaf/root/etc/uci-defaults/92_oaf_time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-oaf/root/etc/uci-defaults/92_oaf_time -------------------------------------------------------------------------------- /luci-app-oaf/root/etc/uci-defaults/93_feature_2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-oaf/root/etc/uci-defaults/93_feature_2.0 -------------------------------------------------------------------------------- /luci-app-oled/linux/ssd1306.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-oled/linux/ssd1306.cfg -------------------------------------------------------------------------------- /luci-app-oled/linux/ssd1306.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-oled/linux/ssd1306.service -------------------------------------------------------------------------------- /luci-app-oled/luci-app-oled/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-oled/luci-app-oled/Makefile -------------------------------------------------------------------------------- /luci-app-oled/luci-app-oled/po/zh-cn/oled.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/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/haiibo/openwrt-packages/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/haiibo/openwrt-packages/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/haiibo/openwrt-packages/HEAD/luci-app-oled/luci-app-oled/root/etc/init.d/oled -------------------------------------------------------------------------------- /luci-app-oled/luci-app-oled/src/I2C_Library/I2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/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/haiibo/openwrt-packages/HEAD/luci-app-oled/luci-app-oled/src/I2C_Library/I2C.h -------------------------------------------------------------------------------- /luci-app-oled/luci-app-oled/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-oled/luci-app-oled/src/Makefile -------------------------------------------------------------------------------- /luci-app-onliner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-onliner/Makefile -------------------------------------------------------------------------------- /luci-app-onliner/luasrc/controller/onliner.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-onliner/luasrc/controller/onliner.lua -------------------------------------------------------------------------------- /luci-app-onliner/luasrc/view/onliner/display.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-onliner/luasrc/view/onliner/display.htm -------------------------------------------------------------------------------- /luci-app-onliner/luasrc/view/onliner/onliner.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-onliner/luasrc/view/onliner/onliner.htm -------------------------------------------------------------------------------- /luci-app-onliner/po/zh-cn/onliner.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-onliner/po/zh-cn/onliner.po -------------------------------------------------------------------------------- /luci-app-onliner/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-openclash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-openclash/Makefile -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/openclash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-openclash/luasrc/openclash.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-openclash/luasrc/view/openclash/log.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/myip.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-openclash/luasrc/view/openclash/myip.htm -------------------------------------------------------------------------------- /luci-app-openclash/po/zh-cn/openclash.zh-cn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-openclash/po/zh-cn/openclash.zh-cn.po -------------------------------------------------------------------------------- /luci-app-openclash/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/config/openclash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-openclash/root/etc/config/openclash -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/init.d/openclash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-openclash/root/etc/init.d/openclash -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/GeoSite.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-openclash/root/etc/openclash/GeoSite.dat -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/custom/openclash_custom_chnroute6_pass.list: -------------------------------------------------------------------------------- 1 | #baidu.com 2 | #2400:da00::dbf:0:100 -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/custom/openclash_custom_domain_dns.list: -------------------------------------------------------------------------------- 1 | #baidu.com -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/ChatGPT: -------------------------------------------------------------------------------- 1 | payload: 2 | # > ChatGPT 3 | - DOMAIN-SUFFIX,openai.com -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/dashboard/CNAME: -------------------------------------------------------------------------------- 1 | clash.razord.top -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/metacubexd/CNAME: -------------------------------------------------------------------------------- 1 | d.metacubex.one 2 | -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/CNAME: -------------------------------------------------------------------------------- 1 | yacd.haishan.me 2 | -------------------------------------------------------------------------------- /luci-app-openclash/tools/po2lmo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-openclash/tools/po2lmo/Makefile -------------------------------------------------------------------------------- /luci-app-openclash/tools/po2lmo/src/po2lmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-openclash/tools/po2lmo/src/po2lmo -------------------------------------------------------------------------------- /luci-app-openclash/tools/po2lmo/src/po2lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-openclash/tools/po2lmo/src/po2lmo.c -------------------------------------------------------------------------------- /luci-app-passwall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-passwall/Makefile -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/controller/passwall.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-passwall/luasrc/controller/passwall.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/passwall/api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-passwall/luasrc/passwall/api.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/passwall/com.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-passwall/luasrc/passwall/com.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/passwall/server_app.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-passwall/luasrc/passwall/server_app.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/passwall/util_trojan.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-passwall/luasrc/passwall/util_trojan.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/passwall/util_tuic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-passwall/luasrc/passwall/util_tuic.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/passwall/util_xray.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-passwall/luasrc/passwall/util_xray.lua -------------------------------------------------------------------------------- /luci-app-passwall/po/zh-cn/passwall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-passwall/po/zh-cn/passwall.po -------------------------------------------------------------------------------- /luci-app-passwall/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-passwall/root/etc/config/passwall_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-passwall/root/etc/config/passwall_server -------------------------------------------------------------------------------- /luci-app-passwall/root/etc/init.d/passwall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-passwall/root/etc/init.d/passwall -------------------------------------------------------------------------------- /luci-app-passwall/root/etc/init.d/passwall_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-passwall/root/etc/init.d/passwall_server -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-passwall/root/usr/share/passwall/app.sh -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/rules/block_host: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/rules/block_ip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-passwall/root/usr/share/passwall/test.sh -------------------------------------------------------------------------------- /luci-app-passwall2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-passwall2/Makefile -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/passwall2/api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-passwall2/luasrc/passwall2/api.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/passwall2/com.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-passwall2/luasrc/passwall2/com.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/passwall2/util_tuic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-passwall2/luasrc/passwall2/util_tuic.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/passwall2/util_xray.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-passwall2/luasrc/passwall2/util_xray.lua -------------------------------------------------------------------------------- /luci-app-passwall2/po/zh-cn/passwall2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-passwall2/po/zh-cn/passwall2.po -------------------------------------------------------------------------------- /luci-app-passwall2/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-passwall2/root/etc/init.d/passwall2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-passwall2/root/etc/init.d/passwall2 -------------------------------------------------------------------------------- /luci-app-poweroff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-poweroff/Makefile -------------------------------------------------------------------------------- /luci-app-poweroff/luasrc/controller/poweroff.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-poweroff/luasrc/controller/poweroff.lua -------------------------------------------------------------------------------- /luci-app-poweroff/luasrc/view/poweroff.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-poweroff/luasrc/view/poweroff.htm -------------------------------------------------------------------------------- /luci-app-poweroff/po/zh-cn/poweroff.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-poweroff/po/zh-cn/poweroff.po -------------------------------------------------------------------------------- /luci-app-poweroff/po/zh-tw/poweroff.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-poweroff/po/zh-tw/poweroff.po -------------------------------------------------------------------------------- /luci-app-poweroff/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-pppoe-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-pppoe-server/Makefile -------------------------------------------------------------------------------- /luci-app-pppoe-server/po/zh-cn/pppoe-server.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-pppoe-server/po/zh-cn/pppoe-server.po -------------------------------------------------------------------------------- /luci-app-pppoe-server/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-pushbot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-pushbot/Makefile -------------------------------------------------------------------------------- /luci-app-pushbot/luasrc/controller/pushbot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-pushbot/luasrc/controller/pushbot.lua -------------------------------------------------------------------------------- /luci-app-pushbot/luasrc/model/cbi/pushbot/log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-pushbot/luasrc/model/cbi/pushbot/log.lua -------------------------------------------------------------------------------- /luci-app-pushbot/root/etc/config/pushbot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-pushbot/root/etc/config/pushbot -------------------------------------------------------------------------------- /luci-app-pushbot/root/etc/init.d/pushbot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-pushbot/root/etc/init.d/pushbot -------------------------------------------------------------------------------- /luci-app-pushbot/root/usr/bin/pushbot/api/ip_blacklist: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /luci-app-pushbot/root/usr/bin/pushbot/pushbot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-pushbot/root/usr/bin/pushbot/pushbot -------------------------------------------------------------------------------- /luci-app-quickstart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-quickstart/Makefile -------------------------------------------------------------------------------- /luci-app-quickstart/po/zh-cn/quickstart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-quickstart/po/zh-cn/quickstart.po -------------------------------------------------------------------------------- /luci-app-quickstart/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /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-serverchan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-serverchan/Makefile -------------------------------------------------------------------------------- /luci-app-serverchan/root/etc/config/serverchan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-serverchan/root/etc/config/serverchan -------------------------------------------------------------------------------- /luci-app-serverchan/root/etc/init.d/serverchan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-serverchan/root/etc/init.d/serverchan -------------------------------------------------------------------------------- /luci-app-serverchan/root/usr/share/serverchan/api/ip_blacklist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-smartdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-smartdns/Makefile -------------------------------------------------------------------------------- /luci-app-smartdns/luasrc/controller/smartdns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-smartdns/luasrc/controller/smartdns.lua -------------------------------------------------------------------------------- /luci-app-smartdns/luasrc/model/smartdns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-smartdns/luasrc/model/smartdns.lua -------------------------------------------------------------------------------- /luci-app-smartdns/po/zh-cn/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-smartdns/po/zh-cn/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-ssr-mudb-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ssr-mudb-server/Makefile -------------------------------------------------------------------------------- /luci-app-ssr-mudb-server/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /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-ssr-plus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ssr-plus/Makefile -------------------------------------------------------------------------------- /luci-app-ssr-plus/po/zh-cn/ssr-plus.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ssr-plus/po/zh-cn/ssr-plus.po -------------------------------------------------------------------------------- /luci-app-ssr-plus/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/config/shadowsocksr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/init.d/shadowsocksr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ssr-plus/root/etc/init.d/shadowsocksr -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/ssrplus/ad.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/ssrplus/black.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/ssrplus/deny.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ssr-plus/root/etc/ssrplus/deny.list -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/ssrplus/netflix.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ssr-plus/root/etc/ssrplus/netflix.list -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/ssrplus/white.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ssr-plus/root/etc/ssrplus/white.list -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/usr/bin/ssr-monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ssr-plus/root/usr/bin/ssr-monitor -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/usr/bin/ssr-rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ssr-plus/root/usr/bin/ssr-rules -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/usr/bin/ssr-switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-ssr-plus/root/usr/bin/ssr-switch -------------------------------------------------------------------------------- /luci-app-store/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-store/Makefile -------------------------------------------------------------------------------- /luci-app-store/luasrc/controller/store.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-store/luasrc/controller/store.lua -------------------------------------------------------------------------------- /luci-app-store/luasrc/view/store/main.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-store/luasrc/view/store/main.htm -------------------------------------------------------------------------------- /luci-app-store/root/bin/is-opkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-store/root/bin/is-opkg -------------------------------------------------------------------------------- /luci-app-store/root/etc/config/istore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-store/root/etc/config/istore -------------------------------------------------------------------------------- /luci-app-store/root/etc/init.d/istore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-store/root/etc/init.d/istore -------------------------------------------------------------------------------- /luci-app-store/root/usr/libexec/istore/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-store/root/usr/libexec/istore/backup -------------------------------------------------------------------------------- /luci-app-store/root/usr/share/opkg/intercept/rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-store/root/usr/share/opkg/intercept/rm -------------------------------------------------------------------------------- /luci-app-store/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-store/src/Makefile -------------------------------------------------------------------------------- /luci-app-store/src/compat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-store/src/compat.conf -------------------------------------------------------------------------------- /luci-app-store/src/dummy/package.mk: -------------------------------------------------------------------------------- 1 | define BuildPackage 2 | endef -------------------------------------------------------------------------------- /luci-app-store/src/key-build.pub: -------------------------------------------------------------------------------- 1 | untrusted comment: istore key 2 | RWSlbxYnTG1Ia0BvB+xd7YdP7QDQACljfpve7sx9KYq94QgIqtlljuME 3 | -------------------------------------------------------------------------------- /luci-app-store/src/po/templates/iStore.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-store/src/po/templates/iStore.pot -------------------------------------------------------------------------------- /luci-app-store/src/po/zh-cn/iStore.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-store/src/po/zh-cn/iStore.po -------------------------------------------------------------------------------- /luci-app-store/src/po/zh-tw/iStore.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-store/src/po/zh-tw/iStore.po -------------------------------------------------------------------------------- /luci-app-udp2raw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-udp2raw/Makefile -------------------------------------------------------------------------------- /luci-app-udp2raw/files/root/etc/config/udp2raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-udp2raw/files/root/etc/config/udp2raw -------------------------------------------------------------------------------- /luci-app-udp2raw/files/root/etc/init.d/udp2raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-udp2raw/files/root/etc/init.d/udp2raw -------------------------------------------------------------------------------- /luci-app-udp2raw/images/luci-app-udp2raw1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-udp2raw/images/luci-app-udp2raw1.jpg -------------------------------------------------------------------------------- /luci-app-udp2raw/images/luci-app-udp2raw2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-udp2raw/images/luci-app-udp2raw2.jpg -------------------------------------------------------------------------------- /luci-app-udp2raw/images/luci-app-udp2raw3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-udp2raw/images/luci-app-udp2raw3.jpg -------------------------------------------------------------------------------- /luci-app-udp2raw/tools/po2lmo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-udp2raw/tools/po2lmo/Makefile -------------------------------------------------------------------------------- /luci-app-udp2raw/tools/po2lmo/src/po2lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-udp2raw/tools/po2lmo/src/po2lmo.c -------------------------------------------------------------------------------- /luci-app-unblockneteasemusic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-unblockneteasemusic/Makefile -------------------------------------------------------------------------------- /luci-app-unblockneteasemusic/views/view1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-unblockneteasemusic/views/view1.jpg -------------------------------------------------------------------------------- /luci-app-unblockneteasemusic/views/view2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-unblockneteasemusic/views/view2.jpg -------------------------------------------------------------------------------- /luci-app-unblockneteasemusic/views/view3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-unblockneteasemusic/views/view3.jpg -------------------------------------------------------------------------------- /luci-app-unblockneteasemusic/views/view4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-unblockneteasemusic/views/view4.jpg -------------------------------------------------------------------------------- /luci-app-unishare/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-unishare/Makefile -------------------------------------------------------------------------------- /luci-app-unishare/po/zh-cn/unishare.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-unishare/po/zh-cn/unishare.po -------------------------------------------------------------------------------- /luci-app-unishare/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-vssr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/Makefile -------------------------------------------------------------------------------- /luci-app-vssr/luasrc/controller/vssr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/luasrc/controller/vssr.lua -------------------------------------------------------------------------------- /luci-app-vssr/luasrc/model/cbi/vssr/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/luasrc/model/cbi/vssr/client.lua -------------------------------------------------------------------------------- /luci-app-vssr/luasrc/model/cbi/vssr/control.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/luasrc/model/cbi/vssr/control.lua -------------------------------------------------------------------------------- /luci-app-vssr/luasrc/model/cbi/vssr/log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/luasrc/model/cbi/vssr/log.lua -------------------------------------------------------------------------------- /luci-app-vssr/luasrc/model/cbi/vssr/router.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/luasrc/model/cbi/vssr/router.lua -------------------------------------------------------------------------------- /luci-app-vssr/luasrc/model/cbi/vssr/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/luasrc/model/cbi/vssr/server.lua -------------------------------------------------------------------------------- /luci-app-vssr/luasrc/model/cbi/vssr/servers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/luasrc/model/cbi/vssr/servers.lua -------------------------------------------------------------------------------- /luci-app-vssr/luasrc/model/cbi/vssr/socks5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/luasrc/model/cbi/vssr/socks5.lua -------------------------------------------------------------------------------- /luci-app-vssr/luasrc/view/vssr/cell_valuefooter.htm: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /luci-app-vssr/luasrc/view/vssr/licence.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/luasrc/view/vssr/licence.htm -------------------------------------------------------------------------------- /luci-app-vssr/luasrc/view/vssr/refresh.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/luasrc/view/vssr/refresh.htm -------------------------------------------------------------------------------- /luci-app-vssr/luasrc/view/vssr/ssrurl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/luasrc/view/vssr/ssrurl.htm -------------------------------------------------------------------------------- /luci-app-vssr/luasrc/view/vssr/status_top.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/luasrc/view/vssr/status_top.htm -------------------------------------------------------------------------------- /luci-app-vssr/luasrc/view/vssr/tblsection.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/luasrc/view/vssr/tblsection.htm -------------------------------------------------------------------------------- /luci-app-vssr/po/zh-cn/vssr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/po/zh-cn/vssr.po -------------------------------------------------------------------------------- /luci-app-vssr/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-vssr/relnotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/relnotes.txt -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/config/vssr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/etc/config/vssr -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/init.d/vssr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/etc/init.d/vssr -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/uci-defaults/luci-vssr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/etc/uci-defaults/luci-vssr -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/ad.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/black.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/etc/vssr/black.list -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/china_ssr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/etc/vssr/china_ssr.txt -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/custom_domain.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/custom_ip.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/disney_domain.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/etc/vssr/disney_domain.list -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/disney_ip.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/gfw.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/etc/vssr/gfw.list -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/gfw_base.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/etc/vssr/gfw_base.conf -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/gfw_list.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/etc/vssr/gfw_list.conf -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/netflix_domain.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/etc/vssr/netflix_domain.list -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/netflix_ip.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/oversea_list.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/etc/vssr/oversea_list.conf -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/prime_domain.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/etc/vssr/prime_domain.list -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/prime_ip.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/tvb_domain.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/etc/vssr/tvb_domain.list -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/tvb_ip.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/tw_video_ip.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/white.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/youtube_domain.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/etc/vssr/youtube_domain.list -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/youtube_ip.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-vssr/root/usr/bin/vssr-ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/usr/bin/vssr-ad -------------------------------------------------------------------------------- /luci-app-vssr/root/usr/bin/vssr-gfw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/usr/bin/vssr-gfw -------------------------------------------------------------------------------- /luci-app-vssr/root/usr/bin/vssr-monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/usr/bin/vssr-monitor -------------------------------------------------------------------------------- /luci-app-vssr/root/usr/bin/vssr-qucikswitch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/usr/bin/vssr-qucikswitch -------------------------------------------------------------------------------- /luci-app-vssr/root/usr/bin/vssr-rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/usr/bin/vssr-rules -------------------------------------------------------------------------------- /luci-app-vssr/root/usr/bin/vssr-switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/usr/bin/vssr-switch -------------------------------------------------------------------------------- /luci-app-vssr/root/usr/share/lua/vssrutil.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/usr/share/lua/vssrutil.lua -------------------------------------------------------------------------------- /luci-app-vssr/root/usr/share/vssr/chinaipset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/usr/share/vssr/chinaipset.sh -------------------------------------------------------------------------------- /luci-app-vssr/root/usr/share/vssr/gfw2ipset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/usr/share/vssr/gfw2ipset.sh -------------------------------------------------------------------------------- /luci-app-vssr/root/usr/share/vssr/subscribe.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/usr/share/vssr/subscribe.lua -------------------------------------------------------------------------------- /luci-app-vssr/root/usr/share/vssr/update.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/usr/share/vssr/update.lua -------------------------------------------------------------------------------- /luci-app-vssr/root/www/luci-static/vssr/vssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-vssr/root/www/luci-static/vssr/vssr.js -------------------------------------------------------------------------------- /luci-app-wrtbwmon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-wrtbwmon/Makefile -------------------------------------------------------------------------------- /luci-app-wrtbwmon/luasrc/view/wrtbwmon.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-wrtbwmon/luasrc/view/wrtbwmon.htm -------------------------------------------------------------------------------- /luci-app-wrtbwmon/po/zh-cn/wrtbwmon.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-app-wrtbwmon/po/zh-cn/wrtbwmon.po -------------------------------------------------------------------------------- /luci-app-wrtbwmon/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-lib-iform/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-lib-iform/Makefile -------------------------------------------------------------------------------- /luci-lib-iform/luasrc/iform.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-lib-iform/luasrc/iform.lua -------------------------------------------------------------------------------- /luci-lib-taskd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-lib-taskd/Makefile -------------------------------------------------------------------------------- /luci-lib-taskd/luasrc/controller/tasks-lib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-lib-taskd/luasrc/controller/tasks-lib.lua -------------------------------------------------------------------------------- /luci-lib-taskd/luasrc/model/tasks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-lib-taskd/luasrc/model/tasks.lua -------------------------------------------------------------------------------- /luci-lib-taskd/luasrc/view/tasks/docker.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-lib-taskd/luasrc/view/tasks/docker.htm -------------------------------------------------------------------------------- /luci-lib-taskd/luasrc/view/tasks/embed.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-lib-taskd/luasrc/view/tasks/embed.htm -------------------------------------------------------------------------------- /luci-lib-taskd/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-lib-taskd/src/Makefile -------------------------------------------------------------------------------- /luci-lib-taskd/src/dummy/package.mk: -------------------------------------------------------------------------------- 1 | define BuildPackage 2 | endef -------------------------------------------------------------------------------- /luci-lib-taskd/src/po/zh-cn/lib-tasks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-lib-taskd/src/po/zh-cn/lib-tasks.po -------------------------------------------------------------------------------- /luci-lib-xterm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-lib-xterm/Makefile -------------------------------------------------------------------------------- /luci-lib-xterm/luasrc/view/xterm/embed.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-lib-xterm/luasrc/view/xterm/embed.htm -------------------------------------------------------------------------------- /luci-theme-argon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-argon/Makefile -------------------------------------------------------------------------------- /luci-theme-argon/Screenshots/screenshot_pc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-argon/Screenshots/screenshot_pc.jpg -------------------------------------------------------------------------------- /luci-theme-atmaterial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-atmaterial/Makefile -------------------------------------------------------------------------------- /luci-theme-atmaterial/files/htdocs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-atmaterial/files/htdocs/favicon.ico -------------------------------------------------------------------------------- /luci-theme-atmaterial/files/htdocs/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-atmaterial/files/htdocs/js/script.js -------------------------------------------------------------------------------- /luci-theme-atmaterial/files/htdocs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-atmaterial/files/htdocs/logo.png -------------------------------------------------------------------------------- /luci-theme-atmaterial_new/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-atmaterial_new/Makefile -------------------------------------------------------------------------------- /luci-theme-edge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-edge/Makefile -------------------------------------------------------------------------------- /luci-theme-edge/htdocs/luci-static/edge/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-edge/htdocs/luci-static/edge/sun.svg -------------------------------------------------------------------------------- /luci-theme-edge/luasrc/view/header_login.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-edge/luasrc/view/header_login.htm -------------------------------------------------------------------------------- /luci-theme-infinityfreedom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-infinityfreedom/Makefile -------------------------------------------------------------------------------- /luci-theme-neobird/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-neobird/Makefile -------------------------------------------------------------------------------- /luci-theme-neobird/preview/IMG_6474.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-neobird/preview/IMG_6474.PNG -------------------------------------------------------------------------------- /luci-theme-neobird/preview/IMG_6475.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-neobird/preview/IMG_6475.PNG -------------------------------------------------------------------------------- /luci-theme-neobird/preview/IMG_6476.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-neobird/preview/IMG_6476.PNG -------------------------------------------------------------------------------- /luci-theme-neobird/preview/IMG_6478.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-neobird/preview/IMG_6478.PNG -------------------------------------------------------------------------------- /luci-theme-neobird/preview/IMG_6479.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-neobird/preview/IMG_6479.PNG -------------------------------------------------------------------------------- /luci-theme-neobird/preview/IMG_6480.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-neobird/preview/IMG_6480.PNG -------------------------------------------------------------------------------- /luci-theme-neobird/preview/IMG_6481.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-neobird/preview/IMG_6481.PNG -------------------------------------------------------------------------------- /luci-theme-neobird/preview/SCR-20220223-iw6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-neobird/preview/SCR-20220223-iw6.png -------------------------------------------------------------------------------- /luci-theme-neobird/preview/SCR-20220223-iwe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-neobird/preview/SCR-20220223-iwe.png -------------------------------------------------------------------------------- /luci-theme-neobird/preview/SCR-20220223-iwp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-neobird/preview/SCR-20220223-iwp.png -------------------------------------------------------------------------------- /luci-theme-neobird/preview/SCR-20220223-ix1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-neobird/preview/SCR-20220223-ix1.png -------------------------------------------------------------------------------- /luci-theme-neobird/preview/SCR-20220223-ixs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-neobird/preview/SCR-20220223-ixs.png -------------------------------------------------------------------------------- /luci-theme-neobird/preview/SCR-20220223-j1l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-neobird/preview/SCR-20220223-j1l.png -------------------------------------------------------------------------------- /luci-theme-neobird/preview/SCR-20220514-d0j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-neobird/preview/SCR-20220514-d0j.png -------------------------------------------------------------------------------- /luci-theme-neobird/preview/SCR-20220514-d1g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-neobird/preview/SCR-20220514-d1g.png -------------------------------------------------------------------------------- /luci-theme-neobird/preview/SCR-20220514-d1n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-neobird/preview/SCR-20220514-d1n.png -------------------------------------------------------------------------------- /luci-theme-netgear/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-netgear/Makefile -------------------------------------------------------------------------------- /luci-theme-opentomato/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-opentomato/Makefile -------------------------------------------------------------------------------- /luci-theme-opentomcat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-opentomcat/Makefile -------------------------------------------------------------------------------- /luci-theme-opentomcat/files/htdocs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-opentomcat/files/htdocs/favicon.ico -------------------------------------------------------------------------------- /luci-theme-opentomcat/files/htdocs/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-opentomcat/files/htdocs/js/script.js -------------------------------------------------------------------------------- /luci-theme-opentomcat/files/htdocs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-opentomcat/files/htdocs/logo.png -------------------------------------------------------------------------------- /luci-theme-rosy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-rosy/Makefile -------------------------------------------------------------------------------- /luci-theme-rosy/htdocs/luci-static/rosy/pwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/luci-theme-rosy/htdocs/luci-static/rosy/pwd.png -------------------------------------------------------------------------------- /mentohust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mentohust/Makefile -------------------------------------------------------------------------------- /mentohust/files/mentohust.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mentohust/files/mentohust.conf -------------------------------------------------------------------------------- /mentohust/files/mentohust.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mentohust/files/mentohust.init -------------------------------------------------------------------------------- /mentohust/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mentohust/src/Makefile -------------------------------------------------------------------------------- /mentohust/src/dlfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mentohust/src/dlfunc.c -------------------------------------------------------------------------------- /mentohust/src/dlfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mentohust/src/dlfunc.h -------------------------------------------------------------------------------- /mentohust/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mentohust/src/md5.c -------------------------------------------------------------------------------- /mentohust/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mentohust/src/md5.h -------------------------------------------------------------------------------- /mentohust/src/mentohust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mentohust/src/mentohust.c -------------------------------------------------------------------------------- /mentohust/src/mycheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mentohust/src/mycheck.c -------------------------------------------------------------------------------- /mentohust/src/mycheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mentohust/src/mycheck.h -------------------------------------------------------------------------------- /mentohust/src/myconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mentohust/src/myconfig.c -------------------------------------------------------------------------------- /mentohust/src/myconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mentohust/src/myconfig.h -------------------------------------------------------------------------------- /mentohust/src/myfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mentohust/src/myfunc.c -------------------------------------------------------------------------------- /mentohust/src/myfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mentohust/src/myfunc.h -------------------------------------------------------------------------------- /mentohust/src/myini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mentohust/src/myini.c -------------------------------------------------------------------------------- /mentohust/src/myini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mentohust/src/myini.h -------------------------------------------------------------------------------- /mentohust/src/mystate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mentohust/src/mystate.c -------------------------------------------------------------------------------- /mentohust/src/mystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mentohust/src/mystate.h -------------------------------------------------------------------------------- /mentohust/src/strnormalize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mentohust/src/strnormalize.c -------------------------------------------------------------------------------- /mentohust/src/strnormalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mentohust/src/strnormalize.h -------------------------------------------------------------------------------- /mentohust/src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mentohust/src/types.h -------------------------------------------------------------------------------- /mosdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mosdns/Makefile -------------------------------------------------------------------------------- /mosdns/patches/201-compatible-with-go1.20.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mosdns/patches/201-compatible-with-go1.20.patch -------------------------------------------------------------------------------- /mosdns/patches/205-format-logtime.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/mosdns/patches/205-format-logtime.patch -------------------------------------------------------------------------------- /msd_lite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/msd_lite/Makefile -------------------------------------------------------------------------------- /msd_lite/files/msd_lite.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/msd_lite/files/msd_lite.config -------------------------------------------------------------------------------- /msd_lite/files/msd_lite.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/msd_lite/files/msd_lite.init -------------------------------------------------------------------------------- /msd_lite/files/msd_lite.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/msd_lite/files/msd_lite.sample -------------------------------------------------------------------------------- /oaf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/oaf/Makefile -------------------------------------------------------------------------------- /oaf/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/oaf/src/Makefile -------------------------------------------------------------------------------- /oaf/src/af_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/oaf/src/af_client.c -------------------------------------------------------------------------------- /oaf/src/af_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/oaf/src/af_client.h -------------------------------------------------------------------------------- /oaf/src/af_client_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/oaf/src/af_client_fs.c -------------------------------------------------------------------------------- /oaf/src/af_client_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/oaf/src/af_client_fs.h -------------------------------------------------------------------------------- /oaf/src/af_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/oaf/src/af_log.c -------------------------------------------------------------------------------- /oaf/src/af_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/oaf/src/af_log.h -------------------------------------------------------------------------------- /oaf/src/af_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/oaf/src/af_utils.c -------------------------------------------------------------------------------- /oaf/src/af_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/oaf/src/af_utils.h -------------------------------------------------------------------------------- /oaf/src/app_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/oaf/src/app_filter.c -------------------------------------------------------------------------------- /oaf/src/app_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/oaf/src/app_filter.h -------------------------------------------------------------------------------- /oaf/src/app_filter_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/oaf/src/app_filter_config.c -------------------------------------------------------------------------------- /oaf/src/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/oaf/src/cJSON.c -------------------------------------------------------------------------------- /oaf/src/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/oaf/src/cJSON.h -------------------------------------------------------------------------------- /oaf/src/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/oaf/src/regexp.c -------------------------------------------------------------------------------- /open-app-filter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/open-app-filter/Makefile -------------------------------------------------------------------------------- /open-app-filter/files/appfilter.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/open-app-filter/files/appfilter.config -------------------------------------------------------------------------------- /open-app-filter/files/appfilter.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/open-app-filter/files/appfilter.init -------------------------------------------------------------------------------- /open-app-filter/files/feature_cn.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/open-app-filter/files/feature_cn.cfg -------------------------------------------------------------------------------- /open-app-filter/files/feature_en.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/open-app-filter/files/feature_en.cfg -------------------------------------------------------------------------------- /open-app-filter/files/gen_class.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/open-app-filter/files/gen_class.sh -------------------------------------------------------------------------------- /open-app-filter/files/oaf_rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/open-app-filter/files/oaf_rule -------------------------------------------------------------------------------- /open-app-filter/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/open-app-filter/src/Makefile -------------------------------------------------------------------------------- /open-app-filter/src/appfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/open-app-filter/src/appfilter.h -------------------------------------------------------------------------------- /open-app-filter/src/appfilter_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/open-app-filter/src/appfilter_config.c -------------------------------------------------------------------------------- /open-app-filter/src/appfilter_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/open-app-filter/src/appfilter_config.h -------------------------------------------------------------------------------- /open-app-filter/src/appfilter_netlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/open-app-filter/src/appfilter_netlink.c -------------------------------------------------------------------------------- /open-app-filter/src/appfilter_netlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/open-app-filter/src/appfilter_netlink.h -------------------------------------------------------------------------------- /open-app-filter/src/appfilter_ubus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/open-app-filter/src/appfilter_ubus.c -------------------------------------------------------------------------------- /open-app-filter/src/appfilter_ubus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/open-app-filter/src/appfilter_ubus.h -------------------------------------------------------------------------------- /open-app-filter/src/appfilter_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/open-app-filter/src/appfilter_user.c -------------------------------------------------------------------------------- /open-app-filter/src/appfilter_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/open-app-filter/src/appfilter_user.h -------------------------------------------------------------------------------- /open-app-filter/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/open-app-filter/src/main.c -------------------------------------------------------------------------------- /open-app-filter/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/open-app-filter/src/utils.c -------------------------------------------------------------------------------- /open-app-filter/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/open-app-filter/src/utils.h -------------------------------------------------------------------------------- /openwrt-passwall/brook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/brook/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/chinadns-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/chinadns-ng/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/dns2socks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/dns2socks/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/dns2tcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/dns2tcp/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/gn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/gn/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/gn/patches/010-gcc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/gn/patches/010-gcc.patch -------------------------------------------------------------------------------- /openwrt-passwall/hysteria/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/hysteria/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/ipt2socks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/ipt2socks/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/microsocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/microsocks/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/naiveproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/naiveproxy/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/naiveproxy/src/init_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/naiveproxy/src/init_env.sh -------------------------------------------------------------------------------- /openwrt-passwall/pdnsd-alt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/pdnsd-alt/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/pdnsd-alt/files/pdnsd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/pdnsd-alt/files/pdnsd.init -------------------------------------------------------------------------------- /openwrt-passwall/shadowsocks-rust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/shadowsocks-rust/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/shadowsocksr-libev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/shadowsocksr-libev/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/simple-obfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/simple-obfs/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/sing-box/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/sing-box/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/sing-box/files/sing-box.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/sing-box/files/sing-box.init -------------------------------------------------------------------------------- /openwrt-passwall/ssocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/ssocks/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/ssocks/patches/001-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/ssocks/patches/001-fix.patch -------------------------------------------------------------------------------- /openwrt-passwall/ssocks/patches/002-gcc10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/ssocks/patches/002-gcc10.patch -------------------------------------------------------------------------------- /openwrt-passwall/tcping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/tcping/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/trojan-go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/trojan-go/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/trojan-plus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/trojan-plus/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/trojan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/trojan/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/tuic-client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/tuic-client/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/v2ray-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/v2ray-core/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/v2ray-core/files/v2ray.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/v2ray-core/files/v2ray.conf -------------------------------------------------------------------------------- /openwrt-passwall/v2ray-core/files/v2ray.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/v2ray-core/files/v2ray.init -------------------------------------------------------------------------------- /openwrt-passwall/v2ray-geodata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/v2ray-geodata/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/v2ray-plugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/v2ray-plugin/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/xray-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/xray-core/Makefile -------------------------------------------------------------------------------- /openwrt-passwall/xray-core/files/xray.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/xray-core/files/xray.conf -------------------------------------------------------------------------------- /openwrt-passwall/xray-core/files/xray.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/xray-core/files/xray.init -------------------------------------------------------------------------------- /openwrt-passwall/xray-plugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/openwrt-passwall/xray-plugin/Makefile -------------------------------------------------------------------------------- /qBittorrent-Enhanced-Edition/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/qBittorrent-Enhanced-Edition/Makefile -------------------------------------------------------------------------------- /quickstart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/quickstart/Makefile -------------------------------------------------------------------------------- /quickstart/files/quickstart.config: -------------------------------------------------------------------------------- 1 | config quickstart 'main' 2 | -------------------------------------------------------------------------------- /quickstart/files/quickstart.hotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/quickstart/files/quickstart.hotplug -------------------------------------------------------------------------------- /quickstart/files/quickstart.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/quickstart/files/quickstart.init -------------------------------------------------------------------------------- /quickstart/files/quickstart.uci-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/quickstart/files/quickstart.uci-default -------------------------------------------------------------------------------- /smartdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/smartdns/Makefile -------------------------------------------------------------------------------- /taskd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/taskd/Makefile -------------------------------------------------------------------------------- /taskd/files/taskd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/taskd/files/taskd.sh -------------------------------------------------------------------------------- /taskd/files/tasks.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/taskd/files/tasks.init -------------------------------------------------------------------------------- /udp2raw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/udp2raw/Makefile -------------------------------------------------------------------------------- /unishare/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/unishare/Makefile -------------------------------------------------------------------------------- /unishare/files/unishare.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/unishare/files/unishare.config -------------------------------------------------------------------------------- /unishare/files/unishare.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/unishare/files/unishare.init -------------------------------------------------------------------------------- /v2dat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/v2dat/Makefile -------------------------------------------------------------------------------- /v2dat/patches/100-format-logtime.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/v2dat/patches/100-format-logtime.patch -------------------------------------------------------------------------------- /webdav2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/webdav2/Makefile -------------------------------------------------------------------------------- /webdav2/files/webdav2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/webdav2/files/webdav2.config -------------------------------------------------------------------------------- /webdav2/files/webdav2.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/webdav2/files/webdav2.init -------------------------------------------------------------------------------- /wrtbwmon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/wrtbwmon/Makefile -------------------------------------------------------------------------------- /wrtbwmon/net/etc/config/wrtbwmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/wrtbwmon/net/etc/config/wrtbwmon -------------------------------------------------------------------------------- /wrtbwmon/net/etc/hotplug.d/iface/99-wrtbwmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/wrtbwmon/net/etc/hotplug.d/iface/99-wrtbwmon -------------------------------------------------------------------------------- /wrtbwmon/net/etc/init.d/wrtbwmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/wrtbwmon/net/etc/init.d/wrtbwmon -------------------------------------------------------------------------------- /wrtbwmon/net/usr/sbin/readDB.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/wrtbwmon/net/usr/sbin/readDB.awk -------------------------------------------------------------------------------- /wrtbwmon/net/usr/sbin/wrtbwmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/wrtbwmon/net/usr/sbin/wrtbwmon -------------------------------------------------------------------------------- /wrtbwmon/net/usr/share/wrtbwmon/usage.htm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/wrtbwmon/net/usr/share/wrtbwmon/usage.htm1 -------------------------------------------------------------------------------- /wrtbwmon/net/usr/share/wrtbwmon/usage.htm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiibo/openwrt-packages/HEAD/wrtbwmon/net/usr/share/wrtbwmon/usage.htm2 --------------------------------------------------------------------------------