v7.1.0.0
This commit is contained in:
@@ -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.
|
- Fix geometry not working when used from mpv.conf and the conf editor.
|
||||||
- GitHub Auto/Action/Workflow builds use a newer libmpv build.
|
- GitHub Auto/Action/Workflow builds use a newer libmpv build.
|
||||||
- German and Chinese translation updated. Japanese translation added. Thanks to our translation team!
|
- German and Chinese translation updated. Japanese translation added. Thanks to our translation team!
|
||||||
|
|||||||
@@ -151,7 +151,7 @@ and context menu design fixing it.
|
|||||||
In v7 no input.conf file is created, the default bindings and
|
In v7 no input.conf file is created, the default bindings and
|
||||||
context menu is defined internally. input.conf only contains
|
context menu is defined internally. input.conf only contains
|
||||||
what is different from the internally defined defaults,
|
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
|
For backward compatibility the old input.conf context menu
|
||||||
format with the menu definition using `#menu: ` is still
|
format with the menu definition using `#menu: ` is still
|
||||||
|
|||||||
@@ -11,9 +11,9 @@
|
|||||||
<UseWindowsForms>true</UseWindowsForms>
|
<UseWindowsForms>true</UseWindowsForms>
|
||||||
<ApplicationIcon>mpv-icon.ico</ApplicationIcon>
|
<ApplicationIcon>mpv-icon.ico</ApplicationIcon>
|
||||||
<Product>mpv.net</Product>
|
<Product>mpv.net</Product>
|
||||||
<FileVersion>7.0.0.6</FileVersion>
|
<FileVersion>7.1.0.0</FileVersion>
|
||||||
<AssemblyVersion>7.0.0.6</AssemblyVersion>
|
<AssemblyVersion>7.1.0.0</AssemblyVersion>
|
||||||
<InformationalVersion>7.0.0.6</InformationalVersion>
|
<InformationalVersion>7.1.0.0</InformationalVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
|||||||
@@ -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");
|
var audioDevicesMenuItem = FindMenuItem(_("Audio Device"), "Audio Device");
|
||||||
|
|||||||
@@ -118,7 +118,6 @@ public static class InputHelp
|
|||||||
new (_("Speed"), _("Reset"), "set speed 1", "BS"),
|
new (_("Speed"), _("Reset"), "set speed 1", "BS"),
|
||||||
|
|
||||||
new (_("View"), _("Show Playlist"), "script-message-to mpvnet show-playlist", "F8"),
|
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 Statistics"), "script-binding stats/display-stats-toggle", "t"),
|
||||||
new (_("View"), _("Toggle OSC Visibility"), "script-binding osc/visibility", "Del"),
|
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"),
|
new (_("View"), _("Show Media Info On-Screen"), "script-message-to mpvnet show-media-info osd", "i"),
|
||||||
|
|||||||
Reference in New Issue
Block a user