Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9a6bf5a481 | ||
|
|
40565e8b3d |
@@ -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)
|
# 6.0.2.0 (2022-07-02)
|
||||||
|
|
||||||
- Fix main window shown collapsed when the player was started with full screen.
|
- Fix main window shown collapsed when the player was started with full screen.
|
||||||
|
|||||||
@@ -1276,12 +1276,17 @@ namespace mpvnet
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static object LoadFolderLockObject = new object();
|
||||||
|
|
||||||
public void LoadFolder()
|
public void LoadFolder()
|
||||||
{
|
{
|
||||||
if (!App.AutoLoadFolder || Control.ModifierKeys.HasFlag(Keys.Shift))
|
if (!App.AutoLoadFolder || Control.ModifierKeys.HasFlag(Keys.Shift))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Thread.Sleep(1000);
|
Thread.Sleep(1000);
|
||||||
|
|
||||||
|
lock (LoadFolderLockObject)
|
||||||
|
{
|
||||||
string path = GetPropertyString("path");
|
string path = GetPropertyString("path");
|
||||||
|
|
||||||
if (!File.Exists(path) || GetPropertyInt("playlist-count") != 1)
|
if (!File.Exists(path) || GetPropertyInt("playlist-count") != 1)
|
||||||
@@ -1312,6 +1317,7 @@ namespace mpvnet
|
|||||||
if (index > 0)
|
if (index > 0)
|
||||||
CommandV("playlist-move", "0", (index + 1).ToString());
|
CommandV("playlist-move", "0", (index + 1).ToString());
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bool WasAviSynthLoaded;
|
bool WasAviSynthLoaded;
|
||||||
|
|
||||||
|
|||||||
@@ -23,7 +23,6 @@ namespace mpvnet
|
|||||||
public Size WindowSize;
|
public Size WindowSize;
|
||||||
public string ConfigEditorSearch = "Video:";
|
public string ConfigEditorSearch = "Video:";
|
||||||
public string Mute = "no";
|
public string Mute = "no";
|
||||||
public string UpdateCheckVersion = "";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class SettingsManager
|
class SettingsManager
|
||||||
|
|||||||
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
|||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("6.0.2.0")]
|
[assembly: AssemblyVersion("6.0.3.0")]
|
||||||
[assembly: AssemblyFileVersion("6.0.2.0")]
|
[assembly: AssemblyFileVersion("6.0.3.0")]
|
||||||
|
|||||||
Reference in New Issue
Block a user