5.2 Release

This commit is contained in:
Frank Skare
2019-08-06 18:44:40 +02:00
parent 954c014708
commit 966f96a02b
3 changed files with 6 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
###
### 5.2
- bug fix for single-instance not working with unicode filenames
- bug fix for logo not shown on start
@@ -10,6 +10,7 @@
- certain command line properties didn't work (input-terminal, terminal, input-file,
config, config-dir, input-conf, load-scripts, script, scripts, player-operation-mode)
- the about dialog shows now the mpv version and build date
- the dialog that asks for a config folder has now a cancel option
### 5.1

View File

@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// 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("5.1.0.1")]
[assembly: AssemblyFileVersion("5.1.0.1")]
[assembly: AssemblyVersion("5.2.0.0")]
[assembly: AssemblyFileVersion("5.2.0.0")]

View File

@@ -609,8 +609,8 @@ namespace mpvnet
foreach (string url in App.UrlWhitelist)
{
if (clipboard.Contains("://") && ! clipboard.Contains("\n") &&
! clipboard.Contains(" ") && clipboard.Contains(url.ToLower().Trim()) &&
if (clipboard.Contains("://") && !clipboard.Contains("\n") &&
!clipboard.Contains(" ") && clipboard.Contains(url.ToLower().Trim()) &&
RegHelp.GetString(App.RegPath, "LastURL") != clipboard && Visible)
{
RegHelp.SetObject(App.RegPath, "LastURL", clipboard);