diff --git a/CHANGES b/CHANGES index da1a63be..05713a5c 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,8 @@ +4.3.3.0 2020-12-07 +- PAC: Add option for custom sha256sum URL of custom geosite source (#3026) +- Update to .NET Framework 4.8 +- Other minor bug fixes and improvements + 4.3.2.0 2020-11-05 - PAC: direct connection for private IP ranges by @studentmain (#3008) - Remove duplicate startup entries (#3012) diff --git a/README.md b/README.md index 28dbc56a..c4b328f6 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Download the latest release from [release page]. ## Requirements -Microsoft [.NET Framework 4.7.2] or higher, Microsoft [Visual C++ 2015 Redistributable] (x86) . +.NET Framework 4.8 or higher, Microsoft [Visual C++ 2015 Redistributable] (x86) . ## Basics @@ -127,7 +127,7 @@ Please visit [Servers] for more information. ## Development -1. [Visual Studio 2019] & [.NET Framework 4.7.2 Developer Pack] are required. +1. Visual Studio 2019 & .NET Framework 4.8 SDK are required. 2. It is recommended to share your idea on the Issue Board before you start to work, especially for feature development. @@ -164,9 +164,6 @@ Sysproxy () https://github.com/Noisyfox/sysproxy [GeoSite]: https://github.com/v2fly/domain-list-community [Servers]: https://github.com/shadowsocks/shadowsocks/wiki/Ports-and-Clients#linux--server-side [中文说明]: https://github.com/shadowsocks/shadowsocks-windows/wiki/Shadowsocks-Windows-%E4%BD%BF%E7%94%A8%E8%AF%B4%E6%98%8E -[Visual Studio 2017]: https://www.visualstudio.com/downloads/ -[.NET Framework 4.7.2]: https://dotnet.microsoft.com/download/dotnet-framework/net472 -[.NET Framework 4.7.2 Developer Pack]: https://dotnet.microsoft.com/download/dotnet-framework/net472 [Visual C++ 2015 Redistributable]: https://www.microsoft.com/en-us/download/details.aspx?id=53840 [GPLv3]: https://github.com/shadowsocks/shadowsocks-windows/blob/master/LICENSE.txt [Working with non SIP003 standard Plugin]: https://github.com/shadowsocks/shadowsocks-windows/wiki/Working-with-non-SIP003-standard-Plugin diff --git a/appveyor.yml b/appveyor.yml index f7c8fbf6..30bfc32d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,7 +11,7 @@ # version format # Build version format is taken from UI if it is not set -version: 4.3.2.{build} +version: 4.3.3.{build} # # branches to build # branches: diff --git a/shadowsocks-csharp/Controller/Service/UpdateChecker.cs b/shadowsocks-csharp/Controller/Service/UpdateChecker.cs index bc00dde1..7de68cc7 100644 --- a/shadowsocks-csharp/Controller/Service/UpdateChecker.cs +++ b/shadowsocks-csharp/Controller/Service/UpdateChecker.cs @@ -33,7 +33,7 @@ namespace Shadowsocks.Controller public event EventHandler CheckUpdateCompleted; - public const string Version = "4.3.2.0"; + public const string Version = "4.3.3.0"; private readonly Version _version; public UpdateChecker()