Skip to content

Commit

Permalink
Signing builds makes dev build wiki obsolete
Browse files Browse the repository at this point in the history
  • Loading branch information
HebaruSan committed Sep 22, 2024
1 parent 146b30f commit 00774fe
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 13 deletions.
6 changes: 0 additions & 6 deletions Cmdline/Action/Upgrade.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,6 @@ public int RunCommand(CKAN.GameInstance instance, object raw_options)
|| (!options.stable_release && (config.DevBuilds ?? false));
if (devBuild != config.DevBuilds)
{
if (!config.DevBuilds.HasValue && devBuild && Platform.IsWindows)
{
// Tell Windows users about malware scanner's false positives
// and how to disable it, if they feel safe doing it
Utilities.ProcessStartURL(HelpURLs.WindowsDevBuilds);
}
config.DevBuilds = devBuild;
user.RaiseMessage(
config.DevBuilds ?? false
Expand Down
1 change: 0 additions & 1 deletion Core/HelpURLs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ public static class HelpURLs
public const string ModPacks = "https://github.com/KSP-CKAN/CKAN/wiki/Sharing-a-modlist-%28metapackages%29";
public const string AuthTokens = "https://github.com/KSP-CKAN/CKAN/wiki/Adding-a-GitHub-API-authtoken";
public const string CertificateErrors = "https://github.com/KSP-CKAN/CKAN/wiki/SSL-certificate-errors";
public const string WindowsDevBuilds = "https://github.com/KSP-CKAN/CKAN/wiki/Using-dev-builds-on-Windows";

public const string CloneFakeInstances = "https://github.com/KSP-CKAN/CKAN/pull/2627";
public const string DeleteDirectories = "https://github.com/KSP-CKAN/CKAN/pull/2962";
Expand Down
6 changes: 0 additions & 6 deletions GUI/Main/MainAutoUpdate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,6 @@ private void AutoUpdatePrompts(IConfiguration coreConfig,
coreConfig.DevBuilds = !YesNoDialog(Properties.Resources.MainReleasesOrDevBuildsPrompt,
Properties.Resources.MainReleasesOrDevBuildsYes,
Properties.Resources.MainReleasesOrDevBuildsNo);
if (coreConfig.DevBuilds.Value && Platform.IsWindows)
{
// Tell Windows users about malware scanner's false positives
// and how to disable it, if they feel safe doing it
Utilities.ProcessStartURL(HelpURLs.WindowsDevBuilds);
}
}
}

Expand Down

0 comments on commit 00774fe

Please sign in to comment.