├── .github └── ISSUE_TEMPLATE │ ├── ------.md │ ├── ----.md │ ├── bug--.md │ ├── bug_report.md │ └── feature_request.md ├── 1.png ├── 1_en.png ├── 2.png ├── 2_en.png ├── README.en.md ├── README.md ├── babel.cfg ├── base ├── __init__.py ├── models.py └── router.py ├── init.py ├── install.sh ├── messages.pot ├── server ├── __init__.py └── router.py ├── static ├── axios │ └── axios.min.js ├── base64 │ └── base64.min.js ├── clipboard │ └── clipboard.min.js ├── css │ └── custom.css ├── js │ ├── axios-init.js │ ├── util.js │ └── v2_classes.js ├── qrcode │ └── qrious.min.js └── qs │ └── qs.min.js ├── template_config.json ├── templates ├── common │ ├── base.html │ ├── prompt_modal.html │ ├── qrcode_modal.html │ └── text_modal.html ├── index.html └── v2ray │ ├── accounts.html │ ├── base.html │ ├── clients.html │ ├── common_sider.html │ ├── inbound_modal.html │ ├── index.html │ ├── setting.html │ └── tutorial.html ├── translations ├── en │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── es │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po └── zh │ └── LC_MESSAGES │ ├── messages.mo │ └── messages.po ├── util ├── __init__.py ├── cmd_util.py ├── config.py ├── file_util.py ├── list_util.py ├── schedule_util.py ├── server_info.py ├── session_util.py ├── v2_jobs.py └── v2_util.py ├── v2-ui.py ├── v2-ui.sh └── v2ray ├── __init__.py ├── exceptions.py ├── models.py └── router.py /.github/ISSUE_TEMPLATE/------.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 其它相关问题 3 | about: 非面板的 BUG 统一在此提问 4 | title: "[other]" 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/----.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/.github/ISSUE_TEMPLATE/----.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug--.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/.github/ISSUE_TEMPLATE/bug--.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/1.png -------------------------------------------------------------------------------- /1_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/1_en.png -------------------------------------------------------------------------------- /2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/2.png -------------------------------------------------------------------------------- /2_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/2_en.png -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/README.md -------------------------------------------------------------------------------- /babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/babel.cfg -------------------------------------------------------------------------------- /base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /base/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/base/models.py -------------------------------------------------------------------------------- /base/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/base/router.py -------------------------------------------------------------------------------- /init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/init.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/install.sh -------------------------------------------------------------------------------- /messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/messages.pot -------------------------------------------------------------------------------- /server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/server/router.py -------------------------------------------------------------------------------- /static/axios/axios.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/static/axios/axios.min.js -------------------------------------------------------------------------------- /static/base64/base64.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/static/base64/base64.min.js -------------------------------------------------------------------------------- /static/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/static/clipboard/clipboard.min.js -------------------------------------------------------------------------------- /static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/static/css/custom.css -------------------------------------------------------------------------------- /static/js/axios-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/static/js/axios-init.js -------------------------------------------------------------------------------- /static/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/static/js/util.js -------------------------------------------------------------------------------- /static/js/v2_classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/static/js/v2_classes.js -------------------------------------------------------------------------------- /static/qrcode/qrious.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/static/qrcode/qrious.min.js -------------------------------------------------------------------------------- /static/qs/qs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/static/qs/qs.min.js -------------------------------------------------------------------------------- /template_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/template_config.json -------------------------------------------------------------------------------- /templates/common/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/templates/common/base.html -------------------------------------------------------------------------------- /templates/common/prompt_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/templates/common/prompt_modal.html -------------------------------------------------------------------------------- /templates/common/qrcode_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/templates/common/qrcode_modal.html -------------------------------------------------------------------------------- /templates/common/text_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/templates/common/text_modal.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/v2ray/accounts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/templates/v2ray/accounts.html -------------------------------------------------------------------------------- /templates/v2ray/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/templates/v2ray/base.html -------------------------------------------------------------------------------- /templates/v2ray/clients.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/templates/v2ray/clients.html -------------------------------------------------------------------------------- /templates/v2ray/common_sider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/templates/v2ray/common_sider.html -------------------------------------------------------------------------------- /templates/v2ray/inbound_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/templates/v2ray/inbound_modal.html -------------------------------------------------------------------------------- /templates/v2ray/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/templates/v2ray/index.html -------------------------------------------------------------------------------- /templates/v2ray/setting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/templates/v2ray/setting.html -------------------------------------------------------------------------------- /templates/v2ray/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/templates/v2ray/tutorial.html -------------------------------------------------------------------------------- /translations/en/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/translations/en/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /translations/en/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/translations/en/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /translations/es/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/translations/es/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /translations/es/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/translations/es/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /translations/zh/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/translations/zh/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /translations/zh/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/translations/zh/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/cmd_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/util/cmd_util.py -------------------------------------------------------------------------------- /util/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/util/config.py -------------------------------------------------------------------------------- /util/file_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/util/file_util.py -------------------------------------------------------------------------------- /util/list_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/util/list_util.py -------------------------------------------------------------------------------- /util/schedule_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/util/schedule_util.py -------------------------------------------------------------------------------- /util/server_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/util/server_info.py -------------------------------------------------------------------------------- /util/session_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/util/session_util.py -------------------------------------------------------------------------------- /util/v2_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/util/v2_jobs.py -------------------------------------------------------------------------------- /util/v2_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/util/v2_util.py -------------------------------------------------------------------------------- /v2-ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/v2-ui.py -------------------------------------------------------------------------------- /v2-ui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/v2-ui.sh -------------------------------------------------------------------------------- /v2ray/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v2ray/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/v2ray/exceptions.py -------------------------------------------------------------------------------- /v2ray/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/v2ray/models.py -------------------------------------------------------------------------------- /v2ray/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstralHope/v2-ui/HEAD/v2ray/router.py --------------------------------------------------------------------------------