Skip to content

Commit

Permalink
Merge pull request #105 from RWELabs/release-alpha
Browse files Browse the repository at this point in the history
Push v220902 to Stable Release (Release v220902)
  • Loading branch information
RyanWalpole authored Sep 21, 2022
2 parents 5cd26c3 + c842c39 commit b370572
Show file tree
Hide file tree
Showing 156 changed files with 4,864 additions and 486 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,10 @@ source-code/Mod Manager (Facelift Development)/Stardew Mod Manager/obj/Release/S
source-code/Mod Manager (Facelift Development)/Stardew Mod Manager/obj/Release/Stardew Mod Manager.pdb
source-code/Mod Manager (Facelift Development)/Stardew Mod Manager/obj/Release/Stardew_Mod_Manager.Properties.Resources.resources
source-code/Mod Manager (Facelift Development)/Stardew Mod Manager/obj/Release/TempPE/Properties.Resources.Designer.cs.dll
*.vsidx
source-code/Mod Manager (Facelift Development)/Stardew Mod Manager/Properties/Telemetry.Designer.cs
source-code/Mod Manager (Facelift Development)/Stardew Mod Manager/Properties/Telemetry.settings
source-code/Mod Manager (Facelift Development)/Stardew Mod Manager/App.config
source-code/Mod Manager (Facelift Development)/Stardew Mod Manager/App.config
source-code/Mod Manager (Facelift Development)/Stardew Mod Manager/App.config
source-code/Mod Manager (Facelift Development)/Stardew Mod Manager/App.config
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ private void Migrate()
string CheckUpdateOnStartupRegex = "$CheckUpdateOnStartup=";
string IsCheckSMAPIUpdatesOnStartupRegex = "$CheckSMAPIUpdateOnStartup";
string ColorProfileRegex = "$ColorProfile";
string DoTelemetryRegex = "$DoTelemetry=";

foreach (string line in FileRead.Lines)
{
Expand All @@ -94,6 +95,7 @@ private void Migrate()
if (line.Contains(CheckUpdateOnStartupRegex)) { string CheckUpdateOnStartup = line.Replace(CheckUpdateOnStartupRegex, null); Properties.Settings.Default.CheckUpdateOnStartup = CheckUpdateOnStartup; }
if (line.Contains(IsCheckSMAPIUpdatesOnStartupRegex)) { string CheckSMAPIUpdatesOnStartup = line.Replace(IsCheckSMAPIUpdatesOnStartupRegex, null); Properties.Settings.Default.CheckSMAPIUpdateOnStartup = CheckSMAPIUpdatesOnStartup; }
if (line.Contains(ColorProfileRegex)) { string ColorProfile = line.Replace(ColorProfileRegex, null); Properties.Settings.Default.ColorProfile = ColorProfile; }
if (line.Contains(DoTelemetryRegex)) { string DoTelemetry = line.Replace(DoTelemetryRegex, null); Properties.Settings.Default.DoTelemetry = DoTelemetry; }
}

Properties.Settings.Default.IsManuallyReset = "FALSE";
Expand Down
Loading

0 comments on commit b370572

Please sign in to comment.