From c2f965ced946e8f9bcdfb32b198b573a9321a959 Mon Sep 17 00:00:00 2001 From: stax76 Date: Sat, 4 Jun 2022 10:06:48 +0200 Subject: [PATCH] improved changelog --- docs/Changelog.md | 27 +++++++++++++++++++++++---- src/Misc/Player.cs | 2 +- 2 files changed, 24 insertions(+), 5 deletions(-) diff --git a/docs/Changelog.md b/docs/Changelog.md index 2f7ab8c..f4547fb 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -5,7 +5,8 @@ - New feature to change profile using the command palette. - New feature to show media info on screen, the command palette shows an osd option and the show-info command shows more detailed info - after a second key press. + after a second key press. Media info display in the track menu + was also improved. Thanks to dyphire helping with code. - New `media-info` option allowing to use mpv `track-list` instead of the media info library. - New show-santa-logo (green and grumpy) option. @@ -15,14 +16,32 @@ script-opts folder does not exist, a script-opts folder is created with defaults for osc and console. - Support mpv idle property, see manual for remarks. -- Fix delay loaded external audio and subtitle tracks. +- Fix external audio and subtitle files not shown in all use cases. - Fix crash choosing Matroska edition in the menu. - Fix auto-play and auto-load-folder not working with user scripts. -- Fix slow startup using osd-scale-by-window=no. +- Fix slow startup using `osd-scale-by-window=no`. - Fix URL shown instead of media title on file change OSD, in recent menu and in recent command palette. - Fix chapter time display in menu. -- libmpv shinchiro 2022-05-17 with idle fix +- libmpv zhongfly 2022-06-03 + +input.conf changes: + +Old: + +``` +F9 show-text ${track-list} 5000 #menu: View > Show Tracks +``` + +New: + +``` +F9 script-message-to mpvnet show-media-info osd #menu: View > Show Tracks +Ctrl+p script-message-to mpvnet select-profile #menu: View > Show Profile Selection +Alt+q script-message-to mpvnet quick-bookmark +``` + +All occurrences of `script-message mpv.net` were changed to `script-message-to mpvnet`. 5.9.0.0 Beta (2022-05-08) diff --git a/src/Misc/Player.cs b/src/Misc/Player.cs index cef0743..da5e99d 100644 --- a/src/Misc/Player.cs +++ b/src/Misc/Player.cs @@ -336,7 +336,7 @@ namespace mpvnet Directory.CreateDirectory(scriptOptsPath); File.WriteAllText(scriptOptsPath + "console.conf", BR + "scale=1.5" + BR); string content = BR + "scalewindowed=1.5" + BR + "hidetimeout=2000" + BR + - "idlelogo=no" + BR; + "idlescreen=no" + BR; File.WriteAllText(scriptOptsPath + "osc.conf", content); } }