This commit is contained in:
stax76
2024-01-12 11:29:47 +01:00
parent d325cf1165
commit ad74acae0f
5 changed files with 11 additions and 6 deletions

View File

@@ -1,6 +1,7 @@
# v7.0.0.7 Beta (2023-??-??)
# v7.1.0.0 Beta (2023-01-12)
- The menu item that shows profiles was moved into the menu item that lists profiles.
- Fix geometry not working when used from mpv.conf and the conf editor.
- GitHub Auto/Action/Workflow builds use a newer libmpv build.
- German and Chinese translation updated. Japanese translation added. Thanks to our translation team!

View File

@@ -151,7 +151,7 @@ and context menu design fixing it.
In v7 no input.conf file is created, the default bindings and
context menu is defined internally. input.conf only contains
what is different from the internally defined defaults,
so it works the same it work with mpv.
so it works the same as it works in mpv.
For backward compatibility the old input.conf context menu
format with the menu definition using `#menu: ` is still

View File

@@ -11,9 +11,9 @@
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>mpv-icon.ico</ApplicationIcon>
<Product>mpv.net</Product>
<FileVersion>7.0.0.6</FileVersion>
<AssemblyVersion>7.0.0.6</AssemblyVersion>
<InformationalVersion>7.0.0.6</InformationalVersion>
<FileVersion>7.1.0.0</FileVersion>
<AssemblyVersion>7.1.0.0</AssemblyVersion>
<InformationalVersion>7.1.0.0</InformationalVersion>
<Nullable>enable</Nullable>
</PropertyGroup>

View File

@@ -450,6 +450,11 @@ public partial class MainForm : Form
}
}
}
profilesMenuItem.Items.Add(new WpfControls.Separator());
var showProfilesMenuItem = new WpfControls.MenuItem() { Header = _("Show Profiles") };
showProfilesMenuItem.Click += (sender, args) => Player.Command("script-message-to mpvnet show-profiles");
profilesMenuItem.Items.Add(showProfilesMenuItem);
}
var audioDevicesMenuItem = FindMenuItem(_("Audio Device"), "Audio Device");

View File

@@ -118,7 +118,6 @@ public static class InputHelp
new (_("Speed"), _("Reset"), "set speed 1", "BS"),
new (_("View"), _("Show Playlist"), "script-message-to mpvnet show-playlist", "F8"),
new (_("View"), _("Show Profiles"), "script-message-to mpvnet show-profiles", "Ctrl+P"),
new (_("View"), _("Toggle Statistics"), "script-binding stats/display-stats-toggle", "t"),
new (_("View"), _("Toggle OSC Visibility"), "script-binding osc/visibility", "Del"),
new (_("View"), _("Show Media Info On-Screen"), "script-message-to mpvnet show-media-info osd", "i"),