This commit is contained in:
Frank Skare
2019-05-27 18:53:27 +02:00
parent 0dfd19eb45
commit 270559c3f7
4 changed files with 7 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
### not yet released ### 4.0
- on the start screen the mpv.NET icon is shown instead of the mpv icon, - on the start screen the mpv.NET icon is shown instead of the mpv icon,
feedback and contributions regarding the icon are welcome! The paint.net feedback and contributions regarding the icon are welcome! The paint.net
@@ -10,6 +10,7 @@
- the config editor no longer shows the command line switches - the config editor no longer shows the command line switches
- the github start page was greatly improved - the github start page was greatly improved
- the setup.ps1 PowerShell script was greatly improved in regard of error handling and readability - the setup.ps1 PowerShell script was greatly improved in regard of error handling and readability
- a [manual to mpv.net](Manual.md) was created
### 3.7 ### 3.7

View File

@@ -1,4 +1,4 @@
# mpv.net manual **(under construction)** # mpv.net manual
## Table of contents ## Table of contents

View File

@@ -98,7 +98,7 @@ Media search feature powered by [Everything](https://www.voidtools.com) to find
### Manual ### Manual
[Manual](Manual.md) **(under construction)** [Manual](Manual.md)
### Context Menu ### Context Menu

View File

@@ -6,7 +6,7 @@ using System.Runtime.InteropServices;
// set of attributes. Change these attribute values to modify the information // set of attributes. Change these attribute values to modify the information
// associated with an assembly. // associated with an assembly.
[assembly: AssemblyTitle("mpv.net")] [assembly: AssemblyTitle("mpv.net")]
[assembly: AssemblyDescription("A lightweight media player")] [assembly: AssemblyDescription("A modern media player")]
[assembly: AssemblyConfiguration("")] [assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")] [assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("mpv.net")] [assembly: AssemblyProduct("mpv.net")]
@@ -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("3.7.0.0")] [assembly: AssemblyVersion("4.0.0.0")]
[assembly: AssemblyFileVersion("3.7.0.0")] [assembly: AssemblyFileVersion("4.0.0.0")]