Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
yaronzz committed Nov 22, 2021
1 parent d9f1627 commit ba87b09
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions TIDALDL-UI-PRO/Pages/MainViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ protected override async void OnViewLoaded()
GithubHelper.VER Ver = await GithubHelper.getLastReleaseVersionAsync(Global.NAME_GITHUB_AUTHOR, Global.NAME_GITHUB_PROJECT);
VMAbout.LastVersion = Ver.version;
VMAbout.LastVersionDesc = Ver.desc;
if (VMAbout.LastVersionDesc.IsNotBlank())
VMAbout.ShowVersionDesc = Visibility.Visible;
if (VMAbout.LastVersion.IsNotBlank() && VMAbout.LastVersion != VMAbout.Version)
{
if (VMAbout.LastVersionDesc.IsNotBlank())
VMAbout.ShowVersionDesc = Visibility.Visible;
VMAbout.EnableUpdate = Visibility.Visible;
ShowPage("about");
}
Expand Down
6 changes: 3 additions & 3 deletions TIDALDL-UI-PRO/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Reflection;
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
Expand Down Expand Up @@ -51,5 +51,5 @@
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2.1.7")]
[assembly: AssemblyFileVersion("1.2.1.7")]
[assembly: AssemblyVersion("1.2.1.8")]
[assembly: AssemblyFileVersion("1.2.1.8")]
8 changes: 4 additions & 4 deletions TIDALDL-UI-PRO/UPDATE_LOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@


#### v1.2.1.7
- [x] Fix bug of "Index out of range" [#126](https://github.com/yaronzz/Tidal-Media-Downloader-PRO/issues/126)
- [x] Fix bug of "Illegal characters in path" [#132](https://github.com/yaronzz/Tidal-Media-Downloader-PRO/issues/132)
- [x] Fix bug of "Russian lyrics are added as Chinese" [#130](https://github.com/yaronzz/Tidal-Media-Downloader-PRO/issues/130)
- [X] Fix bug of "Object reference not set to an instance of an object" [#127](https://github.com/yaronzz/Tidal-Media-Downloader-PRO/issues/127)
- [x] Fix bug of "Index out of range" [#126]
- [x] Fix bug of "Illegal characters in path" [#132]
- [x] Fix bug of "Russian lyrics are added as Chinese" [#130]
- [X] Fix bug of "Object reference not set to an instance of an object" [#127]

#### v1.2.1.6
- [x] add lyrics
Expand Down

0 comments on commit ba87b09

Please sign in to comment.