Compare commits

..

3 Commits
3.25 ... 3.26

Author SHA1 Message Date
2dust
3697de973c up 2020-10-09 20:35:08 +08:00
2dust
3e575cc485 Merge pull request #1044 from betaxab/patch-1
Config.cs: getSummary: adjust server summary
2020-10-09 20:18:16 +08:00
Beta Soft
1675c67ddd Config.cs: getSummary: adjust server summary
Signed-off-by: Beta Soft <betaxab@gmail.com>
2020-10-09 20:10:51 +08:00
6 changed files with 401 additions and 670 deletions

View File

@@ -117,12 +117,13 @@
//
// cmbFlow
//
this.cmbFlow.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbFlow.FormattingEnabled = true;
this.cmbFlow.Items.AddRange(new object[] {
resources.GetString("cmbFlow.Items"),
resources.GetString("cmbFlow.Items1"),
resources.GetString("cmbFlow.Items2")});
resources.GetString("cmbFlow.Items2"),
resources.GetString("cmbFlow.Items3"),
resources.GetString("cmbFlow.Items4")});
resources.ApplyResources(this.cmbFlow, "cmbFlow");
this.cmbFlow.Name = "cmbFlow";
//

File diff suppressed because it is too large Load Diff

View File

@@ -14,7 +14,7 @@ namespace v2rayN
/// <summary>
/// SpeedTestUrl
/// </summary>
public const string SpeedTestUrl = @"http://speedtest-sgp1.digitalocean.com/10mb.test";
public const string SpeedTestUrl = @"http://cachefly.cachefly.net/10mb.test";
public const string SpeedPingTestUrl = @"https://www.google.com/generate_204";
public const string AvailabilityTestUrl = @"https://www.google.com/generate_204";

View File

@@ -40,7 +40,7 @@ namespace v2rayN.Handler
vmess = new List<VmessItem>(),
//Mux
muxEnabled = true,
muxEnabled = false,
////默认监听端口
//config.pacPort = 8888;

View File

@@ -403,7 +403,7 @@ namespace v2rayN.Mode
public string getSummary()
{
string summary = string.Format("{0}-", ((EConfigType)configType).ToString());
string summary = string.Format("[{0}] ", ((EConfigType)configType).ToString());
string[] arrAddr = address.Split('.');
string addr;
if (arrAddr.Length > 2)

View File

@@ -32,4 +32,4 @@ using System.Runtime.InteropServices;
// 方法是按如下所示使用“*”:
//[assembly: AssemblyVersion("1.0.*")]
//[assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyFileVersion("3.25")]
[assembly: AssemblyFileVersion("3.26")]