mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 14:07:46 +08:00
Renameing the common setting name "CheckForUpdate Asked" to "AllowPromptForUpdates Preference" for consistency in naming conventions.
This commit is contained in:
@@ -53,7 +53,7 @@ namespace mRemoteNG.Config.Settings.Registry
|
||||
/// <remarks>
|
||||
/// Important: If the registry entry is set to true, a popup will appear every time you start
|
||||
/// </remarks>
|
||||
public static bool CheckForUpdatesAsked { get; } = _WindowsRegistry.GetBoolValue(_Hive, __Update, nameof(CheckForUpdatesAsked));
|
||||
public static bool AllowPromptForUpdatesPreference { get; } = _WindowsRegistry.GetBoolValue(_Hive, __Update, nameof(AllowPromptForUpdatesPreference), AllowCheckForUpdates);
|
||||
#endregion
|
||||
|
||||
|
||||
|
||||
@@ -348,7 +348,7 @@ namespace mRemoteNG.UI.Forms
|
||||
{
|
||||
if (!CommonRegistrySettings.AllowCheckForUpdates) return;
|
||||
if (!CommonRegistrySettings.AllowCheckForUpdatesAutomatical) return;
|
||||
if (CommonRegistrySettings.CheckForUpdatesAsked) return;
|
||||
if (!CommonRegistrySettings.AllowPromptForUpdatesPreference) return;
|
||||
|
||||
if (Properties.OptionsUpdatesPage.Default.CheckForUpdatesAsked) return;
|
||||
string[] commandButtons =
|
||||
|
||||
Reference in New Issue
Block a user