This commit is contained in:
Frank Skare
2019-06-16 12:12:51 +02:00
parent fa05e95892
commit 91b429e6b0
3 changed files with 6 additions and 7 deletions

View File

@@ -1,13 +1,12 @@
### ###
### ### 4.2
- the help and layout in the config editor was improved - the help and layout in the config editor was improved
- clipboard monitoring for URLs can be disabled in the settings - clipboard monitoring for URLs can be disabled in the settings
- internal refactoring that might break features, scripts or extensions
- the context menu has a new feature: Open > Add files to playlist, - the context menu has a new feature: Open > Add files to playlist,
it appends files to the playlist [(Default binding)](https://github.com/stax76/mpv.net/blob/master/mpv.net/Resources/inputConf.txt#L34) it appends files to the playlist [(Default binding)](https://github.com/stax76/mpv.net/blob/master/mpv.net/Resources/inputConf.txt#L34)
- a new feature was added to force using a single mpv.net process instance - a setting was added to force using a single mpv.net process instance
### 4.1 ### 4.1

View File

@@ -6,7 +6,7 @@ mpv.net is a modern media player for Windows that works just like [mpv](https://
#### Based on libmpv #### Based on libmpv
mpv.net is based on libmpv which offers a straightforward C API that was designed from the ground up to make mpv usable as a library and facilitate easy integration into other applications. mpv.net is based on libmpv which offers a straightforward C API that was designed from the ground up to make mpv usable as a library and facilitate easy integration into other applications. mpv is like vlc not based on DirectShow or Media Foundation.
#### Command Line Interface #### Command Line Interface

View File

@@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
[assembly: AssemblyConfiguration("")] [assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")] [assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("mpv.net")] [assembly: AssemblyProduct("mpv.net")]
[assembly: AssemblyCopyright("Copyright © 2017-2019 stax76")] [assembly: AssemblyCopyright("Copyright © 2017-2019 Frank Skare (stax76)")]
[assembly: AssemblyTrademark("")] [assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")] [assembly: AssemblyCulture("")]
@@ -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("4.1.0.0")] [assembly: AssemblyVersion("4.2.0.0")]
[assembly: AssemblyFileVersion("4.1.0.0")] [assembly: AssemblyFileVersion("4.2.0.0")]