mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-03-16 01:34:45 +01:00
Update Mappings to Shortcuts and all links
This commit is contained in:
parent
fec7e87c21
commit
ef73516bfe
2
FanControl/FanControlForm.Designer.cs
generated
2
FanControl/FanControlForm.Designer.cs
generated
|
|
@ -259,7 +259,7 @@ namespace FanControl
|
|||
this.helpLabel.Name = "helpLabel";
|
||||
this.helpLabel.Size = new System.Drawing.Size(703, 32);
|
||||
this.helpLabel.TabIndex = 8;
|
||||
this.helpLabel.Text = "https://github.com/ayufan-research/steam-deck-tools";
|
||||
this.helpLabel.Text = "https://steam-deck-tools.ayufan.dev";
|
||||
this.helpLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
||||
this.helpLabel.DoubleClick += new System.EventHandler(this.help_DoubleClick);
|
||||
//
|
||||
|
|
|
|||
|
|
@ -171,7 +171,7 @@ namespace FanControl
|
|||
|
||||
private void help_DoubleClick(object sender, EventArgs e)
|
||||
{
|
||||
System.Diagnostics.Process.Start("explorer.exe", "http://github.com/ayufan-research/steam-deck-tools");
|
||||
System.Diagnostics.Process.Start("explorer.exe", "https://steam-deck-tools.ayufan.dev");
|
||||
}
|
||||
|
||||
private void toolStripMenuItemAlwaysOnTop_Click(object sender, EventArgs e)
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ namespace PerformanceOverlay
|
|||
var helpItem = contextMenu.Items.Add("&Help");
|
||||
helpItem.Click += delegate
|
||||
{
|
||||
System.Diagnostics.Process.Start("explorer.exe", "http://github.com/ayufan-research/steam-deck-tools");
|
||||
System.Diagnostics.Process.Start("explorer.exe", "https://steam-deck-tools.ayufan.dev");
|
||||
};
|
||||
|
||||
contextMenu.Items.Add(new ToolStripSeparator());
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ namespace PowerControl
|
|||
var helpItem = contextMenu.Items.Add("&Help");
|
||||
helpItem.Click += delegate
|
||||
{
|
||||
System.Diagnostics.Process.Start("explorer.exe", "http://github.com/ayufan-research/steam-deck-tools");
|
||||
System.Diagnostics.Process.Start("explorer.exe", "https://steam-deck-tools.ayufan.dev");
|
||||
};
|
||||
|
||||
contextMenu.Items.Add(new ToolStripSeparator());
|
||||
|
|
|
|||
|
|
@ -93,10 +93,10 @@ namespace SteamController
|
|||
contextMenu.Items.Add(new ToolStripSeparator());
|
||||
|
||||
var helpItem = contextMenu.Items.Add("&Help");
|
||||
helpItem.Click += delegate { Process.Start("explorer.exe", "http://github.com/ayufan/steam-deck-tools"); };
|
||||
helpItem.Click += delegate { Process.Start("explorer.exe", "https://steam-deck-tools.ayufan.dev"); };
|
||||
|
||||
var mappingItem = contextMenu.Items.Add("&Mappings");
|
||||
mappingItem.Click += delegate { Process.Start("explorer.exe", "https://github.com/ayufan/steam-deck-tools#42-mappings"); };
|
||||
var shortcutsItem = contextMenu.Items.Add("&Shortcuts");
|
||||
shortcutsItem.Click += delegate { Process.Start("explorer.exe", "https://steam-deck-tools.ayufan.dev/docs/shortcuts.html"); };
|
||||
|
||||
contextMenu.Items.Add(new ToolStripSeparator());
|
||||
|
||||
|
|
@ -217,7 +217,7 @@ namespace SteamController
|
|||
"This will hide X360 Controller from Steam, and will try to detect Steam presence " +
|
||||
"to disable usage of this application when running Steam Games.\n\n" +
|
||||
"This does REQUIRE disabling DESKTOP MODE shortcuts in Steam.\n" +
|
||||
"Follow guide found at https://github.com/ayufan/steam-deck-tools.",
|
||||
"Follow guide found at https://steam-deck-tools.ayufan.dev/docs/steam-controller.html.",
|
||||
true, false, true
|
||||
);
|
||||
};
|
||||
|
|
|
|||
|
|
@ -3,10 +3,10 @@ using System.Configuration;
|
|||
|
||||
namespace SteamController.ProfilesSettings
|
||||
{
|
||||
[Category("Mappings")]
|
||||
[Category("Shortcuts")]
|
||||
internal abstract class BackPanelSettings : CommonHelpers.BaseSettings
|
||||
{
|
||||
private const String MappingsDescription = @"Only some of those keys do work. Allowed mappings are to be changed in future release.";
|
||||
private const String MappingsDescription = @"Only some of those keys do work. Allowed shortcuts are to be changed in future release.";
|
||||
|
||||
public BackPanelSettings(String settingsKey) : base(settingsKey)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ namespace SteamController.ProfilesSettings
|
|||
{
|
||||
internal class X360BackPanelSettings : BackPanelSettings
|
||||
{
|
||||
private const String MappingsDescription = @"Mappings are to be changed in future release.";
|
||||
private const String MappingsDescription = @"Shortcuts are to be changed in future release.";
|
||||
|
||||
public static X360BackPanelSettings Default { get; } = new X360BackPanelSettings();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue