diff --git a/FanControl/FanControlForm.Designer.cs b/FanControl/FanControlForm.Designer.cs index b7d06ab..ee7f531 100644 --- a/FanControl/FanControlForm.Designer.cs +++ b/FanControl/FanControlForm.Designer.cs @@ -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); // diff --git a/FanControl/FanControlForm.cs b/FanControl/FanControlForm.cs index 633488b..a84f439 100644 --- a/FanControl/FanControlForm.cs +++ b/FanControl/FanControlForm.cs @@ -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) diff --git a/PerformanceOverlay/Controller.cs b/PerformanceOverlay/Controller.cs index 6acf065..51e545b 100644 --- a/PerformanceOverlay/Controller.cs +++ b/PerformanceOverlay/Controller.cs @@ -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()); diff --git a/PowerControl/Controller.cs b/PowerControl/Controller.cs index 72c0182..5d979cc 100644 --- a/PowerControl/Controller.cs +++ b/PowerControl/Controller.cs @@ -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()); diff --git a/SteamController/Controller.cs b/SteamController/Controller.cs index 224a67a..7cf961e 100644 --- a/SteamController/Controller.cs +++ b/SteamController/Controller.cs @@ -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 ); }; diff --git a/SteamController/ProfilesSettings/BackPanelSettings.cs b/SteamController/ProfilesSettings/BackPanelSettings.cs index 07354ef..41a0333 100644 --- a/SteamController/ProfilesSettings/BackPanelSettings.cs +++ b/SteamController/ProfilesSettings/BackPanelSettings.cs @@ -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) { diff --git a/SteamController/ProfilesSettings/X360BackPanelSettings.cs b/SteamController/ProfilesSettings/X360BackPanelSettings.cs index 475de3d..966cad9 100644 --- a/SteamController/ProfilesSettings/X360BackPanelSettings.cs +++ b/SteamController/ProfilesSettings/X360BackPanelSettings.cs @@ -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();