├── .clang-format ├── .github ├── ISSUE_TEMPLATE │ ├── Bug-Report.md │ └── Feature-Request.md └── workflows │ ├── format.yml │ ├── linux-release.yml │ ├── macos-release.yml │ └── windows-release.yml ├── .gitignore ├── .gitmodules ├── .lgtm.yml ├── .travis.yml ├── LICENSE ├── README.md ├── appveyor.yml └── src ├── V2Ray-Desktop.pro ├── appproxy.cpp ├── appproxy.h ├── appproxyworker.cpp ├── appproxyworker.h ├── configurator.cpp ├── configurator.h ├── constants.h ├── images ├── icon-about.svg ├── icon-dashboard.svg ├── icon-logs.svg ├── icon-rules.svg ├── icon-servers.svg ├── icon-settings.svg ├── logo.png ├── v2ray.gray.png ├── v2ray.icns ├── v2ray.ico └── v2ray.png ├── locales └── zh-CN.ts ├── main.cpp ├── misc ├── tpl-linux-autostart.desktop └── tpl-macos-autostart.plist ├── networkproxy.cpp ├── networkproxy.h ├── networkrequest.cpp ├── networkrequest.h ├── qml.qrc ├── qrcodehelper.cpp ├── qrcodehelper.h ├── runguard.cpp ├── runguard.h ├── serverconfighelper.cpp ├── serverconfighelper.h ├── ui ├── about.qml ├── dashboard.qml ├── logs.qml ├── main.qml ├── rules.qml ├── servers.qml └── settings.qml ├── utility.cpp ├── utility.h ├── v2raycore.cpp └── v2raycore.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug-Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/.github/ISSUE_TEMPLATE/Bug-Report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature-Request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/.github/ISSUE_TEMPLATE/Feature-Request.md -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/linux-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/.github/workflows/linux-release.yml -------------------------------------------------------------------------------- /.github/workflows/macos-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/.github/workflows/macos-release.yml -------------------------------------------------------------------------------- /.github/workflows/windows-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/.github/workflows/windows-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/.gitmodules -------------------------------------------------------------------------------- /.lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/.lgtm.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/appveyor.yml -------------------------------------------------------------------------------- /src/V2Ray-Desktop.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/V2Ray-Desktop.pro -------------------------------------------------------------------------------- /src/appproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/appproxy.cpp -------------------------------------------------------------------------------- /src/appproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/appproxy.h -------------------------------------------------------------------------------- /src/appproxyworker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/appproxyworker.cpp -------------------------------------------------------------------------------- /src/appproxyworker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/appproxyworker.h -------------------------------------------------------------------------------- /src/configurator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/configurator.cpp -------------------------------------------------------------------------------- /src/configurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/configurator.h -------------------------------------------------------------------------------- /src/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/constants.h -------------------------------------------------------------------------------- /src/images/icon-about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/images/icon-about.svg -------------------------------------------------------------------------------- /src/images/icon-dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/images/icon-dashboard.svg -------------------------------------------------------------------------------- /src/images/icon-logs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/images/icon-logs.svg -------------------------------------------------------------------------------- /src/images/icon-rules.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/images/icon-rules.svg -------------------------------------------------------------------------------- /src/images/icon-servers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/images/icon-servers.svg -------------------------------------------------------------------------------- /src/images/icon-settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/images/icon-settings.svg -------------------------------------------------------------------------------- /src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/images/logo.png -------------------------------------------------------------------------------- /src/images/v2ray.gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/images/v2ray.gray.png -------------------------------------------------------------------------------- /src/images/v2ray.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/images/v2ray.icns -------------------------------------------------------------------------------- /src/images/v2ray.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/images/v2ray.ico -------------------------------------------------------------------------------- /src/images/v2ray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/images/v2ray.png -------------------------------------------------------------------------------- /src/locales/zh-CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/locales/zh-CN.ts -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/misc/tpl-linux-autostart.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/misc/tpl-linux-autostart.desktop -------------------------------------------------------------------------------- /src/misc/tpl-macos-autostart.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/misc/tpl-macos-autostart.plist -------------------------------------------------------------------------------- /src/networkproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/networkproxy.cpp -------------------------------------------------------------------------------- /src/networkproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/networkproxy.h -------------------------------------------------------------------------------- /src/networkrequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/networkrequest.cpp -------------------------------------------------------------------------------- /src/networkrequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/networkrequest.h -------------------------------------------------------------------------------- /src/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/qml.qrc -------------------------------------------------------------------------------- /src/qrcodehelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/qrcodehelper.cpp -------------------------------------------------------------------------------- /src/qrcodehelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/qrcodehelper.h -------------------------------------------------------------------------------- /src/runguard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/runguard.cpp -------------------------------------------------------------------------------- /src/runguard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/runguard.h -------------------------------------------------------------------------------- /src/serverconfighelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/serverconfighelper.cpp -------------------------------------------------------------------------------- /src/serverconfighelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/serverconfighelper.h -------------------------------------------------------------------------------- /src/ui/about.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/ui/about.qml -------------------------------------------------------------------------------- /src/ui/dashboard.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/ui/dashboard.qml -------------------------------------------------------------------------------- /src/ui/logs.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/ui/logs.qml -------------------------------------------------------------------------------- /src/ui/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/ui/main.qml -------------------------------------------------------------------------------- /src/ui/rules.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/ui/rules.qml -------------------------------------------------------------------------------- /src/ui/servers.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/ui/servers.qml -------------------------------------------------------------------------------- /src/ui/settings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/ui/settings.qml -------------------------------------------------------------------------------- /src/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/utility.cpp -------------------------------------------------------------------------------- /src/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/utility.h -------------------------------------------------------------------------------- /src/v2raycore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/v2raycore.cpp -------------------------------------------------------------------------------- /src/v2raycore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-Incognito/V2Ray-Desktop/HEAD/src/v2raycore.h --------------------------------------------------------------------------------