Bladeren bron

Hotfix 5.9

deadmoon 4 jaren geleden
bovenliggende
commit
d13ff76e69
7 gewijzigde bestanden met toevoegingen van 4361 en 4353 verwijderingen
  1. 3 0
      CHANGELOG.md
  2. 4349 4349
      Optimizer/MainForm.Designer.cs
  3. 4 0
      Optimizer/MainForm.cs
  4. 1 0
      Optimizer/Options.cs
  5. 1 1
      Optimizer/Program.cs
  6. 2 2
      README.md
  7. 1 1
      version.txt

+ 3 - 0
CHANGELOG.md

@@ -2,6 +2,9 @@
 
 All notable changes to this project will be documented in this file.
 
+## [5.9] - 2021-01-19
+- Hotfix: Crash when opening folder in Common Apps
+
 ## [5.8] - 2020-12-22
 - Added: Rufus and Universal USB Installer in Common Apps
 

File diff suppressed because it is too large
+ 4349 - 4349
Optimizer/MainForm.Designer.cs


+ 4 - 0
Optimizer/MainForm.cs

@@ -374,6 +374,10 @@ namespace Optimizer
             }
             else
             {
+                if (!Directory.Exists(Options.CurrentOptions.AppsFolder))
+                {
+                    Directory.CreateDirectory(Options.CurrentOptions.AppsFolder);
+                }
                 txtDownloadFolder.Text = Options.CurrentOptions.AppsFolder;
             }
 

+ 1 - 0
Optimizer/Options.cs

@@ -151,6 +151,7 @@ namespace Optimizer
             {
                 CurrentOptions.Color = Theme.Zerg;
                 CurrentOptions.AppsFolder = Path.Combine(Application.StartupPath, "Optimizer Downloads");
+                Directory.CreateDirectory(Options.CurrentOptions.AppsFolder);
 
                 CurrentOptions.EnablePerformanceTweaks = false;
                 CurrentOptions.DisableNetworkThrottling = false;

+ 1 - 1
Optimizer/Program.cs

@@ -13,7 +13,7 @@ namespace Optimizer
         // Enter current version here
 
         internal readonly static float Major = 5;
-        internal readonly static float Minor = 8;
+        internal readonly static float Minor = 9;
 
         internal static string GetCurrentVersionTostring()
         {

+ 2 - 2
README.md

@@ -44,5 +44,5 @@ https://github.com/hellzerg/optimizer/blob/master/CHANGELOG.md
 
 ## Details: ##
 
-* Latest version: 5.8
-* Released: December 22, 2020
+* Latest version: 5.9
+* Released: January 19, 2021

+ 1 - 1
version.txt

@@ -1 +1 @@
-5.8
+5.9

Some files were not shown because too many files changed in this diff