Skip to content

Commit

Permalink
v7.1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stax76 committed Jan 12, 2024
1 parent d325cf1 commit ad74aca
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
3 changes: 2 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
@@ -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!
Expand Down
2 changes: 1 addition & 1 deletion docs/manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions src/MpvNet.Windows/MpvNet.Windows.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down
5 changes: 5 additions & 0 deletions src/MpvNet.Windows/WinForms/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,11 @@ void UpdateMenu()
}
}
}

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");
Expand Down
1 change: 0 additions & 1 deletion src/MpvNet/InputHelp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ public static List<Binding> GetDefaults()
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"),
Expand Down

0 comments on commit ad74aca

Please sign in to comment.