Skip to content

Commit

Permalink
2.3.2 Released.
Browse files Browse the repository at this point in the history
fix: 在检查更新时使用 tls1.2 协议
  • Loading branch information
ludoux committed Jan 4, 2022
1 parent ab0654d commit d2304b4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions LrcHelper/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ static void Main()

client.Headers["User-Agent"] = @"163lrc" + LocalVer[0] + "." + LocalVer[1] + "." + LocalVer[2];
client.Encoding = System.Text.Encoding.UTF8;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
client.DownloadStringAsync(new Uri("https://api.ludoux.com/163lrcwin/update?cver=" + LocalVer[0] + "." + LocalVer[1] + "." + LocalVer[2]));
client.DownloadStringCompleted += Client_DownloadStringCompleted;

Expand Down
2 changes: 1 addition & 1 deletion LrcHelper/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@
// 方法是按如下所示使用“*”: :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("2.3.1.0")]
[assembly: AssemblyFileVersion("2.3.2.0")]
[assembly: NeutralResourcesLanguage("en-001")]

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@

## 更新信息(最近在上)

- 2022.01.04 在检查更新时使用 tls1.2 协议。(v2.3.2 #Release)

- 2022.01.04 [#15](https://github.com/ludoux/LrcHelper/issues/15) [#17](https://github.com/ludoux/LrcHelper/issues/17) 引入 Newtonsoft.Json 而不是正则表达式来判断专辑、歌单名字等。支持自定义 cookie 以规避登录限制。(v2.3.0 #Release)
* 2020.11.26 [#14](https://github.com/ludoux/LrcHelper/issues/14)
* 2019.07.29 [#3](https://github.com/ludoux/LrcHelper/issues/3) 试图“修复”一个远古 bug:现在最新的桌面版用英文半角`,`来在文件名区分不同歌手,但好像 UWP 版本只默认取第一个,这里软件遵循桌面版的逻辑。把提示一些文本改中文了。(v2.1.1 #Release)
Expand Down

0 comments on commit d2304b4

Please sign in to comment.