Browse Source

🆙 Update docs and bump version to 4.3.3.0

tags/4.3.3.0^0
database64128 4 years ago
parent
commit
da568ad047
No known key found for this signature in database GPG Key ID: 1CA27546BEDB8B01
4 changed files with 9 additions and 7 deletions
  1. +5
    -0
      CHANGES
  2. +2
    -5
      README.md
  3. +1
    -1
      appveyor.yml
  4. +1
    -1
      shadowsocks-csharp/Controller/Service/UpdateChecker.cs

+ 5
- 0
CHANGES View File

@@ -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 4.3.2.0 2020-11-05
- PAC: direct connection for private IP ranges by @studentmain (#3008) - PAC: direct connection for private IP ranges by @studentmain (#3008)
- Remove duplicate startup entries (#3012) - Remove duplicate startup entries (#3012)


+ 2
- 5
README.md View File

@@ -21,7 +21,7 @@ Download the latest release from [release page].
## Requirements ## 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 ## Basics
@@ -127,7 +127,7 @@ Please visit [Servers] for more information.
## Development ## 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, 2. It is recommended to share your idea on the Issue Board before you start to work,
especially for feature development. especially for feature development.
@@ -164,9 +164,6 @@ Sysproxy () https://github.com/Noisyfox/sysproxy
[GeoSite]: https://github.com/v2fly/domain-list-community [GeoSite]: https://github.com/v2fly/domain-list-community
[Servers]: https://github.com/shadowsocks/shadowsocks/wiki/Ports-and-Clients#linux--server-side [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 [中文说明]: 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 [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 [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 [Working with non SIP003 standard Plugin]: https://github.com/shadowsocks/shadowsocks-windows/wiki/Working-with-non-SIP003-standard-Plugin

+ 1
- 1
appveyor.yml View File

@@ -11,7 +11,7 @@
# version format # version format
# Build version format is taken from UI if it is not set # 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 to build
# branches: # branches:


+ 1
- 1
shadowsocks-csharp/Controller/Service/UpdateChecker.cs View File

@@ -33,7 +33,7 @@ namespace Shadowsocks.Controller
public event EventHandler CheckUpdateCompleted; public event EventHandler CheckUpdateCompleted;
public const string Version = "4.3.2.0";
public const string Version = "4.3.3.0";
private readonly Version _version; private readonly Version _version;
public UpdateChecker() public UpdateChecker()


Loading…
Cancel
Save