diff --git a/v2rayN/v2rayN/Forms/MainForm.Designer.cs b/v2rayN/v2rayN/Forms/MainForm.Designer.cs
index 6e5a7980..aa408cbb 100644
--- a/v2rayN/v2rayN/Forms/MainForm.Designer.cs
+++ b/v2rayN/v2rayN/Forms/MainForm.Designer.cs
@@ -506,8 +506,8 @@
//
// toolSslSocksPortLab
//
- this.toolSslSocksPortLab.Name = "toolSslSocksPortLab";
resources.ApplyResources(this.toolSslSocksPortLab, "toolSslSocksPortLab");
+ this.toolSslSocksPortLab.Name = "toolSslSocksPortLab";
//
// toolSslSocksPort
//
@@ -516,14 +516,14 @@
//
// toolSslBlank1
//
- this.toolSslBlank1.Name = "toolSslBlank1";
resources.ApplyResources(this.toolSslBlank1, "toolSslBlank1");
+ this.toolSslBlank1.Name = "toolSslBlank1";
this.toolSslBlank1.Spring = true;
//
// toolSslHttpPortLab
//
- this.toolSslHttpPortLab.Name = "toolSslHttpPortLab";
resources.ApplyResources(this.toolSslHttpPortLab, "toolSslHttpPortLab");
+ this.toolSslHttpPortLab.Name = "toolSslHttpPortLab";
//
// toolSslHttpPort
//
@@ -532,14 +532,14 @@
//
// toolSslBlank2
//
- this.toolSslBlank2.Name = "toolSslBlank2";
resources.ApplyResources(this.toolSslBlank2, "toolSslBlank2");
+ this.toolSslBlank2.Name = "toolSslBlank2";
this.toolSslBlank2.Spring = true;
//
// toolSslPacPortLab
//
- this.toolSslPacPortLab.Name = "toolSslPacPortLab";
resources.ApplyResources(this.toolSslPacPortLab, "toolSslPacPortLab");
+ this.toolSslPacPortLab.Name = "toolSslPacPortLab";
//
// toolSslPacPort
//
@@ -548,8 +548,8 @@
//
// toolSslBlank3
//
- this.toolSslBlank3.Name = "toolSslBlank3";
resources.ApplyResources(this.toolSslBlank3, "toolSslBlank3");
+ this.toolSslBlank3.Name = "toolSslBlank3";
this.toolSslBlank3.Spring = true;
//
// toolSslServerSpeed
diff --git a/v2rayN/v2rayN/Forms/MainForm.resx b/v2rayN/v2rayN/Forms/MainForm.resx
index a35c8175..3bcec746 100644
--- a/v2rayN/v2rayN/Forms/MainForm.resx
+++ b/v2rayN/v2rayN/Forms/MainForm.resx
@@ -563,8 +563,11 @@
603, 17
+
+ 微软雅黑, 8pt
+
- 55, 17
+ 49, 17
SOCKS5
@@ -572,11 +575,17 @@
0, 17
+
+ 微软雅黑, 8pt
+
- 202, 17
+ 188, 17
+
+
+ 微软雅黑, 8pt
- 38, 17
+ 36, 17
HTTP
@@ -584,11 +593,17 @@
0, 17
+
+ 微软雅黑, 8pt
+
- 202, 17
+ 188, 17
+
+
+ 微软雅黑, 8pt
- 31, 17
+ 30, 17
PAC
@@ -596,21 +611,30 @@
0, 17
+
+ 微软雅黑, 8pt
+
- 202, 17
+ 188, 17
False
+
+ 微软雅黑, 8pt
+
No
- 200, 17
+ 220, 17
SPEED Disabled
+
+ MiddleRight
+
0, 17
diff --git a/v2rayN/v2rayN/HttpProxyHandler/HttpProxyHandle.cs b/v2rayN/v2rayN/HttpProxyHandler/HttpProxyHandle.cs
index 0eb6d063..fd11820b 100644
--- a/v2rayN/v2rayN/HttpProxyHandler/HttpProxyHandle.cs
+++ b/v2rayN/v2rayN/HttpProxyHandler/HttpProxyHandle.cs
@@ -12,7 +12,7 @@ namespace v2rayN.HttpProxyHandler
{
private static string GetTimestamp(DateTime value)
{
- return value.ToString("yyyyMMddHHmmssfff");
+ return value.ToString("MMddHHmmssfff");
}
public static void ReSetPACProxy(Config config)
diff --git a/v2rayN/v2rayN/Properties/AssemblyInfo.cs b/v2rayN/v2rayN/Properties/AssemblyInfo.cs
index e7cbee3a..e3e63a40 100644
--- a/v2rayN/v2rayN/Properties/AssemblyInfo.cs
+++ b/v2rayN/v2rayN/Properties/AssemblyInfo.cs
@@ -33,4 +33,4 @@ using System.Runtime.InteropServices;
// 方法是按如下所示使用“*”:
//[assembly: AssemblyVersion("1.0.*")]
//[assembly: AssemblyVersion("1.0.0")]
-[assembly: AssemblyFileVersion("2.38")]
+[assembly: AssemblyFileVersion("2.39")]
diff --git a/v2rayN/v2rayN/Tool/Utils.cs b/v2rayN/v2rayN/Tool/Utils.cs
index d2b2512c..f8439463 100644
--- a/v2rayN/v2rayN/Tool/Utils.cs
+++ b/v2rayN/v2rayN/Tool/Utils.cs
@@ -316,7 +316,7 @@ namespace v2rayN
double result;
string unit;
ToHumanReadable(amount, out result, out unit);
- return $"{string.Format("{0:f2}", result)}{unit}";
+ return $"{string.Format("{0:f1}", result)}{unit}";
}
public static void DedupServerList(List source, out List result)