diff --git a/docs/changelog.md b/docs/changelog.md
index abb8495..914d332 100644
--- a/docs/changelog.md
+++ b/docs/changelog.md
@@ -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!
diff --git a/docs/manual.md b/docs/manual.md
index d44000a..aff888d 100644
--- a/docs/manual.md
+++ b/docs/manual.md
@@ -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
diff --git a/src/MpvNet.Windows/MpvNet.Windows.csproj b/src/MpvNet.Windows/MpvNet.Windows.csproj
index e843f30..5fbe2be 100644
--- a/src/MpvNet.Windows/MpvNet.Windows.csproj
+++ b/src/MpvNet.Windows/MpvNet.Windows.csproj
@@ -11,9 +11,9 @@
true
mpv-icon.ico
mpv.net
- 7.0.0.6
- 7.0.0.6
- 7.0.0.6
+ 7.1.0.0
+ 7.1.0.0
+ 7.1.0.0
enable
diff --git a/src/MpvNet.Windows/WinForms/MainForm.cs b/src/MpvNet.Windows/WinForms/MainForm.cs
index ff66bcd..fdfa64c 100644
--- a/src/MpvNet.Windows/WinForms/MainForm.cs
+++ b/src/MpvNet.Windows/WinForms/MainForm.cs
@@ -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");
diff --git a/src/MpvNet/InputHelp.cs b/src/MpvNet/InputHelp.cs
index ec0a546..405a3f6 100644
--- a/src/MpvNet/InputHelp.cs
+++ b/src/MpvNet/InputHelp.cs
@@ -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"),