From 5b1cf36a6741dddaf8218d72dc3a1eb7cdbfe9dc Mon Sep 17 00:00:00 2001 From: kimw Date: Sun, 1 May 2016 18:35:39 -0400 Subject: [PATCH 1/2] Disable StatisticsStrategy by default. --- shadowsocks-csharp/Model/StatisticsStrategyConfiguration.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shadowsocks-csharp/Model/StatisticsStrategyConfiguration.cs b/shadowsocks-csharp/Model/StatisticsStrategyConfiguration.cs index 4a654814..c648027d 100644 --- a/shadowsocks-csharp/Model/StatisticsStrategyConfiguration.cs +++ b/shadowsocks-csharp/Model/StatisticsStrategyConfiguration.cs @@ -14,7 +14,7 @@ namespace Shadowsocks.Model public class StatisticsStrategyConfiguration { public static readonly string ID = "com.shadowsocks.strategy.statistics"; - public bool StatisticsEnabled { get; set; } = true; + public bool StatisticsEnabled { get; set; } = false; public bool ByHourOfDay { get; set; } = true; public bool Ping { get; set; } public int ChoiceKeptMinutes { get; set; } = 10; From 13e125d3641a684abc537856bd3a07bf48d4f89a Mon Sep 17 00:00:00 2001 From: kimw Date: Sun, 1 May 2016 18:39:35 -0400 Subject: [PATCH 2/2] bump up version --- CHANGES | 3 +++ shadowsocks-csharp/Controller/Service/UpdateChecker.cs | 2 +- shadowsocks-csharp/Properties/AssemblyInfo.cs | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 31670820..a6083626 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,6 @@ +3.1 2016-05-01 +- Disable StatisticsStrategy by default + 3.0 2016-03-02 - Update Privoxy to 3.0.24 - Replace Choose by Total Packet Loss with Choose by Statistics diff --git a/shadowsocks-csharp/Controller/Service/UpdateChecker.cs b/shadowsocks-csharp/Controller/Service/UpdateChecker.cs index 2c3d9355..47b83017 100644 --- a/shadowsocks-csharp/Controller/Service/UpdateChecker.cs +++ b/shadowsocks-csharp/Controller/Service/UpdateChecker.cs @@ -23,7 +23,7 @@ namespace Shadowsocks.Controller public string LatestVersionLocalName; public event EventHandler CheckUpdateCompleted; - public const string Version = "3.0"; + public const string Version = "3.1"; private class CheckUpdateTimer : System.Timers.Timer { diff --git a/shadowsocks-csharp/Properties/AssemblyInfo.cs b/shadowsocks-csharp/Properties/AssemblyInfo.cs index 2a6fc3db..981d0de4 100755 --- a/shadowsocks-csharp/Properties/AssemblyInfo.cs +++ b/shadowsocks-csharp/Properties/AssemblyInfo.cs @@ -11,7 +11,7 @@ using System.Runtime.InteropServices; [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Shadowsocks")] -[assembly: AssemblyCopyright("Copyright © clowwindy 2015")] +[assembly: AssemblyCopyright("clowwindy and community 2016")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")]