Update Mappings to Shortcuts and all links

This commit is contained in:
Kamil Trzciński 2022-12-10 10:21:10 +01:00
parent fec7e87c21
commit ef73516bfe
7 changed files with 11 additions and 11 deletions

View file

@ -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);
//

View file

@ -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)

View file

@ -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());

View file

@ -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());

View file

@ -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
);
};

View file

@ -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)
{

View file

@ -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();