├── .github └── workflows │ ├── Test build.yml │ └── Test plugins.yml ├── LICENSE ├── README.md ├── UnblockNeteaseMusic └── Makefile ├── adguardhome ├── Makefile └── files │ ├── adguardhome.config │ └── adguardhome.init ├── alist ├── Makefile ├── files │ ├── alist.config │ ├── alist.init │ └── data.db └── src │ └── public │ └── dist │ └── assets │ └── logo.svg ├── aliyundrive-webdav ├── Makefile └── files │ ├── aliyundrive-webdav.config │ └── aliyundrive-webdav.init ├── brook └── Makefile ├── cdnspeedtest └── Makefile ├── chinadns-ng └── Makefile ├── commit └── versions.txt ├── daed-next ├── Makefile └── files │ ├── daed-next.config │ └── daed-next.init ├── 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 ├── dns2socks-rust └── Makefile ├── dns2socks └── Makefile ├── dns2tcp └── Makefile ├── docker ├── Makefile └── git-short-commit.sh ├── dockerd ├── Config.in ├── Makefile ├── files │ ├── dockerd.init │ └── etc │ │ ├── config │ │ └── dockerd │ │ └── sysctl.d │ │ └── sysctl-br-netfilter-ip.conf └── git-short-commit.sh ├── filebrowser ├── Makefile └── files │ ├── filebrowser.config │ └── filebrowser.init ├── geoview └── Makefile ├── gn ├── Makefile └── src │ └── out │ └── last_commit_position.h ├── gost ├── Makefile └── files │ ├── gost.config │ ├── gost.init │ └── gost.uci ├── hysteria └── Makefile ├── ipt2socks └── Makefile ├── lua-neturl ├── Makefile └── patches │ └── 010-userinfo-regex.patch ├── 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 │ └── zh_Hans │ │ └── adguardhome.po └── root │ ├── etc │ ├── AdGuardHome.yaml │ ├── 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 ├── README.md ├── 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 ├── LICENSE ├── Makefile ├── README.md ├── 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 │ └── uci-defaults │ │ └── 50-luci-alist │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-alist.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_rescue.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 │ ├── templates │ │ └── argon-config.pot │ ├── zh-cn │ └── zh_Hans │ │ └── 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-argone-config ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── argone-config.lua │ ├── model │ │ └── cbi │ │ │ └── argone-config.lua │ └── view │ │ └── argone-config │ │ ├── other_button.htm │ │ ├── other_dvalue.htm │ │ └── other_upload.htm ├── po │ ├── es │ │ └── argone-config.po │ ├── templates │ │ └── argone-config.pot │ ├── zh-cn │ │ └── argone-config.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── argone │ └── uci-defaults │ │ └── luci-argone-config │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-argone-config.json ├── 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 │ │ ├── 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 │ │ └── ucitrack │ │ └── 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 │ ├── bn.svg │ ├── bo.svg │ ├── bq.svg │ ├── br.svg │ ├── bs.svg │ ├── bt.svg │ ├── bv.svg │ ├── bw.svg │ ├── by.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 │ ├── in.svg │ ├── io.svg │ ├── iq.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 │ ├── kz.svg │ ├── la.svg │ ├── lb.svg │ ├── lc.svg │ ├── loading.svg │ ├── lr.svg │ ├── ls.svg │ ├── lt.svg │ ├── lu.svg │ ├── lv.svg │ ├── ly.svg │ ├── ma.svg │ ├── mc.svg │ ├── md.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 │ ├── 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 │ ├── vc.svg │ ├── ve.svg │ ├── vi.svg │ ├── vn.svg │ ├── vu.svg │ ├── wf.svg │ ├── ws.svg │ ├── ye.svg │ ├── yt.svg │ ├── za.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 ├── LICENSE ├── Makefile ├── README.md ├── 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-dae ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── dae │ │ ├── config.js │ │ ├── log.js │ │ └── settings.js ├── po │ ├── templates │ │ └── dae.pot │ ├── zh-cn │ └── zh_Hans │ │ └── dae.po └── root │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-dae.json │ └── rpcd │ └── acl.d │ └── luci-app-dae.json ├── luci-app-daed-next ├── Makefile ├── luasrc │ ├── controller │ │ └── daed-next.lua │ ├── model │ │ └── cbi │ │ │ └── daed-next │ │ │ ├── basic.lua │ │ │ └── log.lua │ └── view │ │ └── daed-next │ │ ├── daed-next_error.htm │ │ ├── daed-next_log.htm │ │ ├── daed-next_status.htm │ │ └── dashboard.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── daed-next.po └── root │ ├── etc │ ├── daed-next │ │ ├── daed-next_sub.sh │ │ └── dashboard.sh │ ├── init.d │ │ └── luci_daed-next │ └── uci-defaults │ │ └── luci-daed-next │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-daed-next.json ├── luci-app-daed ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── daed │ │ ├── config.js │ │ └── log.js ├── po │ ├── templates │ │ └── daed.pot │ ├── zh-cn │ └── zh_Hans │ │ └── daed.po └── root │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-daed.json │ └── rpcd │ └── acl.d │ └── luci-app-daed.json ├── luci-app-ddns-go ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── ddns-go │ │ ├── config.js │ │ ├── ddns-go.js │ │ └── log.js ├── po │ ├── templates │ │ └── ddns-go.pot │ ├── zh-cn │ └── 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 │ ├── luci │ └── menu.d │ │ └── luci-app-ddns-go.json │ └── rpcd │ ├── acl.d │ └── luci-app-ddns-go.json │ └── ucode │ └── luci.ddns-go ├── 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-diskman ├── Makefile ├── luasrc │ ├── controller │ │ └── diskman.lua │ ├── model │ │ ├── cbi │ │ │ └── diskman │ │ │ │ ├── btrfs.lua │ │ │ │ ├── disks.lua │ │ │ │ └── partition.lua │ │ └── diskman.lua │ └── view │ │ └── diskman │ │ ├── cbi │ │ ├── disabled_button.htm │ │ ├── format_button.htm │ │ ├── inlinebutton.htm │ │ ├── xnullsection.htm │ │ └── xsimpleform.htm │ │ ├── disk_info.htm │ │ ├── partition_info.htm │ │ └── smart_detail.htm └── po │ ├── pl │ └── diskman.po │ ├── templates │ └── diskman.pot │ ├── zh-cn │ ├── zh_Hans │ └── diskman.po │ └── zh_Hant │ └── diskman.po ├── luci-app-dnsfilter ├── Makefile ├── README.md ├── 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 ├── README.md ├── 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 ├── LICENSE ├── Makefile ├── README.md ├── README_ZH.md ├── luasrc │ ├── controller │ │ └── eqos.lua │ └── model │ │ └── cbi │ │ └── eqos.lua ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── eqos.po └── root │ ├── etc │ ├── config │ │ └── eqos │ ├── hotplug.d │ │ └── iface │ │ │ └── 10-eqos │ ├── init.d │ │ └── eqos │ └── uci-defaults │ │ └── 40_luci-eqos │ └── usr │ ├── sbin │ └── eqos │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-eqos.json ├── luci-app-fchomo ├── .prepare.sh ├── Makefile ├── docs │ ├── Ruleset-URI-Scheme.md │ ├── audio │ │ └── A!.mp3 │ ├── css │ │ └── ClearnessDark.css │ ├── example │ │ ├── bypasscn.config │ │ └── gfwlist.config │ └── img │ │ └── shark-taiko.gif ├── htdocs │ └── luci-static │ │ └── resources │ │ ├── fchomo.js │ │ └── view │ │ └── fchomo │ │ ├── client.js │ │ ├── global.js │ │ ├── hosts.js │ │ ├── log.js │ │ ├── node.css │ │ ├── node.js │ │ ├── ruleset.js │ │ └── server.js ├── po │ ├── templates │ │ └── fchomo.pot │ ├── zh-cn │ ├── zh_Hans │ │ └── fchomo.po │ └── zh_Hant │ │ └── fchomo.po └── root │ ├── etc │ ├── capabilities │ │ └── fchomo.json │ ├── config │ │ └── fchomo │ ├── init.d │ │ └── fchomo │ └── uci-defaults │ │ ├── 99_luci-app-fchomo │ │ ├── 99_luci-app-fchomo-migration │ │ ├── 99_luci-app-fchomo-migration_node │ │ └── 99_luci-app-fchomo-migration_rule │ └── usr │ ├── libexec │ └── fchomo │ │ ├── clean_log.sh │ │ ├── natcheck.sh │ │ └── update_resources.sh │ └── share │ ├── fchomo │ ├── firewall_post.ut │ ├── firewall_pre.ut │ ├── generate_client.uc │ └── generate_server.uc │ ├── luci │ └── menu.d │ │ └── luci-app-fchomo.json │ ├── rpcd │ ├── acl.d │ │ └── luci-app-fchomo.json │ └── ucode │ │ └── luci.fchomo │ └── ucode │ └── fchomo.uc ├── luci-app-fileassistant ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── fileassistant │ │ ├── fb.css │ │ ├── fb.js │ │ ├── file-icon.png │ │ ├── folder-icon.png │ │ └── link-icon.png ├── luasrc │ ├── controller │ │ └── fileassistant.lua │ └── view │ │ └── fileassistant.htm └── root │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-fileassistant.json ├── luci-app-filebrowser-go ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── filebrowser.js ├── po │ ├── templates │ │ └── filebrowser.pot │ ├── zh-cn │ └── zh_Hans │ │ └── filebrowser.po └── root │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-filebrowser.json │ └── rpcd │ └── acl.d │ └── luci-app-filebrowser.json ├── luci-app-filebrowser ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── system │ │ └── filebrowser.js ├── po │ ├── ar │ │ └── filebrowser.po │ ├── ast │ │ └── filebrowser.po │ ├── ca │ │ └── filebrowser.po │ ├── cs │ │ └── filebrowser.po │ ├── da │ │ └── filebrowser.po │ ├── de │ │ └── filebrowser.po │ ├── eo │ │ └── filebrowser.po │ ├── es │ │ └── filebrowser.po │ ├── et │ │ └── filebrowser.po │ ├── fa │ │ └── filebrowser.po │ ├── fi │ │ └── filebrowser.po │ ├── fr │ │ └── filebrowser.po │ ├── ga │ │ └── filebrowser.po │ ├── hu │ │ └── filebrowser.po │ ├── it │ │ └── filebrowser.po │ ├── ja │ │ └── filebrowser.po │ ├── lt │ │ └── filebrowser.po │ ├── lv │ │ └── filebrowser.po │ ├── nl │ │ └── filebrowser.po │ ├── pl │ │ └── filebrowser.po │ ├── pt │ │ └── filebrowser.po │ ├── pt_BR │ │ └── filebrowser.po │ ├── ro │ │ └── filebrowser.po │ ├── ru │ │ └── filebrowser.po │ ├── sk │ │ └── filebrowser.po │ ├── sv │ │ └── filebrowser.po │ ├── ta │ │ └── filebrowser.po │ ├── templates │ │ └── filebrowser.pot │ ├── tr │ │ └── filebrowser.po │ ├── uk │ │ └── filebrowser.po │ ├── vi │ │ └── filebrowser.po │ ├── yua │ │ └── filebrowser.po │ ├── zh-cn │ ├── zh_Hans │ │ └── filebrowser.po │ └── zh_Hant │ │ └── filebrowser.po └── root │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-filebrowser.json │ └── rpcd │ └── acl.d │ └── luci-app-filebrowser.json ├── luci-app-gost ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── gost.js ├── po │ ├── templates │ │ └── gost.pot │ ├── zh-cn │ └── zh_Hans │ │ └── gost.po └── root │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-gost.json │ └── rpcd │ └── acl.d │ └── luci-app-gost.json ├── luci-app-guest-wifi ├── Makefile ├── README.md ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ ├── guest-wifi.js │ │ └── guest-wifi │ │ └── wifi.js ├── luasrc │ ├── controller │ │ └── guest-wifi.lua │ └── model │ │ └── cbi │ │ └── guest-wifi │ │ └── wifi.lua ├── po │ ├── templates │ │ └── guest-wifi.pot │ ├── zh-cn │ │ └── guest-wifi.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── guest-wifi │ ├── init.d │ │ └── guest-wifi │ └── uci-defaults │ │ ├── 40_luci-guest-wifi │ │ └── luci-i18n-guest-wifi-zh-cn │ └── usr │ ├── lib │ └── lua │ │ └── luci │ │ └── controller │ │ └── guest-wifi.lua │ ├── sbin │ └── guest-wifi │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-guest-wifi.json │ └── rpcd │ └── acl.d │ └── luci-app-guest-wifi.json ├── luci-app-homeproxy ├── LICENSE ├── Makefile ├── README ├── htdocs │ └── luci-static │ │ └── resources │ │ ├── homeproxy.js │ │ └── view │ │ └── homeproxy │ │ ├── client.js │ │ ├── node.js │ │ ├── server.js │ │ └── status.js ├── po │ ├── templates │ │ └── homeproxy.pot │ ├── zh-cn │ └── zh_Hans │ │ └── homeproxy.po └── root │ ├── etc │ ├── capabilities │ │ └── homeproxy.json │ ├── config │ │ └── homeproxy │ ├── homeproxy │ │ ├── resources │ │ │ ├── china_ip4.txt │ │ │ ├── china_ip4.ver │ │ │ ├── china_ip6.txt │ │ │ ├── china_ip6.ver │ │ │ ├── china_list.txt │ │ │ ├── china_list.ver │ │ │ ├── gfw_list.txt │ │ │ └── gfw_list.ver │ │ └── scripts │ │ │ ├── clean_log.sh │ │ │ ├── firewall_post.ut │ │ │ ├── firewall_pre.uc │ │ │ ├── generate_client.uc │ │ │ ├── generate_server.uc │ │ │ ├── homeproxy.uc │ │ │ ├── migrate_config.uc │ │ │ ├── update_crond.sh │ │ │ ├── update_resources.sh │ │ │ └── update_subscriptions.uc │ ├── init.d │ │ └── homeproxy │ └── uci-defaults │ │ ├── luci-homeproxy │ │ └── luci-homeproxy-migration │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-homeproxy.json │ └── rpcd │ ├── acl.d │ └── luci-app-homeproxy.json │ └── ucode │ └── luci.homeproxy ├── luci-app-ikoolproxy ├── Makefile ├── README.md ├── change.log ├── development.doc ├── koolproxy │ ├── Makefile │ └── files │ │ ├── aarch64 │ │ ├── arm │ │ ├── i386 │ │ ├── mips │ │ ├── mipsel │ │ └── x86_64 ├── luasrc │ ├── controller │ │ └── koolproxy.lua │ ├── model │ │ └── cbi │ │ │ └── koolproxy │ │ │ ├── add_rule.lua │ │ │ ├── basic.lua │ │ │ ├── black_list.lua │ │ │ ├── cert.lua │ │ │ ├── control.lua │ │ │ ├── custom_rule.lua │ │ │ ├── ip_black_list.lua │ │ │ ├── ip_white_list.lua │ │ │ ├── rss_rule.lua │ │ │ ├── tips.lua │ │ │ ├── update_log.lua │ │ │ └── white_list.lua │ └── view │ │ └── koolproxy │ │ ├── cadvalue.htm │ │ ├── caupload.htm │ │ ├── koolproxy_status.htm │ │ └── tips.htm └── root │ ├── etc │ ├── adblocklist │ │ ├── adblock │ │ ├── adblockip │ │ ├── adbypass │ │ └── adbypassip │ ├── config │ │ └── koolproxy │ ├── init.d │ │ └── koolproxy │ └── uci-defaults │ │ └── luci-koolproxy │ ├── lib │ └── upgrade │ │ └── keep.d │ │ └── koolproxy │ └── usr │ ├── sbin │ └── adblockplus │ └── share │ ├── koolproxy │ ├── adblock.conf │ ├── camanagement │ ├── data │ │ ├── gen_ca.sh │ │ ├── openssl.cnf │ │ ├── rules │ │ │ └── user.txt │ │ ├── source.list │ │ └── user.txt │ ├── dnsmasq.adblock │ ├── koolproxy_ipset.conf │ └── kpupdate │ ├── rpcd │ └── acl.d │ │ └── luci-app-ikoolproxy.json │ └── ucitrack │ └── luci-app-ikoolproxy.json ├── luci-app-istorex ├── Makefile ├── htdocs │ └── luci-static │ │ └── istorex │ │ ├── bg.jpg │ │ ├── chunk.167c223d.js │ │ ├── chunk.18e0c91d.js │ │ ├── chunk.211ffb47.js │ │ ├── chunk.2147605f.js │ │ ├── chunk.25dae49f.js │ │ ├── chunk.403244cc.js │ │ ├── chunk.41b74402.js │ │ ├── chunk.42bb6629.js │ │ ├── chunk.4d4bc89c.js │ │ ├── chunk.4f4af73e.js │ │ ├── chunk.5e41a3f0.js │ │ ├── chunk.6d3585bb.js │ │ ├── chunk.6f7d3090.js │ │ ├── chunk.7deee291.js │ │ ├── chunk.83d679c2.js │ │ ├── chunk.8bf617a1.js │ │ ├── chunk.8f1ff823.js │ │ ├── chunk.a1bcc52b.js │ │ ├── chunk.b7ccb4ed.js │ │ ├── chunk.d9ea7f57.js │ │ ├── chunk.de33ea3e.js │ │ ├── chunk.ead1f974.js │ │ ├── chunk.f2b02e0d.js │ │ ├── chunk.fb51d2b2.js │ │ ├── chunk.fdf02bc2.js │ │ ├── chunk.ff94f9f2.js │ │ ├── chunk.ffd7724b.js │ │ ├── copy.png │ │ ├── device.svg │ │ ├── disk.png │ │ ├── file-manage.png │ │ ├── file.png │ │ ├── folder.png │ │ ├── icon_language_auto.png │ │ ├── icon_language_cantonese.png │ │ ├── icon_language_cn.png │ │ ├── icon_language_en.png │ │ ├── image │ │ ├── bg.gif │ │ └── logo.png │ │ ├── index.js │ │ ├── info.svg │ │ ├── logo.png │ │ ├── logout.svg │ │ ├── nas.png │ │ ├── network.png │ │ ├── network.svg │ │ ├── open.svg │ │ ├── partition.png │ │ ├── photo.png │ │ ├── right.svg │ │ ├── safari.svg │ │ ├── setting.png │ │ ├── setting.svg │ │ ├── setup.svg │ │ ├── store@3x.png │ │ ├── style.css │ │ ├── sync.png │ │ ├── tag-0.png │ │ ├── tag-1.png │ │ ├── tag-2.png │ │ ├── tag-3.png │ │ ├── tag-4.png │ │ ├── task.svg │ │ ├── user.png │ │ └── warning.svg ├── luasrc │ ├── controller │ │ └── istorex.lua │ └── view │ │ └── istorex │ │ ├── index.htm │ │ ├── main.htm │ │ └── main_dev.htm └── root │ ├── etc │ ├── config │ │ └── istorex │ └── uci-defaults │ │ └── 50_luci-istorex │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-istorex.json │ └── rpcd │ └── acl.d │ └── luci-app-istorex.json ├── luci-app-lucky ├── README.md ├── doc │ ├── lucky1.png │ ├── lucky2.png │ └── lucky3.png ├── luci-app-lucky │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── lucky │ │ │ ├── config.js │ │ │ └── lucky.js │ ├── po │ │ └── zh_Hans │ │ │ └── lucky.po │ └── root │ │ ├── etc │ │ └── uci-defaults │ │ │ └── luci-app-lucky │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-lucky.json │ │ └── rpcd │ │ ├── acl.d │ │ └── luci-app-lucky.json │ │ └── ucode │ │ └── luci.lucky └── lucky │ ├── Makefile │ └── files │ ├── lucky.config │ ├── lucky.init │ └── luckyarch.bin ├── luci-app-microsocks ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── microsocks.js ├── po │ ├── templates │ │ └── microsocks.pot │ ├── zh-cn │ └── zh_Hans │ │ └── microsocks.po └── root │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-microsocks.json │ └── rpcd │ └── acl.d │ └── luci-app-microsocks.json ├── luci-app-momo ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ ├── tools │ │ └── momo.js │ │ └── view │ │ └── momo │ │ ├── app.js │ │ ├── editor.js │ │ ├── log.js │ │ ├── profile.js │ │ └── proxy.js ├── po │ ├── templates │ │ └── momo.pot │ ├── zh-cn │ └── zh_Hans │ │ └── momo.po └── root │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-momo.json │ └── rpcd │ ├── acl.d │ └── luci-app-momo.json │ └── ucode │ └── luci.momo ├── 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 │ │ │ ├── streaming.txt │ │ │ └── whitelist.txt │ └── uci-defaults │ │ └── luci-mosdns │ ├── usr │ └── share │ │ ├── mosdns │ │ ├── cache.dump │ │ └── 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-nikki ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ ├── tools │ │ └── nikki.js │ │ └── view │ │ └── nikki │ │ ├── app.js │ │ ├── editor.js │ │ ├── log.js │ │ ├── mixin.js │ │ ├── profile.js │ │ └── proxy.js ├── po │ ├── templates │ │ └── nikki.pot │ ├── zh-cn │ ├── zh_Hans │ │ └── nikki.po │ └── zh_Hant │ │ └── nikki.po └── root │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-nikki.json │ └── rpcd │ ├── acl.d │ └── luci-app-nikki.json │ └── ucode │ └── luci.nikki ├── 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_edit.htm │ │ ├── config_editor.htm │ │ ├── config_upload.htm │ │ ├── debug.htm │ │ ├── developer.htm │ │ ├── dler_login.htm │ │ ├── dlercloud.htm │ │ ├── download_rule.htm │ │ ├── dvalue.htm │ │ ├── flush_dns_cache.htm │ │ ├── flush_smart_cache.htm │ │ ├── input_file_name.htm │ │ ├── input_rename.htm │ │ ├── log.htm │ │ ├── myip.htm │ │ ├── other_button.htm │ │ ├── other_stream_option.htm │ │ ├── select_git_cdn.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 │ │ ├── update_config.htm │ │ └── upload.htm ├── po │ ├── zh-cn │ │ └── openclash.zh-cn.po │ └── zh_Hans ├── root │ ├── etc │ │ ├── config │ │ │ └── openclash │ │ ├── init.d │ │ │ └── openclash │ │ ├── openclash │ │ │ ├── Country.mmdb │ │ │ ├── GeoSite.dat │ │ │ ├── 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_overwrite.sh │ │ │ │ ├── openclash_custom_rules.list │ │ │ │ ├── openclash_custom_rules_2.list │ │ │ │ └── openclash_custom_sniffer.yaml │ │ │ ├── game_rules │ │ │ │ ├── CS-GO.rules │ │ │ │ ├── Monster-Hunter-World.rules │ │ │ │ └── Steam.rules │ │ │ ├── overwrite │ │ │ │ └── default │ │ │ └── rule_provider │ │ │ │ ├── ABC │ │ │ │ ├── AI Suite │ │ │ │ ├── Abema_TV │ │ │ │ ├── Amazon │ │ │ │ ├── Apple │ │ │ │ ├── Apple_Music │ │ │ │ ├── Apple_News │ │ │ │ ├── Apple_TV │ │ │ │ ├── BBC_iPlayer │ │ │ │ ├── Bahamut │ │ │ │ ├── Bilibili │ │ │ │ ├── Crypto │ │ │ │ ├── DAZN │ │ │ │ ├── Discord │ │ │ │ ├── Discovery_Plus │ │ │ │ ├── Disney_Plus │ │ │ │ ├── Domestic │ │ │ │ ├── Domestic_IPs │ │ │ │ ├── F1_TV │ │ │ │ ├── FCM │ │ │ │ ├── Fox+ │ │ │ │ ├── Fox_Now │ │ │ │ ├── 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 │ │ │ │ ├── Telegram │ │ │ │ ├── Tencent_Video │ │ │ │ ├── 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_curl.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_geoasn.sh │ │ │ ├── openclash_geoip.sh │ │ │ ├── openclash_geosite.sh │ │ │ ├── openclash_get_network.lua │ │ │ ├── openclash_history_get.sh │ │ │ ├── openclash_ipdb.sh │ │ │ ├── openclash_lgbm.sh │ │ │ ├── openclash_ps.sh │ │ │ ├── openclash_rule.sh │ │ │ ├── openclash_streaming_unlock.lua │ │ │ ├── openclash_sub_parser.lua │ │ │ ├── openclash_update.sh │ │ │ ├── openclash_urlencode.lua │ │ │ ├── openclash_version.sh │ │ │ ├── openclash_watchdog.sh │ │ │ ├── res │ │ │ │ ├── default.yaml │ │ │ │ ├── game_rules.list │ │ │ │ ├── lhie1.yaml │ │ │ │ ├── rule_providers.list │ │ │ │ └── sub_ini.list │ │ │ ├── ruby.sh │ │ │ ├── uci.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-9NNS9COU.js │ │ │ │ │ │ ├── Config-OnPrERLZ.js │ │ │ │ │ │ ├── Connections-CgFIezGO.js │ │ │ │ │ │ ├── Connections-N_Z6THP_.js │ │ │ │ │ │ ├── DocumentTitle-DG90V81t.js │ │ │ │ │ │ ├── FiraSans-Regular-BN6hITtY.ttf │ │ │ │ │ │ ├── IconChevronRight-Dm97ewab.js │ │ │ │ │ │ ├── IconReload--QlVe2wP.js │ │ │ │ │ │ ├── IconReload-BSlLPZuq.js │ │ │ │ │ │ ├── Logs-DcK4Yp9Y.js │ │ │ │ │ │ ├── Logs-uIQcQmXC.js │ │ │ │ │ │ ├── Overview-B99qGorf.js │ │ │ │ │ │ ├── Overview-BP3yBMkt.js │ │ │ │ │ │ ├── Proxies-BRo6NEi-.js │ │ │ │ │ │ ├── Proxies-Lk5uJ4LX.js │ │ │ │ │ │ ├── Rules-B-8TizmP.js │ │ │ │ │ │ ├── Rules-C4_l0aqo.js │ │ │ │ │ │ ├── Setup-10EXNRX9.js │ │ │ │ │ │ ├── Setup-CdphtcBj.js │ │ │ │ │ │ ├── TwemojiMozilla-flags-B12sb_Bp.woff2 │ │ │ │ │ │ ├── apexcharts.esm-D-nlnKto.js │ │ │ │ │ │ ├── fira-sans-cyrillic-400-normal-CKu2TFQr.woff2 │ │ │ │ │ │ ├── fira-sans-cyrillic-400-normal-D9eUeF-O.woff │ │ │ │ │ │ ├── fira-sans-cyrillic-ext-400-normal-Cycyekte.woff2 │ │ │ │ │ │ ├── fira-sans-cyrillic-ext-400-normal-Dd5dApAy.woff │ │ │ │ │ │ ├── fira-sans-greek-400-normal-BFCFncbp.woff2 │ │ │ │ │ │ ├── fira-sans-greek-400-normal-DQ8sF22y.woff │ │ │ │ │ │ ├── fira-sans-greek-ext-400-normal-ByG7UNQ2.woff2 │ │ │ │ │ │ ├── fira-sans-greek-ext-400-normal-ClCfNE6D.woff │ │ │ │ │ │ ├── fira-sans-latin-400-normal-66xCkunx.woff │ │ │ │ │ │ ├── fira-sans-latin-400-normal-a0AnQzuD.woff2 │ │ │ │ │ │ ├── fira-sans-latin-ext-400-normal-BCUwhuGB.woff │ │ │ │ │ │ ├── fira-sans-latin-ext-400-normal-BLG_mAEf.woff2 │ │ │ │ │ │ ├── fira-sans-vietnamese-400-normal-DUVG35gE.woff │ │ │ │ │ │ ├── fira-sans-vietnamese-400-normal-ljDTQFsx.woff2 │ │ │ │ │ │ ├── index-BaCG7ya-.css │ │ │ │ │ │ ├── index-CBBLUqwt.js │ │ │ │ │ │ ├── index-Csmv4Fkv.js │ │ │ │ │ │ ├── index-DIwJcTz_.js │ │ │ │ │ │ ├── index-M06kPDrB.css │ │ │ │ │ │ ├── lib-BxRDUvxo.js │ │ │ │ │ │ └── time-CHbJgbks.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-3e8df8c8.js │ │ │ │ ├── yacd │ │ │ │ │ ├── CNAME │ │ │ │ │ ├── Twemoji_Mozilla.ttf │ │ │ │ │ ├── _headers │ │ │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── BaseModal-67b45035.js │ │ │ │ │ │ ├── BaseModal-e9f180d4.css │ │ │ │ │ │ ├── Config-0e27f0a7.js │ │ │ │ │ │ ├── Config-7eb3f1bb.css │ │ │ │ │ │ ├── Connections-3a8982cd.js │ │ │ │ │ │ ├── Connections-796224c1.css │ │ │ │ │ │ ├── Fab-0b65516b.css │ │ │ │ │ │ ├── Fab-4ddb6e62.js │ │ │ │ │ │ ├── Input-6b5b5d17.js │ │ │ │ │ │ ├── Logs-093af7e2.js │ │ │ │ │ │ ├── Logs-beb8fc98.css │ │ │ │ │ │ ├── Proxies-706c7895.css │ │ │ │ │ │ ├── Proxies-7e5eba91.js │ │ │ │ │ │ ├── Rules-162ef666.css │ │ │ │ │ │ ├── Rules-821697d1.js │ │ │ │ │ │ ├── Select-07e025ab.css │ │ │ │ │ │ ├── Select-08cce14a.js │ │ │ │ │ │ ├── TextFitler-2126f69f.js │ │ │ │ │ │ ├── TextFitler-cbc3b0fe.css │ │ │ │ │ │ ├── Twemoji_Mozilla-6d90152e.ttf │ │ │ │ │ │ ├── chart-lib-9fcc76b8.js │ │ │ │ │ │ ├── debounce-c1ba2006.js │ │ │ │ │ │ ├── en-c97381af.js │ │ │ │ │ │ ├── index-3ec9e4ba.js │ │ │ │ │ │ ├── index-84fa0cb3.js │ │ │ │ │ │ ├── index-9f9232b9.css │ │ │ │ │ │ ├── index-e5a176ea.js │ │ │ │ │ │ ├── inter-latin-400-normal-0364d368.woff2 │ │ │ │ │ │ ├── inter-latin-400-normal-3ea830d4.woff │ │ │ │ │ │ ├── inter-latin-800-normal-a51ac27d.woff2 │ │ │ │ │ │ ├── inter-latin-800-normal-d08d7178.woff │ │ │ │ │ │ ├── logs-21b21b6b.js │ │ │ │ │ │ ├── memoize-one.esm-efa1e849.js │ │ │ │ │ │ ├── play-01245470.js │ │ │ │ │ │ ├── roboto-mono-latin-400-normal-7295944e.woff2 │ │ │ │ │ │ ├── roboto-mono-latin-400-normal-dffdffa7.woff │ │ │ │ │ │ ├── rotate-cw-a9fb12e9.js │ │ │ │ │ │ ├── useRemainingViewPortHeight-09d9f892.js │ │ │ │ │ │ ├── vi-3adf53dd.js │ │ │ │ │ │ ├── zh-cn-f6b462dd.js │ │ │ │ │ │ └── zh-tw-3f4136b7.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── manifest.webmanifest │ │ │ │ │ ├── registerSW.js │ │ │ │ │ ├── sw.js │ │ │ │ │ ├── yacd.ico │ │ │ │ │ └── yacd.png │ │ │ │ └── zashboard │ │ │ │ │ ├── CNAME │ │ │ │ │ ├── apple-touch-icon.png │ │ │ │ │ ├── assets │ │ │ │ │ ├── NotoColorEmoji-flagsonly-CWWDk9km.ttf │ │ │ │ │ ├── TwemojiMozilla-flags-B12sb_Bp.woff2 │ │ │ │ │ ├── index-B-U6Un3o.css │ │ │ │ │ ├── index-CcFj958A.js │ │ │ │ │ ├── index-DnsHUhFc.js │ │ │ │ │ ├── index-DrFVUP5k.css │ │ │ │ │ └── metacubex-BlQkOUXT.jpg │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── favicon.svg │ │ │ │ │ ├── icon.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.webmanifest │ │ │ │ │ ├── pwa-192x192.png │ │ │ │ │ ├── pwa-512x512.png │ │ │ │ │ ├── pwa-maskable-192x192.png │ │ │ │ │ ├── pwa-maskable-512x512.png │ │ │ │ │ ├── registerSW.js │ │ │ │ │ ├── sw.js │ │ │ │ │ └── workbox-3e8df8c8.js │ │ │ ├── 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 │ │ │ └── ucitrack │ │ │ └── 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 │ │ ├── arrow-clockwise-light.svg │ │ ├── logo.png │ │ └── wrench-light.svg │ │ ├── lib │ │ ├── codemirror.css │ │ └── codemirror.js │ │ ├── mode │ │ ├── lua │ │ │ └── lua.js │ │ ├── properties │ │ │ └── properties.js │ │ ├── shell │ │ │ └── shell.js │ │ └── yaml │ │ │ └── yaml.js │ │ └── theme │ │ ├── idea.css │ │ ├── material-log.css │ │ └── material.css └── tools │ └── po2lmo │ ├── Makefile │ └── src │ ├── po2lmo │ ├── po2lmo.c │ ├── template_lmo.c │ └── template_lmo.h ├── luci-app-openlist ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── openlist │ │ ├── config.js │ │ └── log.js ├── po │ ├── ar │ │ └── openlist.po │ ├── bg │ │ └── openlist.po │ ├── bn_BD │ │ └── openlist.po │ ├── ca │ │ └── openlist.po │ ├── cs │ │ └── openlist.po │ ├── da │ │ └── openlist.po │ ├── de │ │ └── openlist.po │ ├── el │ │ └── openlist.po │ ├── es │ │ └── openlist.po │ ├── et │ │ └── openlist.po │ ├── fa │ │ └── openlist.po │ ├── fi │ │ └── openlist.po │ ├── fr │ │ └── openlist.po │ ├── ga │ │ └── openlist.po │ ├── he │ │ └── openlist.po │ ├── hi │ │ └── openlist.po │ ├── hu │ │ └── openlist.po │ ├── it │ │ └── openlist.po │ ├── ja │ │ └── openlist.po │ ├── ko │ │ └── openlist.po │ ├── lt │ │ └── openlist.po │ ├── mr │ │ └── openlist.po │ ├── ms │ │ └── openlist.po │ ├── nb_NO │ │ └── openlist.po │ ├── nl │ │ └── openlist.po │ ├── pl │ │ └── openlist.po │ ├── pt │ │ └── openlist.po │ ├── pt_BR │ │ └── openlist.po │ ├── ro │ │ └── openlist.po │ ├── ru │ │ └── openlist.po │ ├── sk │ │ └── openlist.po │ ├── sv │ │ └── openlist.po │ ├── ta │ │ └── openlist.po │ ├── templates │ │ └── openlist.pot │ ├── tr │ │ └── openlist.po │ ├── uk │ │ └── openlist.po │ ├── vi │ │ └── openlist.po │ ├── zh-cn │ ├── zh_Hans │ │ └── openlist.po │ └── zh_Hant │ │ └── openlist.po └── root │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-openlist.json │ └── rpcd │ └── acl.d │ └── luci-app-openlist.json ├── luci-app-openlist2 ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── openlist2 │ │ ├── basic.js │ │ └── logs.js ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── openlist2.po └── root │ ├── etc │ └── uci-defaults │ │ └── luci-app-openlist2 │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-openlist2.json │ ├── rpcd │ └── acl.d │ │ └── luci-app-openlist2.json │ └── ucitrack │ └── luci-app-openlist2.json ├── luci-app-partexp ├── LICENSE ├── README.md ├── README_CN.md ├── doc │ ├── partexp0.png │ ├── partexp1.png │ └── partexp2.png └── luci-app-partexp │ ├── Makefile │ ├── README.md │ ├── luasrc │ ├── controller │ │ └── partexp.lua │ ├── model │ │ └── cbi │ │ │ └── partexp │ │ │ └── global.lua │ └── view │ │ ├── partexp.htm │ │ ├── partexplog.htm │ │ └── partexplogrun.htm │ ├── po │ ├── zh-cn │ │ └── partexp.po │ └── zh_Hans │ │ └── partexp.po │ └── root │ ├── etc │ ├── config │ │ └── partexp │ ├── init.d │ │ └── partexp │ ├── partexp │ │ ├── lucilogpos │ │ └── partexp.log │ └── uci-defaults │ │ └── 40_luci-partexp │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-partexp.json ├── luci-app-passwall ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── passwall │ │ ├── Sortable.min.js │ │ └── qrcode.min.js ├── 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 │ │ │ │ ├── hysteria2.lua │ │ │ │ ├── naive.lua │ │ │ │ ├── ray.lua │ │ │ │ ├── sing-box.lua │ │ │ │ ├── ss-rust.lua │ │ │ │ ├── ss.lua │ │ │ │ ├── ssr.lua │ │ │ │ ├── trojan-plus.lua │ │ │ │ └── tuic.lua │ │ │ └── server │ │ │ ├── index.lua │ │ │ ├── type │ │ │ ├── hysteria2.lua │ │ │ ├── ray.lua │ │ │ ├── sing-box.lua │ │ │ ├── socks.lua │ │ │ ├── ss-rust.lua │ │ │ ├── ss.lua │ │ │ ├── ssr.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 │ │ ├── acl │ │ └── view_chinadns_log.htm │ │ ├── app_update │ │ └── app_version.htm │ │ ├── cbi │ │ └── hidevalue.htm │ │ ├── global │ │ ├── backup.htm │ │ ├── faq.htm │ │ ├── footer.htm │ │ ├── proxy.htm │ │ └── status.htm │ │ ├── haproxy │ │ ├── js.htm │ │ └── status.htm │ │ ├── log │ │ └── log.htm │ │ ├── node_list │ │ ├── link_add_node.htm │ │ ├── link_share_man.htm │ │ └── node_list.htm │ │ ├── node_subscribe │ │ └── js.htm │ │ ├── rule │ │ └── rule_version.htm │ │ ├── rule_list │ │ ├── geoview.htm │ │ └── js.htm │ │ ├── server │ │ ├── log.htm │ │ └── users_list_status.htm │ │ └── socks_auto_switch │ │ └── btn.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_chinadns_add.lua │ ├── helper_dnsmasq.lua │ ├── helper_smartdns.sh │ ├── helper_smartdns_add.lua │ ├── iptables.sh │ ├── lease2hosts.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 │ ├── tasks.sh │ └── test.sh │ ├── rpcd │ └── acl.d │ │ └── luci-app-passwall.json │ └── ucitrack │ ├── luci-app-passwall-server.json │ └── luci-app-passwall.json ├── luci-app-passwall2 ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── passwall2 │ │ ├── Sortable.min.js │ │ └── qrcode.min.js ├── luasrc │ ├── controller │ │ └── passwall2.lua │ ├── model │ │ └── cbi │ │ │ └── passwall2 │ │ │ ├── client │ │ │ ├── acl.lua │ │ │ ├── acl_config.lua │ │ │ ├── app_update.lua │ │ │ ├── geoview.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 │ │ │ │ ├── hysteria2.lua │ │ │ │ ├── naive.lua │ │ │ │ ├── ray.lua │ │ │ │ ├── sing-box.lua │ │ │ │ ├── ss-rust.lua │ │ │ │ ├── ss.lua │ │ │ │ ├── ssr.lua │ │ │ │ └── tuic.lua │ │ │ └── server │ │ │ ├── index.lua │ │ │ ├── type │ │ │ ├── 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 │ │ ├── cbi │ │ └── hidevalue.htm │ │ ├── global │ │ ├── backup.htm │ │ ├── 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 │ │ ├── node_subscribe │ │ └── js.htm │ │ ├── rule │ │ ├── geoview.htm │ │ └── rule_version.htm │ │ ├── server │ │ ├── log.htm │ │ └── users_list_status.htm │ │ └── socks_auto_switch │ │ └── btn.htm ├── po │ ├── zh-cn │ │ └── passwall2.po │ ├── zh-tw │ │ └── passwall2.po │ ├── zh_Hans │ └── zh_Hant └── 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.lua │ ├── i18n.lua │ ├── iptables.sh │ ├── lease2hosts.sh │ ├── monitor.sh │ ├── nftables.sh │ ├── rule_update.lua │ ├── socks_auto_switch.sh │ ├── subscribe.lua │ ├── tasks.sh │ └── test.sh │ ├── rpcd │ └── acl.d │ │ └── luci-app-passwall2.json │ └── ucitrack │ ├── luci-app-passwall2-server.json │ └── luci-app-passwall2.json ├── luci-app-qbittorrent ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── qbittorrent │ │ ├── config.js │ │ └── log.js ├── po │ ├── templates │ │ └── qbittorrent.pot │ ├── zh-cn │ └── zh_Hans │ │ └── qbittorrent.po └── root │ ├── etc │ └── uci-defaults │ │ └── qbittorrent │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-qbittorrent.json │ └── rpcd │ └── acl.d │ └── luci-app-qbittorrent.json ├── luci-app-quickstart ├── API.md ├── Makefile ├── htdocs │ └── luci-static │ │ └── quickstart │ │ ├── i18n │ │ ├── en.json │ │ └── zh-cn.json │ │ ├── index.js │ │ ├── style.css │ │ └── vendor.js ├── luasrc │ ├── controller │ │ ├── istore_backend.lua │ │ └── quickstart.lua │ └── view │ │ └── quickstart │ │ ├── home.htm │ │ └── main.htm ├── po │ ├── zh-cn │ │ └── quickstart.po │ └── 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-smartdns ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── smartdns │ │ ├── log.js │ │ └── smartdns.js ├── po │ ├── ar │ │ └── smartdns.po │ ├── bg │ │ └── smartdns.po │ ├── bn_BD │ │ └── smartdns.po │ ├── ca │ │ └── smartdns.po │ ├── cs │ │ └── smartdns.po │ ├── da │ │ └── smartdns.po │ ├── de │ │ └── smartdns.po │ ├── el │ │ └── smartdns.po │ ├── es │ │ └── smartdns.po │ ├── fi │ │ └── smartdns.po │ ├── fr │ │ └── smartdns.po │ ├── ga │ │ └── smartdns.po │ ├── he │ │ └── smartdns.po │ ├── hi │ │ └── smartdns.po │ ├── hu │ │ └── smartdns.po │ ├── it │ │ └── smartdns.po │ ├── ja │ │ └── smartdns.po │ ├── ko │ │ └── smartdns.po │ ├── lt │ │ └── smartdns.po │ ├── mr │ │ └── smartdns.po │ ├── ms │ │ └── smartdns.po │ ├── nb_NO │ │ └── smartdns.po │ ├── nl │ │ └── smartdns.po │ ├── pl │ │ └── smartdns.po │ ├── pt │ │ └── smartdns.po │ ├── pt_BR │ │ └── smartdns.po │ ├── ro │ │ └── smartdns.po │ ├── ru │ │ └── smartdns.po │ ├── sk │ │ └── smartdns.po │ ├── sv │ │ └── smartdns.po │ ├── ta │ │ └── smartdns.po │ ├── templates │ │ └── smartdns.pot │ ├── tr │ │ └── smartdns.po │ ├── uk │ │ └── smartdns.po │ ├── vi │ │ └── smartdns.po │ ├── zh-cn │ ├── zh_Hans │ │ └── smartdns.po │ └── zh_Hant │ │ └── smartdns.po └── root │ └── usr │ ├── libexec │ └── smartdns-call │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-smartdns.json │ └── rpcd │ └── acl.d │ └── luci-app-smartdns.json ├── luci-app-snmpd ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── snmpd │ │ ├── download.js │ │ └── snmpd.js ├── po │ ├── ar │ │ └── snmpd.po │ ├── bg │ │ └── snmpd.po │ ├── bn_BD │ │ └── snmpd.po │ ├── ca │ │ └── snmpd.po │ ├── cs │ │ └── snmpd.po │ ├── da │ │ └── snmpd.po │ ├── de │ │ └── snmpd.po │ ├── el │ │ └── snmpd.po │ ├── es │ │ └── snmpd.po │ ├── fi │ │ └── snmpd.po │ ├── fr │ │ └── snmpd.po │ ├── ga │ │ └── snmpd.po │ ├── he │ │ └── snmpd.po │ ├── hi │ │ └── snmpd.po │ ├── hu │ │ └── snmpd.po │ ├── it │ │ └── snmpd.po │ ├── ja │ │ └── snmpd.po │ ├── ko │ │ └── snmpd.po │ ├── lt │ │ └── snmpd.po │ ├── lv │ │ └── snmpd.po │ ├── mr │ │ └── snmpd.po │ ├── ms │ │ └── snmpd.po │ ├── nb_NO │ │ └── snmpd.po │ ├── nl │ │ └── snmpd.po │ ├── pl │ │ └── snmpd.po │ ├── pt │ │ └── snmpd.po │ ├── pt_BR │ │ └── snmpd.po │ ├── ro │ │ └── snmpd.po │ ├── ru │ │ └── snmpd.po │ ├── sk │ │ └── snmpd.po │ ├── sv │ │ └── snmpd.po │ ├── ta │ │ └── snmpd.po │ ├── templates │ │ └── snmpd.pot │ ├── tr │ │ └── snmpd.po │ ├── uk │ │ └── snmpd.po │ ├── vi │ │ └── snmpd.po │ ├── yua │ │ └── snmpd.po │ ├── zh-cn │ ├── zh_Hans │ │ └── snmpd.po │ └── zh_Hant │ │ └── snmpd.po └── root │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-snmpd.json │ └── rpcd │ └── acl.d │ └── luci-app-snmpd.json ├── 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 │ │ ├── backup_restore.htm │ │ ├── certupload.htm │ │ ├── check.htm │ │ ├── checkport.htm │ │ ├── log.htm │ │ ├── ping.htm │ │ ├── refresh.htm │ │ ├── reset.htm │ │ ├── server_list.htm │ │ ├── socket.htm │ │ ├── ssrurl.htm │ │ ├── status.htm │ │ └── subscribe.htm ├── po │ ├── templates │ │ └── ssr-plus.pot │ ├── zh-cn │ └── zh_Hans │ │ └── ssr-plus.po └── root │ ├── etc │ ├── config │ │ └── shadowsocksr │ ├── init.d │ │ └── shadowsocksr │ ├── ssrplus │ │ ├── ad.conf │ │ ├── applechina.conf │ │ ├── black.list │ │ ├── china_ssr.txt │ │ ├── deny.list │ │ ├── dnsproxy_dns.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 │ ├── shadowsocksr.config │ ├── ssrplusupdate.sh │ ├── subscribe.lua │ └── update.lua │ └── ucitrack │ └── luci-app-ssr-plus.json ├── luci-app-store ├── API.md ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── store.lua │ └── view │ │ └── store │ │ └── main.htm ├── root │ ├── bin │ │ └── is-opkg │ ├── etc │ │ ├── config │ │ │ └── istore │ │ ├── init.d │ │ │ └── istore │ │ └── uci-defaults │ │ │ └── luci-app-store │ └── usr │ │ ├── libexec │ │ └── istore │ │ │ ├── backup │ │ │ ├── docker │ │ │ ├── ipkg-build │ │ │ └── overlay-backup │ │ └── share │ │ ├── opkg │ │ └── intercept │ │ │ └── rm │ │ └── 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 └── swagger.yaml ├── luci-app-transmission ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── transmission.js ├── po │ ├── ar │ │ └── transmission.po │ ├── bg │ │ └── transmission.po │ ├── bn_BD │ │ └── transmission.po │ ├── ca │ │ └── transmission.po │ ├── cs │ │ └── transmission.po │ ├── da │ │ └── transmission.po │ ├── de │ │ └── transmission.po │ ├── el │ │ └── transmission.po │ ├── es │ │ └── transmission.po │ ├── fi │ │ └── transmission.po │ ├── fr │ │ └── transmission.po │ ├── ga │ │ └── transmission.po │ ├── he │ │ └── transmission.po │ ├── hi │ │ └── transmission.po │ ├── hu │ │ └── transmission.po │ ├── it │ │ └── transmission.po │ ├── ja │ │ └── transmission.po │ ├── ko │ │ └── transmission.po │ ├── lt │ │ └── transmission.po │ ├── lv │ │ └── transmission.po │ ├── mr │ │ └── transmission.po │ ├── ms │ │ └── transmission.po │ ├── nb_NO │ │ └── transmission.po │ ├── nl │ │ └── transmission.po │ ├── pl │ │ └── transmission.po │ ├── pt │ │ └── transmission.po │ ├── pt_BR │ │ └── transmission.po │ ├── ro │ │ └── transmission.po │ ├── ru │ │ └── transmission.po │ ├── sk │ │ └── transmission.po │ ├── sv │ │ └── transmission.po │ ├── ta │ │ └── transmission.po │ ├── templates │ │ └── transmission.pot │ ├── tr │ │ └── transmission.po │ ├── uk │ │ └── transmission.po │ ├── vi │ │ └── transmission.po │ ├── yua │ │ └── transmission.po │ ├── zh-cn │ ├── zh_Hans │ │ └── transmission.po │ └── zh_Hant │ │ └── transmission.po └── root │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-transmission.json │ └── rpcd │ └── acl.d │ └── luci-app-transmission.json ├── luci-app-unblockneteasemusic ├── LICENSE ├── Makefile ├── README.md ├── 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-v2raya ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── v2raya │ │ ├── config.js │ │ └── log.js ├── po │ ├── ar │ │ └── v2raya.po │ ├── bg │ │ └── v2raya.po │ ├── bn_BD │ │ └── v2raya.po │ ├── ca │ │ └── v2raya.po │ ├── cs │ │ └── v2raya.po │ ├── da │ │ └── v2raya.po │ ├── de │ │ └── v2raya.po │ ├── el │ │ └── v2raya.po │ ├── es │ │ └── v2raya.po │ ├── fi │ │ └── v2raya.po │ ├── fr │ │ └── v2raya.po │ ├── ga │ │ └── v2raya.po │ ├── he │ │ └── v2raya.po │ ├── hi │ │ └── v2raya.po │ ├── hu │ │ └── v2raya.po │ ├── it │ │ └── v2raya.po │ ├── ja │ │ └── v2raya.po │ ├── ko │ │ └── v2raya.po │ ├── lt │ │ └── v2raya.po │ ├── mr │ │ └── v2raya.po │ ├── ms │ │ └── v2raya.po │ ├── nb_NO │ │ └── v2raya.po │ ├── nl │ │ └── v2raya.po │ ├── pl │ │ └── v2raya.po │ ├── pt │ │ └── v2raya.po │ ├── pt_BR │ │ └── v2raya.po │ ├── ro │ │ └── v2raya.po │ ├── ru │ │ └── v2raya.po │ ├── sk │ │ └── v2raya.po │ ├── sv │ │ └── v2raya.po │ ├── ta │ │ └── v2raya.po │ ├── templates │ │ └── v2raya.pot │ ├── tr │ │ └── v2raya.po │ ├── uk │ │ └── v2raya.po │ ├── vi │ │ └── v2raya.po │ ├── yua │ │ └── v2raya.po │ ├── zh-cn │ ├── zh_Hans │ │ └── v2raya.po │ └── zh_Hant │ │ └── v2raya.po └── root │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-v2raya.json │ └── rpcd │ └── acl.d │ └── luci-app-v2raya.json ├── luci-app-watchcat ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── watchcat.js ├── po │ ├── ar │ │ └── watchcat.po │ ├── bg │ │ └── watchcat.po │ ├── bn_BD │ │ └── watchcat.po │ ├── ca │ │ └── watchcat.po │ ├── cs │ │ └── watchcat.po │ ├── da │ │ └── watchcat.po │ ├── de │ │ └── watchcat.po │ ├── el │ │ └── watchcat.po │ ├── es │ │ └── watchcat.po │ ├── fi │ │ └── watchcat.po │ ├── fr │ │ └── watchcat.po │ ├── ga │ │ └── watchcat.po │ ├── he │ │ └── watchcat.po │ ├── hi │ │ └── watchcat.po │ ├── hu │ │ └── watchcat.po │ ├── it │ │ └── watchcat.po │ ├── ja │ │ └── watchcat.po │ ├── ko │ │ └── watchcat.po │ ├── lt │ │ └── watchcat.po │ ├── mr │ │ └── watchcat.po │ ├── ms │ │ └── watchcat.po │ ├── nb_NO │ │ └── watchcat.po │ ├── nl │ │ └── watchcat.po │ ├── pl │ │ └── watchcat.po │ ├── pt │ │ └── watchcat.po │ ├── pt_BR │ │ └── watchcat.po │ ├── ro │ │ └── watchcat.po │ ├── ru │ │ └── watchcat.po │ ├── sk │ │ └── watchcat.po │ ├── sv │ │ └── watchcat.po │ ├── ta │ │ └── watchcat.po │ ├── templates │ │ └── watchcat.pot │ ├── tr │ │ └── watchcat.po │ ├── uk │ │ └── watchcat.po │ ├── vi │ │ └── watchcat.po │ ├── zh-cn │ ├── zh_Hans │ │ └── watchcat.po │ └── zh_Hant │ │ └── watchcat.po └── root │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-watchcat.json │ ├── rpcd │ └── acl.d │ │ └── luci-app-watchcat.json │ └── ucitrack │ └── luci-app-watchcat.json ├── luci-app-wechatpush ├── Makefile ├── README.md ├── 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-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-alpha ├── LICENSE ├── Makefile ├── README.md ├── js │ └── menu-alpha.js ├── luasrc │ ├── app.js │ ├── background │ │ ├── dashboard.png │ │ └── login.png │ ├── brand.png │ ├── favicon.ico │ ├── fonts │ │ ├── Inter-Black.woff2 │ │ ├── Inter-Bold.woff2 │ │ ├── Inter-ExtraBold.woff2 │ │ ├── Inter-ExtraLight.woff2 │ │ ├── Inter-Light.woff2 │ │ ├── Inter-Medium.woff2 │ │ ├── Inter-Regular.woff2 │ │ ├── Inter-SemiBold.woff2 │ │ ├── Inter-Thin.woff2 │ │ ├── Quicksand-Bold.ttf │ │ ├── Quicksand-Light.ttf │ │ ├── Quicksand-Medium.ttf │ │ ├── Quicksand-Regular.ttf │ │ ├── Quicksand-SemiBold.ttf │ │ └── stylesheet.css │ ├── gaya │ │ ├── gaya.css │ │ ├── gaya.css.bak │ │ └── icon │ │ │ ├── arrow.svg │ │ │ ├── loading.svg │ │ │ ├── logout.svg │ │ │ ├── menu_icon.svg │ │ │ ├── navbar │ │ │ ├── filemanager.png │ │ │ ├── modem.png │ │ │ ├── neko.png │ │ │ ├── network.png │ │ │ ├── openclash.png │ │ │ ├── overview.png │ │ │ └── terminal.png │ │ │ ├── pause.svg │ │ │ ├── save.svg │ │ │ └── sidebar-icon │ │ │ ├── app.svg │ │ │ ├── docker.svg │ │ │ ├── istore.svg │ │ │ ├── modem.svg │ │ │ ├── nas.svg │ │ │ ├── network.svg │ │ │ ├── services.svg │ │ │ ├── status.svg │ │ │ ├── system.svg │ │ │ └── vpn.svg │ └── style │ │ ├── brand.png │ │ ├── catatan.txt │ │ ├── indo-wrt.png │ │ ├── openwrt20thanniversary.png │ │ └── style.css ├── mobileview1.png ├── mobileview2.png ├── mobileview3.png ├── root │ └── etc │ │ └── config │ │ └── alpha ├── ss1.png ├── ss2.png ├── ss3.png └── template │ ├── footer.htm │ ├── header.htm │ └── sysauth.htm ├── luci-theme-argon ├── LICENSE ├── Makefile ├── README.md ├── README_ZH.md ├── RELEASE.md ├── RELEASE_ZH.md ├── Screenshots │ ├── screenshot_pc.jpg │ └── screenshot_phone.jpg ├── htdocs │ └── luci-static │ │ ├── argon │ │ ├── background │ │ │ └── README.md │ │ ├── css │ │ │ ├── cascade.css │ │ │ └── dark.css │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── GoogleSans-Regular.woff │ │ │ ├── GoogleSans-Regular.woff2 │ │ │ ├── TypoGraphica.woff │ │ │ ├── TypoGraphica.woff2 │ │ │ ├── argon.woff │ │ │ └── argon.woff2 │ │ ├── icon │ │ │ ├── android-icon-192x192.png │ │ │ ├── apple-icon-144x144.png │ │ │ ├── apple-icon-60x60.png │ │ │ ├── apple-icon-72x72.png │ │ │ ├── arrow.svg │ │ │ ├── browserconfig.xml │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── manifest.json │ │ │ ├── ms-icon-144x144.png │ │ │ └── spinner.svg │ │ └── img │ │ │ ├── argon.svg │ │ │ ├── bg1.jpg │ │ │ ├── blank.png │ │ │ ├── volume_high.svg │ │ │ └── volume_off.svg │ │ └── resources │ │ └── menu-argon.js ├── less │ ├── cascade.less │ ├── dark.less │ ├── fonts.less │ ├── layout.less │ ├── normalize.less │ ├── page-fix.less │ ├── pure-min.less │ ├── responsive.less │ └── sysauth.less ├── root │ ├── etc │ │ └── uci-defaults │ │ │ └── 30_luci-theme-argon │ └── usr │ │ ├── libexec │ │ └── rpcd │ │ │ └── luci.argon_wallpaper │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-theme-argon.json └── ucode │ └── template │ └── themes │ └── argon │ ├── footer.ut │ ├── footer_login.ut │ ├── header.ut │ ├── header_login.ut │ ├── out_header_login.ut │ └── sysauth.ut ├── luci-theme-argone ├── Makefile ├── README.md ├── htdocs │ └── luci-static │ │ └── argone │ │ ├── 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 │ │ ├── argone.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-argone.js │ │ ├── jquery.min.js │ │ ├── menu-argone.js │ │ ├── sidebar-argone.js │ │ └── styles-argone.js │ │ └── less │ │ ├── cascade.less │ │ └── dark.less ├── luasrc │ └── view │ │ └── themes │ │ └── argone │ │ ├── footer.htm │ │ ├── header.htm │ │ ├── header_login.htm │ │ ├── out_header_login.htm │ │ └── sysauth.htm └── root │ ├── etc │ └── uci-defaults │ │ └── 90_luci-theme-argone │ └── usr │ └── libexec │ └── argone │ └── online_wallpaper ├── 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-design ├── LICENSE ├── Makefile ├── README.md ├── README_en.md ├── dev │ ├── design.js │ ├── script.js │ └── style.css ├── htdocs │ └── luci-static │ │ └── design │ │ ├── css │ │ └── style.css │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── GenJyuuGothic-Medium.otf │ │ ├── font.eot │ │ ├── font.svg │ │ ├── font.ttf │ │ ├── font.woff │ │ ├── iconfont-Regular.ttf │ │ ├── iconfont-Regular.woff │ │ └── iconfont-Regular.woff2 │ │ ├── images │ │ ├── add.png │ │ ├── apple-touch-icon.png │ │ ├── bridge.png │ │ ├── bridge_disabled.png │ │ ├── ethernet.png │ │ ├── ethernet_disabled.png │ │ ├── home.png │ │ ├── icon.png │ │ ├── link.png │ │ ├── loading.gif │ │ ├── openclash.png │ │ ├── port_down.png │ │ ├── port_up.png │ │ ├── rank.png │ │ ├── reload.png │ │ ├── remove.png │ │ ├── signal-0-25.png │ │ ├── signal-0.png │ │ ├── signal-25-50.png │ │ ├── signal-50-75.png │ │ ├── signal-75-100.png │ │ ├── signal-none.png │ │ ├── ssr.png │ │ ├── switch.png │ │ ├── switch_disabled.png │ │ ├── tunnel.png │ │ ├── tunnel_disabled.png │ │ ├── user.png │ │ ├── vlan.png │ │ ├── vlan_disabled.png │ │ ├── wifi.png │ │ ├── wifi_big.png │ │ ├── wifi_big_disabled.png │ │ └── wifi_disabled.png │ │ ├── js │ │ ├── design.js │ │ ├── jquery.min.js │ │ └── script.js │ │ └── manifest.json ├── luasrc │ └── view │ │ └── themes │ │ └── design │ │ ├── footer.htm │ │ └── header.htm ├── preview │ ├── IMG_0328.PNG │ ├── IMG_0329.PNG │ ├── firewall.png │ ├── home.png │ ├── home1.png │ ├── iface.png │ ├── light.png │ ├── login.png │ ├── login1.png │ ├── page.png │ ├── webapp_home.PNG │ ├── webapp_vssr.PNG │ └── wifi.png └── root │ └── etc │ └── uci-defaults │ └── 30_luci-theme-design ├── luci-theme-ifit ├── Makefile └── files │ ├── 10_luci-theme-ifit │ ├── 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-material3 ├── Makefile ├── Readme.md ├── htdocs │ └── luci-static │ │ ├── material3-blue │ │ ├── material3-green │ │ ├── material3-red │ │ ├── material3 │ │ ├── cascade.css │ │ ├── icons │ │ │ ├── changes.svg │ │ │ ├── docker.svg │ │ │ ├── logout.svg │ │ │ ├── modem.svg │ │ │ ├── nas.svg │ │ │ ├── network.svg │ │ │ ├── other.svg │ │ │ ├── refresh.svg │ │ │ ├── services.svg │ │ │ ├── status.svg │ │ │ ├── system.svg │ │ │ └── vpn.svg │ │ ├── logo.svg │ │ └── mobile.css │ │ └── resources │ │ ├── menu-material3.js │ │ └── view │ │ └── material3 │ │ └── sysauth.js ├── imgs │ ├── md3-desktop-overview.jpg │ ├── md3-mobile-blue.jpg │ ├── md3-mobile-default.jpg │ ├── md3-mobile-green.jpg │ ├── md3-mobile-overview.jpg │ └── md3-mobile-red.jpg ├── root │ └── etc │ │ └── uci-defaults │ │ └── 30_luci-theme-material3 └── ucode │ └── template │ └── themes │ ├── material3-blue │ ├── material3-green │ ├── material3-red │ └── material3 │ ├── footer.ut │ ├── header.ut │ └── sysauth.ut ├── luci-theme-opentopd ├── Makefile ├── README.md ├── doc │ ├── index.md │ ├── 合并图.jpg │ ├── 实时监控.jpg │ ├── 手机画面.jpg │ ├── 登陆界面2.jpg │ ├── 登陆页面.jpg │ ├── 网络共享.jpg │ ├── 预览界面.jpg │ └── 高级设置.jpg ├── htdocs │ └── luci-static │ │ └── opentopd │ │ ├── css │ │ ├── fonts.css │ │ ├── pure-min.css │ │ └── style.css │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── sirpdboy.eot │ │ ├── sirpdboy.svg │ │ ├── sirpdboy.ttf │ │ └── sirpdboy.woff │ │ ├── icons │ │ ├── ethernet.png │ │ ├── ethernet_disabled.png │ │ ├── port_down.png │ │ ├── port_up.png │ │ └── spinner.svg │ │ ├── img │ │ ├── bg1.jpg │ │ └── bg2.jpg │ │ ├── js │ │ ├── jquery.min.js │ │ └── script.js │ │ ├── logo.png │ │ └── runbar.png ├── luasrc │ └── view │ │ └── themes │ │ └── opentopd │ │ ├── footer.htm │ │ └── header.htm └── root │ └── etc │ └── uci-defaults │ └── 30_luci-theme-opentopd ├── luci-theme-tomato ├── Makefile ├── htdocs │ └── luci-static │ │ └── tomato │ │ ├── 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 │ │ └── tomato │ │ ├── footer.htm │ │ └── header.htm └── root │ └── etc │ └── uci-defaults │ └── 30_luci-theme-tomato ├── lucky └── Makefile ├── microsocks └── Makefile ├── mihomo ├── .prepare.sh └── Makefile ├── momo ├── Makefile └── files │ ├── firewall │ ├── geoip6_cn.nft │ └── geoip_cn.nft │ ├── momo.conf │ ├── momo.init │ ├── momo.upgrade │ ├── scripts │ ├── debug.sh │ ├── firewall_include.sh │ └── include.sh │ ├── uci-defaults │ ├── firewall.sh │ └── migrate.sh │ └── ucode │ ├── hijack.ut │ └── include.uc ├── mosdns ├── Makefile └── patches │ ├── 100-mosdns-update-dependencies.patch │ ├── 200-forward-avoid-picking-same-upstream-if-concurrent-2.patch │ ├── 201-upstream-resend-udp-package-every-1s.patch │ ├── 203-add-response-for-bad-request-in-ServeHTTP-handler.patch │ ├── 204-black_hole-apply-Fisher-Yates-shuffle-algorithm-to-r.patch │ └── 205-format-logtime.patch ├── naiveproxy ├── Makefile └── files │ ├── naiveproxy.config │ └── naiveproxy.init ├── nikki ├── Makefile └── files │ ├── mixin.yaml │ ├── nftables │ ├── geoip6_cn.nft │ └── geoip_cn.nft │ ├── nikki.conf │ ├── nikki.init │ ├── nikki.upgrade │ ├── scripts │ ├── debug.sh │ ├── firewall_include.sh │ └── include.sh │ ├── uci-defaults │ ├── firewall.sh │ ├── init.sh │ └── migrate.sh │ └── ucode │ ├── hijack.ut │ ├── include.uc │ └── mixin.uc ├── openlist2 ├── Makefile ├── files │ ├── data.db │ ├── openlist2.config │ └── openlist2.init └── src │ └── public │ └── dist │ └── assets │ ├── 512x512.png │ ├── logo.png │ ├── logo.svg │ └── polyfill.min.js ├── pdnsd-alt ├── Makefile ├── files │ └── pdnsd.init └── patches │ ├── 010-no-doc-and-test.patch │ └── 020-headers.patch ├── quickstart ├── Makefile └── files │ ├── dhcpvalid.sh │ ├── manuf │ ├── quickstart.config │ ├── quickstart.hotplug │ ├── quickstart.init │ ├── quickstart.uci-default │ ├── startdhns.hotplug │ └── startdhns.init ├── redsocks2 ├── Makefile └── files │ └── redsocks2.template ├── 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 │ ├── 104-pointer-used-after-free.patch │ └── 105-Upgrade-PCRE-to-PCRE2.patch └── src │ └── server │ ├── Makefile.am │ ├── Makefile.in │ ├── README.md │ ├── 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 │ ├── sing-box.conf │ └── sing-box.init ├── smartdns └── Makefile ├── ssocks ├── Makefile └── patches │ ├── 001-fix.patch │ └── 002-gcc10.patch ├── taskd ├── Makefile └── files │ ├── taskd.sh │ └── tasks.init ├── tcping └── Makefile ├── trojan-go └── Makefile ├── trojan-plus └── Makefile ├── trojan ├── Makefile └── patches │ └── 001-force-openssl-version.patch ├── tuic-client └── Makefile ├── ucl ├── Makefile └── patches │ └── 001-autoconf-compat.patch ├── upx-static └── Makefile ├── upx └── Makefile ├── v2dat ├── Makefile └── patches │ ├── 100-format-logtime.patch │ └── 101-v2dat-update-dependencies.patch ├── v2ray-core └── Makefile ├── v2ray-geodata └── Makefile ├── v2ray-plugin └── Makefile ├── v2raya ├── Makefile └── files │ ├── v2raya.config │ └── v2raya.init ├── xray-core └── Makefile └── xray-plugin └── Makefile /.github/workflows/Test build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/.github/workflows/Test build.yml -------------------------------------------------------------------------------- /.github/workflows/Test plugins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/.github/workflows/Test plugins.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/README.md -------------------------------------------------------------------------------- /UnblockNeteaseMusic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/UnblockNeteaseMusic/Makefile -------------------------------------------------------------------------------- /adguardhome/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/adguardhome/Makefile -------------------------------------------------------------------------------- /adguardhome/files/adguardhome.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/adguardhome/files/adguardhome.config -------------------------------------------------------------------------------- /adguardhome/files/adguardhome.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/adguardhome/files/adguardhome.init -------------------------------------------------------------------------------- /alist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/alist/Makefile -------------------------------------------------------------------------------- /alist/files/alist.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/alist/files/alist.config -------------------------------------------------------------------------------- /alist/files/alist.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/alist/files/alist.init -------------------------------------------------------------------------------- /alist/files/data.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/alist/files/data.db -------------------------------------------------------------------------------- /alist/src/public/dist/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/alist/src/public/dist/assets/logo.svg -------------------------------------------------------------------------------- /aliyundrive-webdav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/aliyundrive-webdav/Makefile -------------------------------------------------------------------------------- /brook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/brook/Makefile -------------------------------------------------------------------------------- /cdnspeedtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/cdnspeedtest/Makefile -------------------------------------------------------------------------------- /chinadns-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/chinadns-ng/Makefile -------------------------------------------------------------------------------- /commit/versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/commit/versions.txt -------------------------------------------------------------------------------- /daed-next/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/daed-next/Makefile -------------------------------------------------------------------------------- /daed-next/files/daed-next.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/daed-next/files/daed-next.config -------------------------------------------------------------------------------- /daed-next/files/daed-next.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/daed-next/files/daed-next.init -------------------------------------------------------------------------------- /ddns-go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/ddns-go/Makefile -------------------------------------------------------------------------------- /ddns-go/file/ddns-go.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/ddns-go/file/ddns-go.init -------------------------------------------------------------------------------- /ddns-go/file/luci-ddns-go.uci-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/ddns-go/file/luci-ddns-go.uci-default -------------------------------------------------------------------------------- /ddnsto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/ddnsto/Makefile -------------------------------------------------------------------------------- /ddnsto/files/ddnsto-monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/ddnsto/files/ddnsto-monitor.sh -------------------------------------------------------------------------------- /ddnsto/files/ddnsto.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/ddnsto/files/ddnsto.config -------------------------------------------------------------------------------- /ddnsto/files/ddnsto.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/ddnsto/files/ddnsto.init -------------------------------------------------------------------------------- /ddnsto/files/ddnsto.uci-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/ddnsto/files/ddnsto.uci-default -------------------------------------------------------------------------------- /dns2socks-rust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/dns2socks-rust/Makefile -------------------------------------------------------------------------------- /dns2socks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/dns2socks/Makefile -------------------------------------------------------------------------------- /dns2tcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/dns2tcp/Makefile -------------------------------------------------------------------------------- /docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/docker/Makefile -------------------------------------------------------------------------------- /docker/git-short-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/docker/git-short-commit.sh -------------------------------------------------------------------------------- /dockerd/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/dockerd/Config.in -------------------------------------------------------------------------------- /dockerd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/dockerd/Makefile -------------------------------------------------------------------------------- /dockerd/files/dockerd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/dockerd/files/dockerd.init -------------------------------------------------------------------------------- /dockerd/files/etc/config/dockerd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/dockerd/files/etc/config/dockerd -------------------------------------------------------------------------------- /dockerd/git-short-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/dockerd/git-short-commit.sh -------------------------------------------------------------------------------- /filebrowser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/filebrowser/Makefile -------------------------------------------------------------------------------- /filebrowser/files/filebrowser.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/filebrowser/files/filebrowser.config -------------------------------------------------------------------------------- /filebrowser/files/filebrowser.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/filebrowser/files/filebrowser.init -------------------------------------------------------------------------------- /geoview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/geoview/Makefile -------------------------------------------------------------------------------- /gn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/gn/Makefile -------------------------------------------------------------------------------- /gn/src/out/last_commit_position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/gn/src/out/last_commit_position.h -------------------------------------------------------------------------------- /gost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/gost/Makefile -------------------------------------------------------------------------------- /gost/files/gost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/gost/files/gost.config -------------------------------------------------------------------------------- /gost/files/gost.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/gost/files/gost.init -------------------------------------------------------------------------------- /gost/files/gost.uci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/gost/files/gost.uci -------------------------------------------------------------------------------- /hysteria/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/hysteria/Makefile -------------------------------------------------------------------------------- /ipt2socks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/ipt2socks/Makefile -------------------------------------------------------------------------------- /lua-neturl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/lua-neturl/Makefile -------------------------------------------------------------------------------- /lua-neturl/patches/010-userinfo-regex.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/lua-neturl/patches/010-userinfo-regex.patch -------------------------------------------------------------------------------- /luci-app-adguardhome/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-adguardhome/Makefile -------------------------------------------------------------------------------- /luci-app-adguardhome/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-advanced/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-advanced/Makefile -------------------------------------------------------------------------------- /luci-app-advanced/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-advanced/README.md -------------------------------------------------------------------------------- /luci-app-advanced/root/bin/ipmode4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-advanced/root/bin/ipmode4 -------------------------------------------------------------------------------- /luci-app-advanced/root/bin/ipmode6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-advanced/root/bin/ipmode6 -------------------------------------------------------------------------------- /luci-app-advanced/root/bin/normalmode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-advanced/root/bin/normalmode -------------------------------------------------------------------------------- /luci-app-advanced/root/bin/nuc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/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/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-aliddns/LICENSE -------------------------------------------------------------------------------- /luci-app-aliddns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-aliddns/Makefile -------------------------------------------------------------------------------- /luci-app-aliddns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-aliddns/README.md -------------------------------------------------------------------------------- /luci-app-aliddns/files/root/usr/sbin/aliddns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-aliddns/files/root/usr/sbin/aliddns -------------------------------------------------------------------------------- /luci-app-aliddns/tools/po2lmo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-aliddns/tools/po2lmo/Makefile -------------------------------------------------------------------------------- /luci-app-aliddns/tools/po2lmo/src/po2lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-aliddns/tools/po2lmo/src/po2lmo.c -------------------------------------------------------------------------------- /luci-app-alist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-alist/Makefile -------------------------------------------------------------------------------- /luci-app-alist/luasrc/controller/alist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-alist/luasrc/controller/alist.lua -------------------------------------------------------------------------------- /luci-app-alist/po/zh-cn/alist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-alist/po/zh-cn/alist.po -------------------------------------------------------------------------------- /luci-app-alist/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-aliyundrive-webdav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-aliyundrive-webdav/Makefile -------------------------------------------------------------------------------- /luci-app-aliyundrive-webdav/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-amlogic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-amlogic/Makefile -------------------------------------------------------------------------------- /luci-app-amlogic/po/zh-cn/amlogic.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/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/kenzok8/litte/HEAD/luci-app-amlogic/root/etc/config/amlogic -------------------------------------------------------------------------------- /luci-app-amlogic/root/etc/init.d/amlogic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-amlogic/root/etc/init.d/amlogic -------------------------------------------------------------------------------- /luci-app-amlogic/root/usr/sbin/fixcpufreq.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-amlogic/root/usr/sbin/fixcpufreq.pl -------------------------------------------------------------------------------- /luci-app-amlogic/root/usr/sbin/openwrt-ddbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-amlogic/root/usr/sbin/openwrt-ddbr -------------------------------------------------------------------------------- /luci-app-argon-config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-argon-config/Makefile -------------------------------------------------------------------------------- /luci-app-argon-config/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-argon-config/root/etc/config/argon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-argon-config/root/etc/config/argon -------------------------------------------------------------------------------- /luci-app-argone-config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-argone-config/Makefile -------------------------------------------------------------------------------- /luci-app-argone-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-argone-config/README.md -------------------------------------------------------------------------------- /luci-app-argone-config/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-bypass/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-bypass/Makefile -------------------------------------------------------------------------------- /luci-app-bypass/luasrc/controller/bypass.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-bypass/luasrc/controller/bypass.lua -------------------------------------------------------------------------------- /luci-app-bypass/luasrc/view/bypass/check.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-bypass/luasrc/view/bypass/check.htm -------------------------------------------------------------------------------- /luci-app-bypass/luasrc/view/bypass/ping.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-bypass/luasrc/view/bypass/ping.htm -------------------------------------------------------------------------------- /luci-app-bypass/po/zh-cn/bypass.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/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 | whrq.net 2 | test-ipv6.com 3 | 4 | -------------------------------------------------------------------------------- /luci-app-bypass/root/etc/bypass/netflix.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-bypass/root/etc/bypass/netflix.list -------------------------------------------------------------------------------- /luci-app-bypass/root/etc/bypass/oversea.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-bypass/root/etc/bypass/oversea.list -------------------------------------------------------------------------------- /luci-app-bypass/root/etc/bypass/white.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-bypass/root/etc/bypass/white.list -------------------------------------------------------------------------------- /luci-app-bypass/root/etc/config/bypass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-bypass/root/etc/config/bypass -------------------------------------------------------------------------------- /luci-app-bypass/root/etc/init.d/bypass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-bypass/root/etc/init.d/bypass -------------------------------------------------------------------------------- /luci-app-bypass/root/usr/share/bypass/by-gfw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-bypass/root/usr/share/bypass/by-gfw -------------------------------------------------------------------------------- /luci-app-bypass/root/usr/share/bypass/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-bypass/root/usr/share/bypass/update -------------------------------------------------------------------------------- /luci-app-clash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-clash/LICENSE -------------------------------------------------------------------------------- /luci-app-clash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-clash/Makefile -------------------------------------------------------------------------------- /luci-app-clash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-clash/README.md -------------------------------------------------------------------------------- /luci-app-clash/luasrc/clash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-clash/luasrc/clash.lua -------------------------------------------------------------------------------- /luci-app-clash/luasrc/controller/clash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-clash/luasrc/controller/clash.lua -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/conf.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-clash/luasrc/view/clash/conf.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/geoip.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-clash/luasrc/view/clash/geoip.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/list.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-clash/luasrc/view/clash/list.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/ping.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-clash/luasrc/view/clash/ping.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/rulep.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-clash/luasrc/view/clash/rulep.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/ssrurl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-clash/luasrc/view/clash/ssrurl.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-clash/luasrc/view/clash/status.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/tvalue.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-clash/luasrc/view/clash/tvalue.htm -------------------------------------------------------------------------------- /luci-app-clash/luasrc/view/clash/update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-clash/luasrc/view/clash/update.htm -------------------------------------------------------------------------------- /luci-app-clash/po/zh-cn/clash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/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/kenzok8/litte/HEAD/luci-app-clash/root/etc/clash/Country.mmdb -------------------------------------------------------------------------------- /luci-app-clash/root/etc/config/clash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-clash/root/etc/config/clash -------------------------------------------------------------------------------- /luci-app-clash/root/etc/init.d/clash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-clash/root/etc/init.d/clash -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/clash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/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/dashboard/CNAME: -------------------------------------------------------------------------------- 1 | clash.razord.top -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/game.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-clash/root/usr/share/clash/game.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/geoip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-clash/root/usr/share/clash/geoip.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/rule.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-clash/root/usr/share/clash/rule.sh -------------------------------------------------------------------------------- /luci-app-clash/root/usr/share/clash/yacd/CNAME: -------------------------------------------------------------------------------- 1 | yacd.haishan.me 2 | -------------------------------------------------------------------------------- /luci-app-clash/tools/po2lmo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-clash/tools/po2lmo/Makefile -------------------------------------------------------------------------------- /luci-app-clash/tools/po2lmo/src/po2lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-clash/tools/po2lmo/src/po2lmo.c -------------------------------------------------------------------------------- /luci-app-dae/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-dae/Makefile -------------------------------------------------------------------------------- /luci-app-dae/po/templates/dae.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-dae/po/templates/dae.pot -------------------------------------------------------------------------------- /luci-app-dae/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-dae/po/zh_Hans/dae.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-dae/po/zh_Hans/dae.po -------------------------------------------------------------------------------- /luci-app-daed-next/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-daed-next/Makefile -------------------------------------------------------------------------------- /luci-app-daed-next/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-daed-next/po/zh_Hans/daed-next.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-daed-next/po/zh_Hans/daed-next.po -------------------------------------------------------------------------------- /luci-app-daed-next/root/etc/uci-defaults/luci-daed-next: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -rf /tmp/luci-* 4 | 5 | exit 0 6 | -------------------------------------------------------------------------------- /luci-app-daed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-daed/Makefile -------------------------------------------------------------------------------- /luci-app-daed/po/templates/daed.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-daed/po/templates/daed.pot -------------------------------------------------------------------------------- /luci-app-daed/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-daed/po/zh_Hans/daed.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-daed/po/zh_Hans/daed.po -------------------------------------------------------------------------------- /luci-app-ddns-go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ddns-go/Makefile -------------------------------------------------------------------------------- /luci-app-ddns-go/po/templates/ddns-go.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ddns-go/po/templates/ddns-go.pot -------------------------------------------------------------------------------- /luci-app-ddns-go/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-ddns-go/po/zh_Hans/ddns-go.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ddns-go/po/zh_Hans/ddns-go.po -------------------------------------------------------------------------------- /luci-app-ddns-go/root/etc/config/ddns-go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ddns-go/root/etc/config/ddns-go -------------------------------------------------------------------------------- /luci-app-ddns-go/root/etc/ddns-go/localtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ddns-go/root/etc/ddns-go/localtime -------------------------------------------------------------------------------- /luci-app-ddnsto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ddnsto/Makefile -------------------------------------------------------------------------------- /luci-app-ddnsto/luasrc/controller/ddnsto.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ddnsto/luasrc/controller/ddnsto.lua -------------------------------------------------------------------------------- /luci-app-ddnsto/luasrc/model/cbi/ddnsto.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ddnsto/luasrc/model/cbi/ddnsto.lua -------------------------------------------------------------------------------- /luci-app-ddnsto/luasrc/view/ddnsto/main.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ddnsto/luasrc/view/ddnsto/main.htm -------------------------------------------------------------------------------- /luci-app-ddnsto/po/zh-cn/ddnsto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/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-diskman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-diskman/Makefile -------------------------------------------------------------------------------- /luci-app-diskman/luasrc/model/diskman.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-diskman/luasrc/model/diskman.lua -------------------------------------------------------------------------------- /luci-app-diskman/po/pl/diskman.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-diskman/po/pl/diskman.po -------------------------------------------------------------------------------- /luci-app-diskman/po/templates/diskman.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-diskman/po/templates/diskman.pot -------------------------------------------------------------------------------- /luci-app-diskman/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-diskman/po/zh_Hans/diskman.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-diskman/po/zh_Hans/diskman.po -------------------------------------------------------------------------------- /luci-app-diskman/po/zh_Hant/diskman.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-diskman/po/zh_Hant/diskman.po -------------------------------------------------------------------------------- /luci-app-dnsfilter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-dnsfilter/Makefile -------------------------------------------------------------------------------- /luci-app-dnsfilter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-dnsfilter/README.md -------------------------------------------------------------------------------- /luci-app-dnsfilter/po/zh-cn/dnsfilter.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/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/kenzok8/litte/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/kenzok8/litte/HEAD/luci-app-dnsfilter/root/etc/init.d/dnsfilter -------------------------------------------------------------------------------- /luci-app-dockerman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/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/kenzok8/litte/HEAD/luci-app-dockerman/luasrc/model/docker.lua -------------------------------------------------------------------------------- /luci-app-dockerman/po/zh-cn/dockerman.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/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/kenzok8/litte/HEAD/luci-app-dockerman/postinst -------------------------------------------------------------------------------- /luci-app-dockerman/root/etc/init.d/dockerman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-dockerman/root/etc/init.d/dockerman -------------------------------------------------------------------------------- /luci-app-easymesh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-easymesh/Makefile -------------------------------------------------------------------------------- /luci-app-easymesh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-easymesh/README.md -------------------------------------------------------------------------------- /luci-app-easymesh/po/zh-cn/easymesh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/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/kenzok8/litte/HEAD/luci-app-easymesh/root/etc/config/easymesh -------------------------------------------------------------------------------- /luci-app-easymesh/root/etc/init.d/easymesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-easymesh/root/etc/init.d/easymesh -------------------------------------------------------------------------------- /luci-app-eqos/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-eqos/LICENSE -------------------------------------------------------------------------------- /luci-app-eqos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-eqos/Makefile -------------------------------------------------------------------------------- /luci-app-eqos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-eqos/README.md -------------------------------------------------------------------------------- /luci-app-eqos/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-eqos/README_ZH.md -------------------------------------------------------------------------------- /luci-app-eqos/luasrc/controller/eqos.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-eqos/luasrc/controller/eqos.lua -------------------------------------------------------------------------------- /luci-app-eqos/luasrc/model/cbi/eqos.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-eqos/luasrc/model/cbi/eqos.lua -------------------------------------------------------------------------------- /luci-app-eqos/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-eqos/po/zh_Hans/eqos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-eqos/po/zh_Hans/eqos.po -------------------------------------------------------------------------------- /luci-app-eqos/root/etc/config/eqos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-eqos/root/etc/config/eqos -------------------------------------------------------------------------------- /luci-app-eqos/root/etc/init.d/eqos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-eqos/root/etc/init.d/eqos -------------------------------------------------------------------------------- /luci-app-eqos/root/usr/sbin/eqos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-eqos/root/usr/sbin/eqos -------------------------------------------------------------------------------- /luci-app-fchomo/.prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-fchomo/.prepare.sh -------------------------------------------------------------------------------- /luci-app-fchomo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-fchomo/Makefile -------------------------------------------------------------------------------- /luci-app-fchomo/docs/Ruleset-URI-Scheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-fchomo/docs/Ruleset-URI-Scheme.md -------------------------------------------------------------------------------- /luci-app-fchomo/docs/audio/A!.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-fchomo/docs/audio/A!.mp3 -------------------------------------------------------------------------------- /luci-app-fchomo/docs/css/ClearnessDark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-fchomo/docs/css/ClearnessDark.css -------------------------------------------------------------------------------- /luci-app-fchomo/docs/example/bypasscn.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-fchomo/docs/example/bypasscn.config -------------------------------------------------------------------------------- /luci-app-fchomo/docs/example/gfwlist.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-fchomo/docs/example/gfwlist.config -------------------------------------------------------------------------------- /luci-app-fchomo/docs/img/shark-taiko.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-fchomo/docs/img/shark-taiko.gif -------------------------------------------------------------------------------- /luci-app-fchomo/po/templates/fchomo.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-fchomo/po/templates/fchomo.pot -------------------------------------------------------------------------------- /luci-app-fchomo/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-fchomo/po/zh_Hans/fchomo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-fchomo/po/zh_Hans/fchomo.po -------------------------------------------------------------------------------- /luci-app-fchomo/po/zh_Hant/fchomo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-fchomo/po/zh_Hant/fchomo.po -------------------------------------------------------------------------------- /luci-app-fchomo/root/etc/config/fchomo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-fchomo/root/etc/config/fchomo -------------------------------------------------------------------------------- /luci-app-fchomo/root/etc/init.d/fchomo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-fchomo/root/etc/init.d/fchomo -------------------------------------------------------------------------------- /luci-app-fileassistant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-fileassistant/Makefile -------------------------------------------------------------------------------- /luci-app-filebrowser-go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser-go/Makefile -------------------------------------------------------------------------------- /luci-app-filebrowser-go/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-filebrowser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/Makefile -------------------------------------------------------------------------------- /luci-app-filebrowser/po/ar/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/ar/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/ast/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/ast/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/ca/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/ca/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/cs/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/cs/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/da/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/da/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/de/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/de/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/eo/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/eo/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/es/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/es/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/et/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/et/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/fa/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/fa/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/fi/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/fi/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/fr/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/fr/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/ga/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/ga/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/hu/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/hu/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/it/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/it/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/ja/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/ja/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/lt/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/lt/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/lv/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/lv/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/nl/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/nl/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/pl/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/pl/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/pt/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/pt/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/pt_BR/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/pt_BR/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/ro/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/ro/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/ru/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/ru/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/sk/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/sk/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/sv/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/sv/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/ta/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/ta/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/tr/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/tr/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/uk/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/uk/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/vi/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/vi/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/yua/filebrowser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-filebrowser/po/yua/filebrowser.po -------------------------------------------------------------------------------- /luci-app-filebrowser/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-gost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-gost/Makefile -------------------------------------------------------------------------------- /luci-app-gost/po/templates/gost.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-gost/po/templates/gost.pot -------------------------------------------------------------------------------- /luci-app-gost/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-gost/po/zh_Hans/gost.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-gost/po/zh_Hans/gost.po -------------------------------------------------------------------------------- /luci-app-guest-wifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-guest-wifi/Makefile -------------------------------------------------------------------------------- /luci-app-guest-wifi/README.md: -------------------------------------------------------------------------------- 1 | # luci-app-guest-wifi -------------------------------------------------------------------------------- /luci-app-guest-wifi/po/zh-cn/guest-wifi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-guest-wifi/po/zh-cn/guest-wifi.po -------------------------------------------------------------------------------- /luci-app-guest-wifi/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-guest-wifi/root/usr/sbin/guest-wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-guest-wifi/root/usr/sbin/guest-wifi -------------------------------------------------------------------------------- /luci-app-homeproxy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-homeproxy/LICENSE -------------------------------------------------------------------------------- /luci-app-homeproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-homeproxy/Makefile -------------------------------------------------------------------------------- /luci-app-homeproxy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-homeproxy/README -------------------------------------------------------------------------------- /luci-app-homeproxy/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-homeproxy/po/zh_Hans/homeproxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-homeproxy/po/zh_Hans/homeproxy.po -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/config/homeproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-homeproxy/root/etc/config/homeproxy -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/homeproxy/resources/china_ip4.ver: -------------------------------------------------------------------------------- 1 | 20251109033819 2 | -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/homeproxy/resources/china_ip6.ver: -------------------------------------------------------------------------------- 1 | 20251109033819 2 | -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/homeproxy/resources/china_list.ver: -------------------------------------------------------------------------------- 1 | 202511082212 2 | -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/homeproxy/resources/gfw_list.ver: -------------------------------------------------------------------------------- 1 | 202511082212 2 | -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/init.d/homeproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-homeproxy/root/etc/init.d/homeproxy -------------------------------------------------------------------------------- /luci-app-ikoolproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ikoolproxy/Makefile -------------------------------------------------------------------------------- /luci-app-ikoolproxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ikoolproxy/README.md -------------------------------------------------------------------------------- /luci-app-ikoolproxy/change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ikoolproxy/change.log -------------------------------------------------------------------------------- /luci-app-ikoolproxy/development.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ikoolproxy/development.doc -------------------------------------------------------------------------------- /luci-app-ikoolproxy/koolproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ikoolproxy/koolproxy/Makefile -------------------------------------------------------------------------------- /luci-app-ikoolproxy/koolproxy/files/aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ikoolproxy/koolproxy/files/aarch64 -------------------------------------------------------------------------------- /luci-app-ikoolproxy/koolproxy/files/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ikoolproxy/koolproxy/files/arm -------------------------------------------------------------------------------- /luci-app-ikoolproxy/koolproxy/files/i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ikoolproxy/koolproxy/files/i386 -------------------------------------------------------------------------------- /luci-app-ikoolproxy/koolproxy/files/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ikoolproxy/koolproxy/files/mips -------------------------------------------------------------------------------- /luci-app-ikoolproxy/koolproxy/files/mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ikoolproxy/koolproxy/files/mipsel -------------------------------------------------------------------------------- /luci-app-ikoolproxy/koolproxy/files/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/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/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-istorex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-istorex/Makefile -------------------------------------------------------------------------------- /luci-app-istorex/root/etc/config/istorex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/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-lucky/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-lucky/README.md -------------------------------------------------------------------------------- /luci-app-lucky/doc/lucky1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-lucky/doc/lucky1.png -------------------------------------------------------------------------------- /luci-app-lucky/doc/lucky2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-lucky/doc/lucky2.png -------------------------------------------------------------------------------- /luci-app-lucky/doc/lucky3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-lucky/doc/lucky3.png -------------------------------------------------------------------------------- /luci-app-lucky/luci-app-lucky/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-lucky/luci-app-lucky/Makefile -------------------------------------------------------------------------------- /luci-app-lucky/lucky/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-lucky/lucky/Makefile -------------------------------------------------------------------------------- /luci-app-lucky/lucky/files/lucky.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-lucky/lucky/files/lucky.config -------------------------------------------------------------------------------- /luci-app-lucky/lucky/files/lucky.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-lucky/lucky/files/lucky.init -------------------------------------------------------------------------------- /luci-app-lucky/lucky/files/luckyarch.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-lucky/lucky/files/luckyarch.bin -------------------------------------------------------------------------------- /luci-app-microsocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-microsocks/Makefile -------------------------------------------------------------------------------- /luci-app-microsocks/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-microsocks/po/zh_Hans/microsocks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-microsocks/po/zh_Hans/microsocks.po -------------------------------------------------------------------------------- /luci-app-momo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-momo/Makefile -------------------------------------------------------------------------------- /luci-app-momo/po/templates/momo.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-momo/po/templates/momo.pot -------------------------------------------------------------------------------- /luci-app-momo/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-momo/po/zh_Hans/momo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-momo/po/zh_Hans/momo.po -------------------------------------------------------------------------------- /luci-app-mosdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-mosdns/Makefile -------------------------------------------------------------------------------- /luci-app-mosdns/luasrc/controller/mosdns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-mosdns/luasrc/controller/mosdns.lua -------------------------------------------------------------------------------- /luci-app-mosdns/po/zh-cn/mosdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/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/kenzok8/litte/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/kenzok8/litte/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/mosdns/rule/streaming.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-nikki/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-nikki/Makefile -------------------------------------------------------------------------------- /luci-app-nikki/po/templates/nikki.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-nikki/po/templates/nikki.pot -------------------------------------------------------------------------------- /luci-app-nikki/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-nikki/po/zh_Hans/nikki.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-nikki/po/zh_Hans/nikki.po -------------------------------------------------------------------------------- /luci-app-nikki/po/zh_Hant/nikki.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-nikki/po/zh_Hant/nikki.po -------------------------------------------------------------------------------- /luci-app-openclash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openclash/Makefile -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/openclash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openclash/luasrc/openclash.lua -------------------------------------------------------------------------------- /luci-app-openclash/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/config/openclash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openclash/root/etc/config/openclash -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/init.d/openclash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openclash/root/etc/init.d/openclash -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/custom/openclash_custom_domain_dns.list: -------------------------------------------------------------------------------- 1 | #baidu.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.metacubex.one -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/zashboard/CNAME: -------------------------------------------------------------------------------- 1 | board.zash.run.place -------------------------------------------------------------------------------- /luci-app-openclash/tools/po2lmo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openclash/tools/po2lmo/Makefile -------------------------------------------------------------------------------- /luci-app-openclash/tools/po2lmo/src/po2lmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openclash/tools/po2lmo/src/po2lmo -------------------------------------------------------------------------------- /luci-app-openclash/tools/po2lmo/src/po2lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openclash/tools/po2lmo/src/po2lmo.c -------------------------------------------------------------------------------- /luci-app-openlist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/Makefile -------------------------------------------------------------------------------- /luci-app-openlist/po/ar/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/ar/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/bg/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/bg/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/bn_BD/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/bn_BD/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/ca/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/ca/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/cs/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/cs/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/da/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/da/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/de/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/de/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/el/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/el/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/es/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/es/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/et/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/et/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/fa/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/fa/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/fi/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/fi/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/fr/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/fr/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/ga/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/ga/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/he/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/he/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/hi/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/hi/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/hu/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/hu/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/it/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/it/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/ja/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/ja/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/ko/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/ko/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/lt/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/lt/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/mr/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/mr/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/ms/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/ms/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/nb_NO/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/nb_NO/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/nl/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/nl/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/pl/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/pl/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/pt/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/pt/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/pt_BR/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/pt_BR/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/ro/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/ro/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/ru/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/ru/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/sk/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/sk/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/sv/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/sv/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/ta/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/ta/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/templates/openlist.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/templates/openlist.pot -------------------------------------------------------------------------------- /luci-app-openlist/po/tr/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/tr/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/uk/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/uk/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/vi/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/vi/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-openlist/po/zh_Hans/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/zh_Hans/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist/po/zh_Hant/openlist.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist/po/zh_Hant/openlist.po -------------------------------------------------------------------------------- /luci-app-openlist2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist2/Makefile -------------------------------------------------------------------------------- /luci-app-openlist2/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-openlist2/po/zh_Hans/openlist2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-openlist2/po/zh_Hans/openlist2.po -------------------------------------------------------------------------------- /luci-app-partexp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-partexp/LICENSE -------------------------------------------------------------------------------- /luci-app-partexp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-partexp/README.md -------------------------------------------------------------------------------- /luci-app-partexp/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-partexp/README_CN.md -------------------------------------------------------------------------------- /luci-app-partexp/doc/partexp0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-partexp/doc/partexp0.png -------------------------------------------------------------------------------- /luci-app-partexp/doc/partexp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-partexp/doc/partexp1.png -------------------------------------------------------------------------------- /luci-app-partexp/doc/partexp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-partexp/doc/partexp2.png -------------------------------------------------------------------------------- /luci-app-partexp/luci-app-partexp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-partexp/luci-app-partexp/Makefile -------------------------------------------------------------------------------- /luci-app-partexp/luci-app-partexp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-partexp/luci-app-partexp/README.md -------------------------------------------------------------------------------- /luci-app-partexp/luci-app-partexp/root/etc/partexp/lucilogpos: -------------------------------------------------------------------------------- 1 | 1043 -------------------------------------------------------------------------------- /luci-app-partexp/luci-app-partexp/root/etc/partexp/partexp.log: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /luci-app-passwall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-passwall/Makefile -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/passwall/api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-passwall/luasrc/passwall/api.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/passwall/com.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-passwall/luasrc/passwall/com.lua -------------------------------------------------------------------------------- /luci-app-passwall/po/zh-cn/passwall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-passwall/po/zh-cn/passwall.po -------------------------------------------------------------------------------- /luci-app-passwall/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-passwall/root/etc/init.d/passwall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-passwall/root/etc/init.d/passwall -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/rules/block_host: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/rules/block_ip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-passwall2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-passwall2/Makefile -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/passwall2/api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-passwall2/luasrc/passwall2/api.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/passwall2/com.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-passwall2/luasrc/passwall2/com.lua -------------------------------------------------------------------------------- /luci-app-passwall2/po/zh-cn/passwall2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-passwall2/po/zh-cn/passwall2.po -------------------------------------------------------------------------------- /luci-app-passwall2/po/zh-tw/passwall2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-passwall2/po/zh-tw/passwall2.po -------------------------------------------------------------------------------- /luci-app-passwall2/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-passwall2/po/zh_Hant: -------------------------------------------------------------------------------- 1 | zh-tw -------------------------------------------------------------------------------- /luci-app-passwall2/root/etc/init.d/passwall2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-passwall2/root/etc/init.d/passwall2 -------------------------------------------------------------------------------- /luci-app-qbittorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-qbittorrent/Makefile -------------------------------------------------------------------------------- /luci-app-qbittorrent/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-quickstart/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-quickstart/API.md -------------------------------------------------------------------------------- /luci-app-quickstart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-quickstart/Makefile -------------------------------------------------------------------------------- /luci-app-quickstart/htdocs/luci-static/quickstart/i18n/zh-cn.json: -------------------------------------------------------------------------------- 1 | {"zh-cn":{}} -------------------------------------------------------------------------------- /luci-app-quickstart/po/zh-cn/quickstart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/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-smartdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/Makefile -------------------------------------------------------------------------------- /luci-app-smartdns/po/ar/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/ar/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/bg/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/bg/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/bn_BD/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/bn_BD/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/ca/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/ca/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/cs/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/cs/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/da/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/da/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/de/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/de/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/el/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/el/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/es/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/es/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/fi/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/fi/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/fr/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/fr/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/ga/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/ga/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/he/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/he/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/hi/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/hi/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/hu/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/hu/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/it/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/it/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/ja/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/ja/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/ko/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/ko/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/lt/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/lt/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/mr/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/mr/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/ms/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/ms/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/nb_NO/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/nb_NO/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/nl/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/nl/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/pl/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/pl/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/pt/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/pt/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/pt_BR/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/pt_BR/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/ro/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/ro/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/ru/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/ru/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/sk/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/sk/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/sv/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/sv/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/ta/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/ta/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/templates/smartdns.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/templates/smartdns.pot -------------------------------------------------------------------------------- /luci-app-smartdns/po/tr/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/tr/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/uk/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/uk/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/vi/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/vi/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-smartdns/po/zh_Hans/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/zh_Hans/smartdns.po -------------------------------------------------------------------------------- /luci-app-smartdns/po/zh_Hant/smartdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-smartdns/po/zh_Hant/smartdns.po -------------------------------------------------------------------------------- /luci-app-snmpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/Makefile -------------------------------------------------------------------------------- /luci-app-snmpd/po/ar/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/ar/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/bg/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/bg/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/bn_BD/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/bn_BD/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/ca/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/ca/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/cs/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/cs/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/da/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/da/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/de/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/de/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/el/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/el/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/es/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/es/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/fi/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/fi/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/fr/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/fr/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/ga/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/ga/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/he/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/he/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/hi/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/hi/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/hu/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/hu/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/it/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/it/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/ja/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/ja/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/ko/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/ko/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/lt/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/lt/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/lv/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/lv/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/mr/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/mr/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/ms/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/ms/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/nb_NO/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/nb_NO/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/nl/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/nl/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/pl/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/pl/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/pt/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/pt/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/pt_BR/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/pt_BR/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/ro/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/ro/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/ru/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/ru/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/sk/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/sk/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/sv/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/sv/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/ta/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/ta/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/templates/snmpd.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/templates/snmpd.pot -------------------------------------------------------------------------------- /luci-app-snmpd/po/tr/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/tr/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/uk/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/uk/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/vi/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/vi/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/yua/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/yua/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-snmpd/po/zh_Hans/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/zh_Hans/snmpd.po -------------------------------------------------------------------------------- /luci-app-snmpd/po/zh_Hant/snmpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-snmpd/po/zh_Hant/snmpd.po -------------------------------------------------------------------------------- /luci-app-ssr-plus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ssr-plus/Makefile -------------------------------------------------------------------------------- /luci-app-ssr-plus/po/templates/ssr-plus.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ssr-plus/po/templates/ssr-plus.pot -------------------------------------------------------------------------------- /luci-app-ssr-plus/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-ssr-plus/po/zh_Hans/ssr-plus.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ssr-plus/po/zh_Hans/ssr-plus.po -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/config/shadowsocksr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/kenzok8/litte/HEAD/luci-app-ssr-plus/root/etc/ssrplus/deny.list -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/usr/bin/ssr-monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ssr-plus/root/usr/bin/ssr-monitor -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/usr/bin/ssr-rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ssr-plus/root/usr/bin/ssr-rules -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/usr/bin/ssr-switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-ssr-plus/root/usr/bin/ssr-switch -------------------------------------------------------------------------------- /luci-app-store/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-store/API.md -------------------------------------------------------------------------------- /luci-app-store/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-store/Makefile -------------------------------------------------------------------------------- /luci-app-store/README.md: -------------------------------------------------------------------------------- 1 | # luci-app-store 2 | OpenWRT应用商店 3 | 4 | -------------------------------------------------------------------------------- /luci-app-store/luasrc/controller/store.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-store/luasrc/controller/store.lua -------------------------------------------------------------------------------- /luci-app-store/luasrc/view/store/main.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-store/luasrc/view/store/main.htm -------------------------------------------------------------------------------- /luci-app-store/root/bin/is-opkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-store/root/bin/is-opkg -------------------------------------------------------------------------------- /luci-app-store/root/etc/config/istore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-store/root/etc/config/istore -------------------------------------------------------------------------------- /luci-app-store/root/etc/init.d/istore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-store/root/etc/init.d/istore -------------------------------------------------------------------------------- /luci-app-store/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-store/src/Makefile -------------------------------------------------------------------------------- /luci-app-store/src/compat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/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/kenzok8/litte/HEAD/luci-app-store/src/po/templates/iStore.pot -------------------------------------------------------------------------------- /luci-app-store/src/po/zh-cn/iStore.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-store/src/po/zh-cn/iStore.po -------------------------------------------------------------------------------- /luci-app-store/src/po/zh-tw/iStore.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-store/src/po/zh-tw/iStore.po -------------------------------------------------------------------------------- /luci-app-store/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-store/swagger.yaml -------------------------------------------------------------------------------- /luci-app-transmission/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/Makefile -------------------------------------------------------------------------------- /luci-app-transmission/po/ar/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/ar/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/bg/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/bg/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/ca/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/ca/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/cs/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/cs/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/da/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/da/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/de/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/de/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/el/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/el/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/es/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/es/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/fi/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/fi/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/fr/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/fr/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/ga/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/ga/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/he/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/he/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/hi/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/hi/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/hu/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/hu/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/it/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/it/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/ja/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/ja/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/ko/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/ko/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/lt/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/lt/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/lv/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/lv/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/mr/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/mr/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/ms/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/ms/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/nl/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/nl/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/pl/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/pl/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/pt/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/pt/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/ro/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/ro/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/ru/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/ru/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/sk/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/sk/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/sv/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/sv/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/ta/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/ta/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/tr/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/tr/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/uk/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/uk/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/vi/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/vi/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/yua/transmission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-transmission/po/yua/transmission.po -------------------------------------------------------------------------------- /luci-app-transmission/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-unblockneteasemusic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-unblockneteasemusic/LICENSE -------------------------------------------------------------------------------- /luci-app-unblockneteasemusic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-unblockneteasemusic/Makefile -------------------------------------------------------------------------------- /luci-app-unblockneteasemusic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-unblockneteasemusic/README.md -------------------------------------------------------------------------------- /luci-app-unblockneteasemusic/views/view1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-unblockneteasemusic/views/view1.jpg -------------------------------------------------------------------------------- /luci-app-unblockneteasemusic/views/view2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-unblockneteasemusic/views/view2.jpg -------------------------------------------------------------------------------- /luci-app-unblockneteasemusic/views/view3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-unblockneteasemusic/views/view3.jpg -------------------------------------------------------------------------------- /luci-app-unblockneteasemusic/views/view4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-unblockneteasemusic/views/view4.jpg -------------------------------------------------------------------------------- /luci-app-v2raya/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/Makefile -------------------------------------------------------------------------------- /luci-app-v2raya/po/ar/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/ar/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/bg/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/bg/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/bn_BD/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/bn_BD/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/ca/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/ca/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/cs/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/cs/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/da/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/da/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/de/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/de/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/el/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/el/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/es/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/es/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/fi/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/fi/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/fr/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/fr/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/ga/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/ga/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/he/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/he/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/hi/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/hi/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/hu/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/hu/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/it/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/it/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/ja/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/ja/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/ko/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/ko/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/lt/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/lt/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/mr/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/mr/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/ms/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/ms/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/nb_NO/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/nb_NO/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/nl/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/nl/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/pl/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/pl/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/pt/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/pt/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/pt_BR/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/pt_BR/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/ro/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/ro/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/ru/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/ru/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/sk/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/sk/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/sv/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/sv/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/ta/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/ta/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/templates/v2raya.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/templates/v2raya.pot -------------------------------------------------------------------------------- /luci-app-v2raya/po/tr/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/tr/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/uk/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/uk/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/vi/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/vi/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/yua/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/yua/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-v2raya/po/zh_Hans/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/zh_Hans/v2raya.po -------------------------------------------------------------------------------- /luci-app-v2raya/po/zh_Hant/v2raya.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-v2raya/po/zh_Hant/v2raya.po -------------------------------------------------------------------------------- /luci-app-watchcat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/Makefile -------------------------------------------------------------------------------- /luci-app-watchcat/po/ar/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/ar/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/bg/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/bg/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/bn_BD/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/bn_BD/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/ca/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/ca/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/cs/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/cs/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/da/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/da/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/de/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/de/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/el/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/el/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/es/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/es/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/fi/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/fi/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/fr/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/fr/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/ga/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/ga/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/he/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/he/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/hi/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/hi/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/hu/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/hu/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/it/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/it/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/ja/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/ja/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/ko/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/ko/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/lt/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/lt/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/mr/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/mr/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/ms/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/ms/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/nb_NO/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/nb_NO/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/nl/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/nl/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/pl/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/pl/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/pt/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/pt/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/pt_BR/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/pt_BR/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/ro/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/ro/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/ru/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/ru/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/sk/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/sk/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/sv/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/sv/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/ta/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/ta/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/templates/watchcat.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/templates/watchcat.pot -------------------------------------------------------------------------------- /luci-app-watchcat/po/tr/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/tr/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/uk/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/uk/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/vi/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/vi/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-watchcat/po/zh_Hans/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/zh_Hans/watchcat.po -------------------------------------------------------------------------------- /luci-app-watchcat/po/zh_Hant/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-watchcat/po/zh_Hant/watchcat.po -------------------------------------------------------------------------------- /luci-app-wechatpush/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-wechatpush/Makefile -------------------------------------------------------------------------------- /luci-app-wechatpush/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-app-wechatpush/README.md -------------------------------------------------------------------------------- /luci-app-wechatpush/root/usr/share/serverchan/api/ip_blacklist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-lib-taskd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-lib-taskd/Makefile -------------------------------------------------------------------------------- /luci-lib-taskd/luasrc/model/tasks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-lib-taskd/luasrc/model/tasks.lua -------------------------------------------------------------------------------- /luci-lib-taskd/luasrc/view/tasks/docker.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-lib-taskd/luasrc/view/tasks/docker.htm -------------------------------------------------------------------------------- /luci-lib-taskd/luasrc/view/tasks/embed.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-lib-taskd/luasrc/view/tasks/embed.htm -------------------------------------------------------------------------------- /luci-lib-taskd/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/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/kenzok8/litte/HEAD/luci-lib-taskd/src/po/zh-cn/lib-tasks.po -------------------------------------------------------------------------------- /luci-lib-xterm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-lib-xterm/Makefile -------------------------------------------------------------------------------- /luci-lib-xterm/luasrc/view/xterm/embed.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-lib-xterm/luasrc/view/xterm/embed.htm -------------------------------------------------------------------------------- /luci-theme-alpha/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/LICENSE -------------------------------------------------------------------------------- /luci-theme-alpha/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/Makefile -------------------------------------------------------------------------------- /luci-theme-alpha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/README.md -------------------------------------------------------------------------------- /luci-theme-alpha/js/menu-alpha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/js/menu-alpha.js -------------------------------------------------------------------------------- /luci-theme-alpha/luasrc/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/luasrc/app.js -------------------------------------------------------------------------------- /luci-theme-alpha/luasrc/background/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/luasrc/background/login.png -------------------------------------------------------------------------------- /luci-theme-alpha/luasrc/brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/luasrc/brand.png -------------------------------------------------------------------------------- /luci-theme-alpha/luasrc/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/luasrc/favicon.ico -------------------------------------------------------------------------------- /luci-theme-alpha/luasrc/fonts/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/luasrc/fonts/stylesheet.css -------------------------------------------------------------------------------- /luci-theme-alpha/luasrc/gaya/gaya.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/luasrc/gaya/gaya.css -------------------------------------------------------------------------------- /luci-theme-alpha/luasrc/gaya/gaya.css.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/luasrc/gaya/gaya.css.bak -------------------------------------------------------------------------------- /luci-theme-alpha/luasrc/gaya/icon/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/luasrc/gaya/icon/arrow.svg -------------------------------------------------------------------------------- /luci-theme-alpha/luasrc/gaya/icon/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/luasrc/gaya/icon/logout.svg -------------------------------------------------------------------------------- /luci-theme-alpha/luasrc/gaya/icon/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/luasrc/gaya/icon/save.svg -------------------------------------------------------------------------------- /luci-theme-alpha/luasrc/style/brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/luasrc/style/brand.png -------------------------------------------------------------------------------- /luci-theme-alpha/luasrc/style/catatan.txt: -------------------------------------------------------------------------------- 1 | buat tambah login page disini 2 | -------------------------------------------------------------------------------- /luci-theme-alpha/luasrc/style/indo-wrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/luasrc/style/indo-wrt.png -------------------------------------------------------------------------------- /luci-theme-alpha/luasrc/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/luasrc/style/style.css -------------------------------------------------------------------------------- /luci-theme-alpha/mobileview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/mobileview1.png -------------------------------------------------------------------------------- /luci-theme-alpha/mobileview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/mobileview2.png -------------------------------------------------------------------------------- /luci-theme-alpha/mobileview3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/mobileview3.png -------------------------------------------------------------------------------- /luci-theme-alpha/root/etc/config/alpha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/root/etc/config/alpha -------------------------------------------------------------------------------- /luci-theme-alpha/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/ss1.png -------------------------------------------------------------------------------- /luci-theme-alpha/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/ss2.png -------------------------------------------------------------------------------- /luci-theme-alpha/ss3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/ss3.png -------------------------------------------------------------------------------- /luci-theme-alpha/template/footer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/template/footer.htm -------------------------------------------------------------------------------- /luci-theme-alpha/template/header.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/template/header.htm -------------------------------------------------------------------------------- /luci-theme-alpha/template/sysauth.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-alpha/template/sysauth.htm -------------------------------------------------------------------------------- /luci-theme-argon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-argon/LICENSE -------------------------------------------------------------------------------- /luci-theme-argon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-argon/Makefile -------------------------------------------------------------------------------- /luci-theme-argon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-argon/README.md -------------------------------------------------------------------------------- /luci-theme-argon/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-argon/README_ZH.md -------------------------------------------------------------------------------- /luci-theme-argon/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-argon/RELEASE.md -------------------------------------------------------------------------------- /luci-theme-argon/RELEASE_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-argon/RELEASE_ZH.md -------------------------------------------------------------------------------- /luci-theme-argon/htdocs/luci-static/argon/background/README.md: -------------------------------------------------------------------------------- 1 | Drop background here! 2 | accept jpg png gif mp4 webm 3 | -------------------------------------------------------------------------------- /luci-theme-argon/less/cascade.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-argon/less/cascade.less -------------------------------------------------------------------------------- /luci-theme-argon/less/dark.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-argon/less/dark.less -------------------------------------------------------------------------------- /luci-theme-argon/less/fonts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-argon/less/fonts.less -------------------------------------------------------------------------------- /luci-theme-argon/less/layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-argon/less/layout.less -------------------------------------------------------------------------------- /luci-theme-argon/less/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-argon/less/normalize.less -------------------------------------------------------------------------------- /luci-theme-argon/less/page-fix.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-argon/less/page-fix.less -------------------------------------------------------------------------------- /luci-theme-argon/less/pure-min.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-argon/less/pure-min.less -------------------------------------------------------------------------------- /luci-theme-argon/less/responsive.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-argon/less/responsive.less -------------------------------------------------------------------------------- /luci-theme-argon/less/sysauth.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-argon/less/sysauth.less -------------------------------------------------------------------------------- /luci-theme-argone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-argone/Makefile -------------------------------------------------------------------------------- /luci-theme-argone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-argone/README.md -------------------------------------------------------------------------------- /luci-theme-atmaterial_new/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-atmaterial_new/Makefile -------------------------------------------------------------------------------- /luci-theme-design/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-design/LICENSE -------------------------------------------------------------------------------- /luci-theme-design/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-design/Makefile -------------------------------------------------------------------------------- /luci-theme-design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-design/README.md -------------------------------------------------------------------------------- /luci-theme-design/README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-design/README_en.md -------------------------------------------------------------------------------- /luci-theme-design/dev/design.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-design/dev/design.js -------------------------------------------------------------------------------- /luci-theme-design/dev/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-design/dev/script.js -------------------------------------------------------------------------------- /luci-theme-design/dev/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-design/dev/style.css -------------------------------------------------------------------------------- /luci-theme-design/preview/IMG_0328.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-design/preview/IMG_0328.PNG -------------------------------------------------------------------------------- /luci-theme-design/preview/IMG_0329.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-design/preview/IMG_0329.PNG -------------------------------------------------------------------------------- /luci-theme-design/preview/firewall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-design/preview/firewall.png -------------------------------------------------------------------------------- /luci-theme-design/preview/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-design/preview/home.png -------------------------------------------------------------------------------- /luci-theme-design/preview/home1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-design/preview/home1.png -------------------------------------------------------------------------------- /luci-theme-design/preview/iface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-design/preview/iface.png -------------------------------------------------------------------------------- /luci-theme-design/preview/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-design/preview/light.png -------------------------------------------------------------------------------- /luci-theme-design/preview/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-design/preview/login.png -------------------------------------------------------------------------------- /luci-theme-design/preview/login1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-design/preview/login1.png -------------------------------------------------------------------------------- /luci-theme-design/preview/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-design/preview/page.png -------------------------------------------------------------------------------- /luci-theme-design/preview/webapp_home.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-design/preview/webapp_home.PNG -------------------------------------------------------------------------------- /luci-theme-design/preview/webapp_vssr.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-design/preview/webapp_vssr.PNG -------------------------------------------------------------------------------- /luci-theme-design/preview/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-design/preview/wifi.png -------------------------------------------------------------------------------- /luci-theme-ifit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-ifit/Makefile -------------------------------------------------------------------------------- /luci-theme-ifit/files/10_luci-theme-ifit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-ifit/files/10_luci-theme-ifit -------------------------------------------------------------------------------- /luci-theme-ifit/files/htdocs/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-ifit/files/htdocs/css/style.css -------------------------------------------------------------------------------- /luci-theme-ifit/files/htdocs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-ifit/files/htdocs/favicon.ico -------------------------------------------------------------------------------- /luci-theme-ifit/files/htdocs/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-ifit/files/htdocs/js/script.js -------------------------------------------------------------------------------- /luci-theme-ifit/files/htdocs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-ifit/files/htdocs/logo.png -------------------------------------------------------------------------------- /luci-theme-ifit/files/templates/footer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-ifit/files/templates/footer.htm -------------------------------------------------------------------------------- /luci-theme-ifit/files/templates/header.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-ifit/files/templates/header.htm -------------------------------------------------------------------------------- /luci-theme-material3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-material3/Makefile -------------------------------------------------------------------------------- /luci-theme-material3/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-material3/Readme.md -------------------------------------------------------------------------------- /luci-theme-material3/htdocs/luci-static/material3-blue: -------------------------------------------------------------------------------- 1 | material3 -------------------------------------------------------------------------------- /luci-theme-material3/htdocs/luci-static/material3-green: -------------------------------------------------------------------------------- 1 | material3 -------------------------------------------------------------------------------- /luci-theme-material3/htdocs/luci-static/material3-red: -------------------------------------------------------------------------------- 1 | material3 -------------------------------------------------------------------------------- /luci-theme-material3/ucode/template/themes/material3-blue: -------------------------------------------------------------------------------- 1 | material3 -------------------------------------------------------------------------------- /luci-theme-material3/ucode/template/themes/material3-green: -------------------------------------------------------------------------------- 1 | material3 -------------------------------------------------------------------------------- /luci-theme-material3/ucode/template/themes/material3-red: -------------------------------------------------------------------------------- 1 | material3 -------------------------------------------------------------------------------- /luci-theme-opentopd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-opentopd/Makefile -------------------------------------------------------------------------------- /luci-theme-opentopd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-opentopd/README.md -------------------------------------------------------------------------------- /luci-theme-opentopd/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-opentopd/doc/index.md -------------------------------------------------------------------------------- /luci-theme-opentopd/doc/合并图.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-opentopd/doc/合并图.jpg -------------------------------------------------------------------------------- /luci-theme-opentopd/doc/实时监控.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-opentopd/doc/实时监控.jpg -------------------------------------------------------------------------------- /luci-theme-opentopd/doc/手机画面.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-opentopd/doc/手机画面.jpg -------------------------------------------------------------------------------- /luci-theme-opentopd/doc/登陆界面2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-opentopd/doc/登陆界面2.jpg -------------------------------------------------------------------------------- /luci-theme-opentopd/doc/登陆页面.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-opentopd/doc/登陆页面.jpg -------------------------------------------------------------------------------- /luci-theme-opentopd/doc/网络共享.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-opentopd/doc/网络共享.jpg -------------------------------------------------------------------------------- /luci-theme-opentopd/doc/预览界面.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-opentopd/doc/预览界面.jpg -------------------------------------------------------------------------------- /luci-theme-opentopd/doc/高级设置.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-opentopd/doc/高级设置.jpg -------------------------------------------------------------------------------- /luci-theme-tomato/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/luci-theme-tomato/Makefile -------------------------------------------------------------------------------- /lucky/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/lucky/Makefile -------------------------------------------------------------------------------- /microsocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/microsocks/Makefile -------------------------------------------------------------------------------- /mihomo/.prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/mihomo/.prepare.sh -------------------------------------------------------------------------------- /mihomo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/mihomo/Makefile -------------------------------------------------------------------------------- /momo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/momo/Makefile -------------------------------------------------------------------------------- /momo/files/firewall/geoip6_cn.nft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/momo/files/firewall/geoip6_cn.nft -------------------------------------------------------------------------------- /momo/files/firewall/geoip_cn.nft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/momo/files/firewall/geoip_cn.nft -------------------------------------------------------------------------------- /momo/files/momo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/momo/files/momo.conf -------------------------------------------------------------------------------- /momo/files/momo.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/momo/files/momo.init -------------------------------------------------------------------------------- /momo/files/momo.upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/momo/files/momo.upgrade -------------------------------------------------------------------------------- /momo/files/scripts/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/momo/files/scripts/debug.sh -------------------------------------------------------------------------------- /momo/files/scripts/firewall_include.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/momo/files/scripts/firewall_include.sh -------------------------------------------------------------------------------- /momo/files/scripts/include.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/momo/files/scripts/include.sh -------------------------------------------------------------------------------- /momo/files/uci-defaults/firewall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/momo/files/uci-defaults/firewall.sh -------------------------------------------------------------------------------- /momo/files/uci-defaults/migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/momo/files/uci-defaults/migrate.sh -------------------------------------------------------------------------------- /momo/files/ucode/hijack.ut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/momo/files/ucode/hijack.ut -------------------------------------------------------------------------------- /momo/files/ucode/include.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/momo/files/ucode/include.uc -------------------------------------------------------------------------------- /mosdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/mosdns/Makefile -------------------------------------------------------------------------------- /mosdns/patches/205-format-logtime.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/mosdns/patches/205-format-logtime.patch -------------------------------------------------------------------------------- /naiveproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/naiveproxy/Makefile -------------------------------------------------------------------------------- /naiveproxy/files/naiveproxy.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/naiveproxy/files/naiveproxy.config -------------------------------------------------------------------------------- /naiveproxy/files/naiveproxy.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/naiveproxy/files/naiveproxy.init -------------------------------------------------------------------------------- /nikki/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/nikki/Makefile -------------------------------------------------------------------------------- /nikki/files/mixin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/nikki/files/mixin.yaml -------------------------------------------------------------------------------- /nikki/files/nftables/geoip6_cn.nft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/nikki/files/nftables/geoip6_cn.nft -------------------------------------------------------------------------------- /nikki/files/nftables/geoip_cn.nft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/nikki/files/nftables/geoip_cn.nft -------------------------------------------------------------------------------- /nikki/files/nikki.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/nikki/files/nikki.conf -------------------------------------------------------------------------------- /nikki/files/nikki.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/nikki/files/nikki.init -------------------------------------------------------------------------------- /nikki/files/nikki.upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/nikki/files/nikki.upgrade -------------------------------------------------------------------------------- /nikki/files/scripts/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/nikki/files/scripts/debug.sh -------------------------------------------------------------------------------- /nikki/files/scripts/firewall_include.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/nikki/files/scripts/firewall_include.sh -------------------------------------------------------------------------------- /nikki/files/scripts/include.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/nikki/files/scripts/include.sh -------------------------------------------------------------------------------- /nikki/files/uci-defaults/firewall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/nikki/files/uci-defaults/firewall.sh -------------------------------------------------------------------------------- /nikki/files/uci-defaults/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/nikki/files/uci-defaults/init.sh -------------------------------------------------------------------------------- /nikki/files/uci-defaults/migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/nikki/files/uci-defaults/migrate.sh -------------------------------------------------------------------------------- /nikki/files/ucode/hijack.ut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/nikki/files/ucode/hijack.ut -------------------------------------------------------------------------------- /nikki/files/ucode/include.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/nikki/files/ucode/include.uc -------------------------------------------------------------------------------- /nikki/files/ucode/mixin.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/nikki/files/ucode/mixin.uc -------------------------------------------------------------------------------- /openlist2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/openlist2/Makefile -------------------------------------------------------------------------------- /openlist2/files/data.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/openlist2/files/data.db -------------------------------------------------------------------------------- /openlist2/files/openlist2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/openlist2/files/openlist2.config -------------------------------------------------------------------------------- /openlist2/files/openlist2.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/openlist2/files/openlist2.init -------------------------------------------------------------------------------- /openlist2/src/public/dist/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/openlist2/src/public/dist/assets/logo.png -------------------------------------------------------------------------------- /openlist2/src/public/dist/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/openlist2/src/public/dist/assets/logo.svg -------------------------------------------------------------------------------- /pdnsd-alt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/pdnsd-alt/Makefile -------------------------------------------------------------------------------- /pdnsd-alt/files/pdnsd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/pdnsd-alt/files/pdnsd.init -------------------------------------------------------------------------------- /pdnsd-alt/patches/020-headers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/pdnsd-alt/patches/020-headers.patch -------------------------------------------------------------------------------- /quickstart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/quickstart/Makefile -------------------------------------------------------------------------------- /quickstart/files/dhcpvalid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/quickstart/files/dhcpvalid.sh -------------------------------------------------------------------------------- /quickstart/files/manuf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/quickstart/files/manuf -------------------------------------------------------------------------------- /quickstart/files/quickstart.config: -------------------------------------------------------------------------------- 1 | config quickstart 'main' 2 | -------------------------------------------------------------------------------- /quickstart/files/quickstart.hotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/quickstart/files/quickstart.hotplug -------------------------------------------------------------------------------- /quickstart/files/quickstart.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/quickstart/files/quickstart.init -------------------------------------------------------------------------------- /quickstart/files/quickstart.uci-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/quickstart/files/quickstart.uci-default -------------------------------------------------------------------------------- /quickstart/files/startdhns.hotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/quickstart/files/startdhns.hotplug -------------------------------------------------------------------------------- /quickstart/files/startdhns.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/quickstart/files/startdhns.init -------------------------------------------------------------------------------- /redsocks2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/redsocks2/Makefile -------------------------------------------------------------------------------- /redsocks2/files/redsocks2.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/redsocks2/files/redsocks2.template -------------------------------------------------------------------------------- /shadow-tls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadow-tls/Makefile -------------------------------------------------------------------------------- /shadowsocks-rust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocks-rust/Makefile -------------------------------------------------------------------------------- /shadowsocksr-libev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/Makefile -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/Makefile.am -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/Makefile.in -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/README.md -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/acl.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/acl.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/auth.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/auth.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/base64.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/base64.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/cache.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/cache.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/check.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/common.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/crc32.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/encrypt.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/encrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/encrypt.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/http.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/http.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/jconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/jconf.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/jconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/jconf.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/json.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/json.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/list.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/list.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/netutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/netutils.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/netutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/netutils.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/obfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/obfs.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/obfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/obfs.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/obfsutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/obfsutil.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/protocol.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/resolv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/resolv.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/resolv.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/rule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/rule.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/rule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/rule.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/server.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/server.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/tls.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/tls.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/udprelay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/udprelay.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/udprelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/udprelay.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/uthash.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/utils.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/utils.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/verify.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/shadowsocksr-libev/src/server/verify.h -------------------------------------------------------------------------------- /simple-obfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/simple-obfs/Makefile -------------------------------------------------------------------------------- /sing-box/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/sing-box/Makefile -------------------------------------------------------------------------------- /sing-box/files/sing-box.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/sing-box/files/sing-box.conf -------------------------------------------------------------------------------- /sing-box/files/sing-box.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/sing-box/files/sing-box.init -------------------------------------------------------------------------------- /smartdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/smartdns/Makefile -------------------------------------------------------------------------------- /ssocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/ssocks/Makefile -------------------------------------------------------------------------------- /ssocks/patches/001-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/ssocks/patches/001-fix.patch -------------------------------------------------------------------------------- /ssocks/patches/002-gcc10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/ssocks/patches/002-gcc10.patch -------------------------------------------------------------------------------- /taskd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/taskd/Makefile -------------------------------------------------------------------------------- /taskd/files/taskd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/taskd/files/taskd.sh -------------------------------------------------------------------------------- /taskd/files/tasks.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/taskd/files/tasks.init -------------------------------------------------------------------------------- /tcping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/tcping/Makefile -------------------------------------------------------------------------------- /trojan-go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/trojan-go/Makefile -------------------------------------------------------------------------------- /trojan-plus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/trojan-plus/Makefile -------------------------------------------------------------------------------- /trojan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/trojan/Makefile -------------------------------------------------------------------------------- /tuic-client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/tuic-client/Makefile -------------------------------------------------------------------------------- /ucl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/ucl/Makefile -------------------------------------------------------------------------------- /ucl/patches/001-autoconf-compat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/ucl/patches/001-autoconf-compat.patch -------------------------------------------------------------------------------- /upx-static/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/upx-static/Makefile -------------------------------------------------------------------------------- /upx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/upx/Makefile -------------------------------------------------------------------------------- /v2dat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/v2dat/Makefile -------------------------------------------------------------------------------- /v2dat/patches/100-format-logtime.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/v2dat/patches/100-format-logtime.patch -------------------------------------------------------------------------------- /v2ray-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/v2ray-core/Makefile -------------------------------------------------------------------------------- /v2ray-geodata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/v2ray-geodata/Makefile -------------------------------------------------------------------------------- /v2ray-plugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/v2ray-plugin/Makefile -------------------------------------------------------------------------------- /v2raya/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/v2raya/Makefile -------------------------------------------------------------------------------- /v2raya/files/v2raya.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/v2raya/files/v2raya.config -------------------------------------------------------------------------------- /v2raya/files/v2raya.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/v2raya/files/v2raya.init -------------------------------------------------------------------------------- /xray-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/xray-core/Makefile -------------------------------------------------------------------------------- /xray-plugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/litte/HEAD/xray-plugin/Makefile --------------------------------------------------------------------------------