├── .github ├── ISSUE_TEMPLATE │ ├── 01_bug_report.yml │ └── 02_feature_request.yml └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md └── v2rayN ├── .gitattributes ├── .gitignore ├── PacLib ├── PacHandler.cs ├── PacLib.csproj ├── Resources.Designer.cs ├── Resources.resx └── Resources │ └── pac.txt ├── ProtosLib ├── ProtosLib.csproj ├── Statistics.proto └── Tests.cs ├── build.ps1 ├── v2rayN.sln ├── v2rayN ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Base │ └── MyDGTextColumn.cs ├── Common │ ├── DownloaderHelper.cs │ ├── FileManager.cs │ ├── HttpClientHelper.cs │ ├── Job.cs │ ├── JsonUtile.cs │ ├── Logging.cs │ ├── QRCodeHelper.cs │ ├── QueryableExtension.cs │ ├── SemanticVersion.cs │ ├── SqliteHelper.cs │ ├── StringEx.cs │ ├── UI.cs │ └── Utile.cs ├── Converters │ ├── DelayColorConverter.cs │ ├── InverseBooleanConverter.cs │ └── MaterialDesignFonts.cs ├── FodyWeavers.xml ├── Global.cs ├── Handler │ ├── ConfigHandler.cs │ ├── CoreConfigHandler.cs │ ├── CoreConfigSingbox.cs │ ├── CoreConfigV2ray.cs │ ├── CoreHandler.cs │ ├── DownloadHandle.cs │ ├── HotkeyHandler.cs │ ├── LazyConfig.cs │ ├── MainFormHandler.cs │ ├── NoticeHandler.cs │ ├── ProfileExHandler.cs │ ├── ProxySetting.cs │ ├── ShareHandler.cs │ ├── SpeedtestHandler.cs │ ├── StatisticsHandler.cs │ ├── StatisticsSingbox.cs │ ├── StatisticsV2ray.cs │ ├── SysProxyHandle.cs │ └── UpdateHandle.cs ├── Model │ ├── ComboItem.cs │ ├── Config.cs │ ├── ConfigItems.cs │ ├── ConfigOld.cs │ ├── CoreInfo.cs │ ├── DNSItem.cs │ ├── EConfigType.cs │ ├── ECoreType.cs │ ├── EGlobalHotkey.cs │ ├── EInboundProtocol.cs │ ├── EMove.cs │ ├── EServerColName.cs │ ├── ESpeedActionType.cs │ ├── ESysProxyType.cs │ ├── ETransport.cs │ ├── EViewAction.cs │ ├── GitHubRelease.cs │ ├── ProfileExItem.cs │ ├── ProfileItem.cs │ ├── ProfileItemModel.cs │ ├── RoutingItem.cs │ ├── RoutingItemModel.cs │ ├── RulesItem.cs │ ├── RulesItemModel.cs │ ├── ServerSpeedItem.cs │ ├── ServerStatItem.cs │ ├── ServerTestItem.cs │ ├── SingboxConfig.cs │ ├── SsSIP008.cs │ ├── SubItem.cs │ ├── SysProxyConfig.cs │ ├── V2rayConfig.cs │ ├── V2rayTcpRequest.cs │ └── VmessQRCode.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── NotifyIcon1.ico │ ├── NotifyIcon2.ico │ └── NotifyIcon3.ico ├── Resx │ ├── ResUI.Designer.cs │ ├── ResUI.fa-Ir.resx │ ├── ResUI.resx │ ├── ResUI.ru.resx │ ├── ResUI.zh-Hans.resx │ └── ResUI.zh-Hant.resx ├── Sample │ ├── SampleClientConfig │ ├── SampleHttprequest │ ├── SampleHttpresponse │ ├── SampleInbound │ ├── SampleOutbound │ ├── SingboxSampleClientConfig │ ├── SingboxSampleOutbound │ ├── custom_routing_black │ ├── custom_routing_global │ ├── custom_routing_locked │ ├── custom_routing_rules │ ├── custom_routing_white │ ├── dns_singbox_normal │ ├── dns_v2ray_normal │ ├── tun_singbox_dns │ ├── tun_singbox_inbound │ └── tun_singbox_rules ├── ViewModels │ ├── AddServer2ViewModel.cs │ ├── AddServerViewModel.cs │ ├── DNSSettingViewModel.cs │ ├── MainWindowViewModel.cs │ ├── OptionSettingViewModel.cs │ ├── RoutingRuleDetailsViewModel.cs │ ├── RoutingRuleSettingViewModel.cs │ ├── RoutingSettingViewModel.cs │ ├── SubEditViewModel.cs │ └── SubSettingViewModel.cs ├── Views │ ├── AddServer2Window.xaml │ ├── AddServer2Window.xaml.cs │ ├── AddServerWindow.xaml │ ├── AddServerWindow.xaml.cs │ ├── DNSSettingWindow.xaml │ ├── DNSSettingWindow.xaml.cs │ ├── GlobalHotkeySettingWindow.xaml │ ├── GlobalHotkeySettingWindow.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MsgView.xaml │ ├── MsgView.xaml.cs │ ├── OptionSettingWindow.xaml │ ├── OptionSettingWindow.xaml.cs │ ├── QrcodeView.xaml │ ├── QrcodeView.xaml.cs │ ├── RoutingRuleDetailsWindow.xaml │ ├── RoutingRuleDetailsWindow.xaml.cs │ ├── RoutingRuleSettingWindow.xaml │ ├── RoutingRuleSettingWindow.xaml.cs │ ├── RoutingSettingWindow.xaml │ ├── RoutingSettingWindow.xaml.cs │ ├── SubEditWindow.xaml │ ├── SubEditWindow.xaml.cs │ ├── SubSettingWindow.xaml │ └── SubSettingWindow.xaml.cs ├── app.manifest ├── v2rayN.csproj └── v2rayN.ico └── v2rayUpgrade ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── app.manifest └── v2rayUpgrade.csproj /.github/ISSUE_TEMPLATE/01_bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/.github/ISSUE_TEMPLATE/01_bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02_feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/.github/ISSUE_TEMPLATE/02_feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/README.md -------------------------------------------------------------------------------- /v2rayN/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/.gitattributes -------------------------------------------------------------------------------- /v2rayN/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/.gitignore -------------------------------------------------------------------------------- /v2rayN/PacLib/PacHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/PacLib/PacHandler.cs -------------------------------------------------------------------------------- /v2rayN/PacLib/PacLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/PacLib/PacLib.csproj -------------------------------------------------------------------------------- /v2rayN/PacLib/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/PacLib/Resources.Designer.cs -------------------------------------------------------------------------------- /v2rayN/PacLib/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/PacLib/Resources.resx -------------------------------------------------------------------------------- /v2rayN/PacLib/Resources/pac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/PacLib/Resources/pac.txt -------------------------------------------------------------------------------- /v2rayN/ProtosLib/ProtosLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/ProtosLib/ProtosLib.csproj -------------------------------------------------------------------------------- /v2rayN/ProtosLib/Statistics.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/ProtosLib/Statistics.proto -------------------------------------------------------------------------------- /v2rayN/ProtosLib/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/ProtosLib/Tests.cs -------------------------------------------------------------------------------- /v2rayN/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/build.ps1 -------------------------------------------------------------------------------- /v2rayN/v2rayN.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN.sln -------------------------------------------------------------------------------- /v2rayN/v2rayN/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/App.xaml -------------------------------------------------------------------------------- /v2rayN/v2rayN/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/App.xaml.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/AssemblyInfo.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Base/MyDGTextColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Base/MyDGTextColumn.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Common/DownloaderHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Common/DownloaderHelper.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Common/FileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Common/FileManager.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Common/HttpClientHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Common/HttpClientHelper.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Common/Job.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Common/Job.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Common/JsonUtile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Common/JsonUtile.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Common/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Common/Logging.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Common/QRCodeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Common/QRCodeHelper.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Common/QueryableExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Common/QueryableExtension.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Common/SemanticVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Common/SemanticVersion.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Common/SqliteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Common/SqliteHelper.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Common/StringEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Common/StringEx.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Common/UI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Common/UI.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Common/Utile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Common/Utile.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Converters/DelayColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Converters/DelayColorConverter.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Converters/InverseBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Converters/InverseBooleanConverter.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Converters/MaterialDesignFonts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Converters/MaterialDesignFonts.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/FodyWeavers.xml -------------------------------------------------------------------------------- /v2rayN/v2rayN/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Global.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Handler/ConfigHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Handler/ConfigHandler.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Handler/CoreConfigHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Handler/CoreConfigHandler.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Handler/CoreConfigSingbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Handler/CoreConfigSingbox.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Handler/CoreConfigV2ray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Handler/CoreConfigV2ray.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Handler/CoreHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Handler/CoreHandler.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Handler/DownloadHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Handler/DownloadHandle.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Handler/HotkeyHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Handler/HotkeyHandler.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Handler/LazyConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Handler/LazyConfig.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Handler/MainFormHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Handler/MainFormHandler.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Handler/NoticeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Handler/NoticeHandler.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Handler/ProfileExHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Handler/ProfileExHandler.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Handler/ProxySetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Handler/ProxySetting.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Handler/ShareHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Handler/ShareHandler.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Handler/SpeedtestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Handler/SpeedtestHandler.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Handler/StatisticsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Handler/StatisticsHandler.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Handler/StatisticsSingbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Handler/StatisticsSingbox.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Handler/StatisticsV2ray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Handler/StatisticsV2ray.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Handler/SysProxyHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Handler/SysProxyHandle.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Handler/UpdateHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Handler/UpdateHandle.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/ComboItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/ComboItem.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/Config.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/ConfigItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/ConfigItems.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/ConfigOld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/ConfigOld.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/CoreInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/CoreInfo.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/DNSItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/DNSItem.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/EConfigType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/EConfigType.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/ECoreType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/ECoreType.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/EGlobalHotkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/EGlobalHotkey.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/EInboundProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/EInboundProtocol.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/EMove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/EMove.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/EServerColName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/EServerColName.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/ESpeedActionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/ESpeedActionType.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/ESysProxyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/ESysProxyType.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/ETransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/ETransport.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/EViewAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/EViewAction.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/GitHubRelease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/GitHubRelease.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/ProfileExItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/ProfileExItem.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/ProfileItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/ProfileItem.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/ProfileItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/ProfileItemModel.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/RoutingItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/RoutingItem.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/RoutingItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/RoutingItemModel.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/RulesItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/RulesItem.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/RulesItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/RulesItemModel.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/ServerSpeedItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/ServerSpeedItem.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/ServerStatItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/ServerStatItem.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/ServerTestItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/ServerTestItem.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/SingboxConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/SingboxConfig.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/SsSIP008.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/SsSIP008.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/SubItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/SubItem.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/SysProxyConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/SysProxyConfig.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/V2rayConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/V2rayConfig.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/V2rayTcpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/V2rayTcpRequest.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Model/VmessQRCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Model/VmessQRCode.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Properties/Resources.resx -------------------------------------------------------------------------------- /v2rayN/v2rayN/Resources/NotifyIcon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Resources/NotifyIcon1.ico -------------------------------------------------------------------------------- /v2rayN/v2rayN/Resources/NotifyIcon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Resources/NotifyIcon2.ico -------------------------------------------------------------------------------- /v2rayN/v2rayN/Resources/NotifyIcon3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Resources/NotifyIcon3.ico -------------------------------------------------------------------------------- /v2rayN/v2rayN/Resx/ResUI.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Resx/ResUI.Designer.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Resx/ResUI.fa-Ir.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Resx/ResUI.fa-Ir.resx -------------------------------------------------------------------------------- /v2rayN/v2rayN/Resx/ResUI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Resx/ResUI.resx -------------------------------------------------------------------------------- /v2rayN/v2rayN/Resx/ResUI.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Resx/ResUI.ru.resx -------------------------------------------------------------------------------- /v2rayN/v2rayN/Resx/ResUI.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Resx/ResUI.zh-Hans.resx -------------------------------------------------------------------------------- /v2rayN/v2rayN/Resx/ResUI.zh-Hant.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Resx/ResUI.zh-Hant.resx -------------------------------------------------------------------------------- /v2rayN/v2rayN/Sample/SampleClientConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Sample/SampleClientConfig -------------------------------------------------------------------------------- /v2rayN/v2rayN/Sample/SampleHttprequest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Sample/SampleHttprequest -------------------------------------------------------------------------------- /v2rayN/v2rayN/Sample/SampleHttpresponse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Sample/SampleHttpresponse -------------------------------------------------------------------------------- /v2rayN/v2rayN/Sample/SampleInbound: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Sample/SampleInbound -------------------------------------------------------------------------------- /v2rayN/v2rayN/Sample/SampleOutbound: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Sample/SampleOutbound -------------------------------------------------------------------------------- /v2rayN/v2rayN/Sample/SingboxSampleClientConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Sample/SingboxSampleClientConfig -------------------------------------------------------------------------------- /v2rayN/v2rayN/Sample/SingboxSampleOutbound: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Sample/SingboxSampleOutbound -------------------------------------------------------------------------------- /v2rayN/v2rayN/Sample/custom_routing_black: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Sample/custom_routing_black -------------------------------------------------------------------------------- /v2rayN/v2rayN/Sample/custom_routing_global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Sample/custom_routing_global -------------------------------------------------------------------------------- /v2rayN/v2rayN/Sample/custom_routing_locked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Sample/custom_routing_locked -------------------------------------------------------------------------------- /v2rayN/v2rayN/Sample/custom_routing_rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Sample/custom_routing_rules -------------------------------------------------------------------------------- /v2rayN/v2rayN/Sample/custom_routing_white: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Sample/custom_routing_white -------------------------------------------------------------------------------- /v2rayN/v2rayN/Sample/dns_singbox_normal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Sample/dns_singbox_normal -------------------------------------------------------------------------------- /v2rayN/v2rayN/Sample/dns_v2ray_normal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Sample/dns_v2ray_normal -------------------------------------------------------------------------------- /v2rayN/v2rayN/Sample/tun_singbox_dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Sample/tun_singbox_dns -------------------------------------------------------------------------------- /v2rayN/v2rayN/Sample/tun_singbox_inbound: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Sample/tun_singbox_inbound -------------------------------------------------------------------------------- /v2rayN/v2rayN/Sample/tun_singbox_rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Sample/tun_singbox_rules -------------------------------------------------------------------------------- /v2rayN/v2rayN/ViewModels/AddServer2ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/ViewModels/AddServer2ViewModel.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/ViewModels/AddServerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/ViewModels/AddServerViewModel.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/ViewModels/DNSSettingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/ViewModels/DNSSettingViewModel.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/ViewModels/MainWindowViewModel.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/ViewModels/OptionSettingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/ViewModels/OptionSettingViewModel.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/ViewModels/RoutingRuleDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/ViewModels/RoutingRuleDetailsViewModel.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/ViewModels/RoutingRuleSettingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/ViewModels/RoutingRuleSettingViewModel.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/ViewModels/RoutingSettingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/ViewModels/RoutingSettingViewModel.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/ViewModels/SubEditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/ViewModels/SubEditViewModel.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/ViewModels/SubSettingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/ViewModels/SubSettingViewModel.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/AddServer2Window.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/AddServer2Window.xaml -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/AddServer2Window.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/AddServer2Window.xaml.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/AddServerWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/AddServerWindow.xaml -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/AddServerWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/AddServerWindow.xaml.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/DNSSettingWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/DNSSettingWindow.xaml -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/DNSSettingWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/DNSSettingWindow.xaml.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/GlobalHotkeySettingWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/GlobalHotkeySettingWindow.xaml -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/GlobalHotkeySettingWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/GlobalHotkeySettingWindow.xaml.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/MainWindow.xaml -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/MainWindow.xaml.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/MsgView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/MsgView.xaml -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/MsgView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/MsgView.xaml.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/OptionSettingWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/OptionSettingWindow.xaml -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/OptionSettingWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/OptionSettingWindow.xaml.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/QrcodeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/QrcodeView.xaml -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/QrcodeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/QrcodeView.xaml.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/RoutingRuleDetailsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/RoutingRuleDetailsWindow.xaml -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/RoutingRuleDetailsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/RoutingRuleDetailsWindow.xaml.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/RoutingRuleSettingWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/RoutingRuleSettingWindow.xaml -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/RoutingRuleSettingWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/RoutingRuleSettingWindow.xaml.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/RoutingSettingWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/RoutingSettingWindow.xaml -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/RoutingSettingWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/RoutingSettingWindow.xaml.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/SubEditWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/SubEditWindow.xaml -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/SubEditWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/SubEditWindow.xaml.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/SubSettingWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/SubSettingWindow.xaml -------------------------------------------------------------------------------- /v2rayN/v2rayN/Views/SubSettingWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/Views/SubSettingWindow.xaml.cs -------------------------------------------------------------------------------- /v2rayN/v2rayN/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/app.manifest -------------------------------------------------------------------------------- /v2rayN/v2rayN/v2rayN.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/v2rayN.csproj -------------------------------------------------------------------------------- /v2rayN/v2rayN/v2rayN.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayN/v2rayN.ico -------------------------------------------------------------------------------- /v2rayN/v2rayUpgrade/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayUpgrade/MainForm.Designer.cs -------------------------------------------------------------------------------- /v2rayN/v2rayUpgrade/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayUpgrade/MainForm.cs -------------------------------------------------------------------------------- /v2rayN/v2rayUpgrade/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayUpgrade/MainForm.resx -------------------------------------------------------------------------------- /v2rayN/v2rayUpgrade/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayUpgrade/Program.cs -------------------------------------------------------------------------------- /v2rayN/v2rayUpgrade/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayUpgrade/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /v2rayN/v2rayUpgrade/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayUpgrade/Properties/Resources.resx -------------------------------------------------------------------------------- /v2rayN/v2rayUpgrade/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayUpgrade/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /v2rayN/v2rayUpgrade/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayUpgrade/Properties/Settings.settings -------------------------------------------------------------------------------- /v2rayN/v2rayUpgrade/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayUpgrade/app.manifest -------------------------------------------------------------------------------- /v2rayN/v2rayUpgrade/v2rayUpgrade.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alireza0/v2rayN/HEAD/v2rayN/v2rayUpgrade/v2rayUpgrade.csproj --------------------------------------------------------------------------------