5.4.7.2 Beta
This commit is contained in:
15
Changelog.md
15
Changelog.md
@@ -1,10 +1,17 @@
|
|||||||
|
|
||||||
5.4.7.2 Beta (not yet released)
|
5.4.7.3 Beta (not yet released)
|
||||||
============
|
============
|
||||||
|
|
||||||
- WM_APPCOMMAND (mpv calls this media-keys) based input is no longer
|
-
|
||||||
directly passed to mpv but rather handled in mpv.net translating
|
|
||||||
the commands to mpv keys and sent via keypress input command to mpv
|
|
||||||
|
5.4.7.2 Beta
|
||||||
|
============
|
||||||
|
|
||||||
|
- another attempt to fix a app command issue. WM_APPCOMMAND (mpv calls this media keys)
|
||||||
|
based input is no longer directly passed to mpv but rather handled in mpv.net directly
|
||||||
|
translating the native commands to mpv keys and sent via keypress input command to mpv
|
||||||
|
- another attempt to fix a crash caused by powershell 5.1 not being installed
|
||||||
|
|
||||||
|
|
||||||
5.4.7.1 Beta
|
5.4.7.1 Beta
|
||||||
|
|||||||
@@ -233,12 +233,6 @@ namespace mpvnet
|
|||||||
var error = sender as PSDataCollection<ErrorRecord>;
|
var error = sender as PSDataCollection<ErrorRecord>;
|
||||||
ConsoleHelp.WriteError(error[e.Index], Module);
|
ConsoleHelp.WriteError(error[e.Index], Module);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void Shutdown()
|
|
||||||
{
|
|
||||||
foreach (PowerShell ps in Instances)
|
|
||||||
ps.Runspace.Dispose();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public class PowerShellException : Exception
|
public class PowerShellException : Exception
|
||||||
|
|||||||
@@ -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("5.4.7.1")]
|
[assembly: AssemblyVersion("5.4.7.2")]
|
||||||
[assembly: AssemblyFileVersion("5.4.7.1")]
|
[assembly: AssemblyFileVersion("5.4.7.2")]
|
||||||
|
|||||||
@@ -811,8 +811,6 @@ namespace mpvnet
|
|||||||
|
|
||||||
if (!core.ShutdownAutoResetEvent.WaitOne(10000))
|
if (!core.ShutdownAutoResetEvent.WaitOne(10000))
|
||||||
Msg.ShowError("Shutdown thread failed to complete within 10 seconds.");
|
Msg.ShowError("Shutdown thread failed to complete within 10 seconds.");
|
||||||
|
|
||||||
PowerShell.Shutdown();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void OnMouseDown(MouseEventArgs e)
|
protected override void OnMouseDown(MouseEventArgs e)
|
||||||
|
|||||||
Reference in New Issue
Block a user