mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2025-12-06 07:12:01 +01:00
PowerControl: Show Game Profiles menu item
This commit is contained in:
parent
e228d11f3a
commit
ec15d52f5a
|
|
@ -113,6 +113,10 @@ namespace PowerControl
|
|||
missingRTSSItem.Click += delegate { Dependencies.OpenLink(Dependencies.RTSSURL); };
|
||||
contextMenu.Opening += delegate { missingRTSSItem.Visible = !Dependencies.EnsureRTSS(null); };
|
||||
|
||||
var showGameProfilesItem = contextMenu.Items.Add("Show Game &Profiles");
|
||||
showGameProfilesItem.Click += delegate { Dependencies.OpenLink(Helper.ProfileSettings.UserProfilesPath); };
|
||||
contextMenu.Items.Add(new ToolStripSeparator());
|
||||
|
||||
var checkForUpdatesItem = contextMenu.Items.Add("&Check for Updates");
|
||||
checkForUpdatesItem.Click += delegate { Instance.RunUpdater(TitleWithVersion, true); };
|
||||
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@
|
|||
|
||||
## 0.6.x
|
||||
|
||||
- PowerControl: Show Game Profiles menu item
|
||||
- PowerControl: Support SMU of Vangogh GPU shipped with BIOS 115
|
||||
- SteamController: Add `DS4` support (with Gyro, Accel, Trackpads and Haptics)
|
||||
- SteamController: Move `KeepX360AlwaysConnected` to `Settings`
|
||||
|
|
|
|||
Loading…
Reference in a new issue