diff --git a/docs/Changelog.md b/docs/Changelog.md index b137059c..18efe6fa 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -1,4 +1,9 @@ +# 6.0.3.0 (2022-07-03) + +- Fix the rare occasion of duplicated playlist entries produced by the auto-load-folder feature. + + # 6.0.2.0 (2022-07-02) - Fix main window shown collapsed when the player was started with full screen. diff --git a/src/Misc/Settings.cs b/src/Misc/Settings.cs index 39e1b6a0..17177f31 100644 --- a/src/Misc/Settings.cs +++ b/src/Misc/Settings.cs @@ -23,7 +23,6 @@ public class AppSettings public Size WindowSize; public string ConfigEditorSearch = "Video:"; public string Mute = "no"; - public string UpdateCheckVersion = ""; } class SettingsManager diff --git a/src/Properties/AssemblyInfo.cs b/src/Properties/AssemblyInfo.cs index 280802c9..ceb7f05e 100644 --- a/src/Properties/AssemblyInfo.cs +++ b/src/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("6.0.2.0")] -[assembly: AssemblyFileVersion("6.0.2.0")] +[assembly: AssemblyVersion("6.0.3.0")] +[assembly: AssemblyFileVersion("6.0.3.0")]