This commit is contained in:
stax76
2022-06-30 15:00:07 +02:00
parent 3e2f104aa7
commit cadc5d65cf
2 changed files with 5 additions and 5 deletions

View File

@@ -1,8 +1,8 @@
# 6.0.0.1 Beta (not yet released) # 6.0.1.0
- New tutorial: [Extending mpv and mpv.net via Lua scripting](https://github.com/stax76/mpv.net/wiki/Extending-mpv-and-mpv.net-via-Lua-scripting) - New tutorial: [Extending mpv and mpv.net via Lua scripting](https://github.com/stax76/mpv.net/wiki/Extending-mpv-and-mpv.net-via-Lua-scripting)
- New options `autofit-image` and `autofit-audio`, like autofit but used for image and audio files. - New options `autofit-image` and `autofit-audio`, like autofit, but used for image and audio files.
- New [auto-mode](https://github.com/stax76/mpv-scripts) script to use mpv and mpv.net as image viewer and audio player. - New [auto-mode](https://github.com/stax76/mpv-scripts) script to use mpv and mpv.net as image viewer and audio player.
- New [smart-volume](https://github.com/stax76/mpv-scripts) script. Records the volume per file in order to restore it - New [smart-volume](https://github.com/stax76/mpv-scripts) script. Records the volume per file in order to restore it
in future sessions. What is recorded and restored is the volume offset relative to the session average volume. in future sessions. What is recorded and restored is the volume offset relative to the session average volume.
@@ -15,7 +15,7 @@
- Fix start-size=session not working. - Fix start-size=session not working.
- Fix chapters that are script created after the media file is loaded. - Fix chapters that are script created after the media file is loaded.
- Width of command palette slightly increased. - Width of command palette slightly increased.
- The default key bindings for 0 and 9 change the volume like mpv. - The default key bindings for 0 and 9 change the volume, like mpv.
- When a menu item is defined multiple times with different key bindings, - When a menu item is defined multiple times with different key bindings,
only one menu item is created, it shows all bindings. only one menu item is created, it shows all bindings.
- libmpv zhongfly 2022-06-19 - libmpv zhongfly 2022-06-19

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 // 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.0.0")] [assembly: AssemblyVersion("6.0.1.0")]
[assembly: AssemblyFileVersion("6.0.0.0")] [assembly: AssemblyFileVersion("6.0.1.0")]