Skip to content

Commit

Permalink
2.2.1 Released.
Browse files Browse the repository at this point in the history
Fix #14
  • Loading branch information
ludoux committed Nov 26, 2020
1 parent 7be6e84 commit 8746c3f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LrcHelper/NeteaseMusic.cs
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ private void fetchInfo()
for (int i = 0; i < mc.Count; i++)
_songidInAlbum.Add(Convert.ToInt64(mc[i].Value));

mc = Regex.Matches(sContent, @"(?<=""songs"":.*""name"":"")[^]]*?(?="",""id[^]]*?""info"")");
mc = Regex.Matches(sContent, @"(?<=""songs"":.*""name"":"")[^]]*?(?="","")");
_name = mc[mc.Count - 1].Value;
}
}
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.2.0.0")]
[assembly: AssemblyFileVersion("2.2.1.0")]
[assembly: NeutralResourcesLanguage("en-001")]

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@

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

* 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)
* 2019.07.29 更改了歌单 API 接口以支持1k+歌曲的歌单。微调了界面。(v2.1.0 #Release)
* 2019.06.17 修正获取歌曲信息时的错误。界面中文化。切换更新渠道。(v2.0.13 #Release)
Expand Down

0 comments on commit 8746c3f

Please sign in to comment.