Browse Source

Minor changes to v11.8

deadmoon 3 years ago
parent
commit
43f1477436
6 changed files with 13 additions and 12 deletions
  1. 6 0
      CHANGELOG.md
  2. 0 1
      Optimizer/Forms/MainForm.Designer.cs
  3. 2 6
      Optimizer/Forms/MainForm.cs
  4. 1 1
      Optimizer/Program.cs
  5. 3 3
      README.md
  6. 1 1
      version.txt

+ 6 - 0
CHANGELOG.md

@@ -2,6 +2,12 @@
 
 
 All notable changes to this project will be documented in this file.
 All notable changes to this project will be documented in this file.
 
 
+## [11.8] - 2022-02-21
+- New: Restart in normal and minimal safe-mode from command-line
+- Hotfix: Faster network monitoring initialization
+- Hotfix: Resize main window based on each language for maximum visibility
+- Minor visual changes
+
 ## [11.7] - 2022-02-10
 ## [11.7] - 2022-02-10
 - Hotfix: Hangs on loading in case network monitoring is not supported (#93, #95)
 - Hotfix: Hangs on loading in case network monitoring is not supported (#93, #95)
 
 

+ 0 - 1
Optimizer/Forms/MainForm.Designer.cs

@@ -5589,7 +5589,6 @@ namespace Optimizer
             this.Text = "Optimizer";
             this.Text = "Optimizer";
             this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Main_FormClosing);
             this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Main_FormClosing);
             this.Load += new System.EventHandler(this.Main_Load);
             this.Load += new System.EventHandler(this.Main_Load);
-            this.Resize += new System.EventHandler(this.MainForm_Resize);
             this.tpanel.ResumeLayout(false);
             this.tpanel.ResumeLayout(false);
             this.tpanel.PerformLayout();
             this.tpanel.PerformLayout();
             ((System.ComponentModel.ISupportInitialize)(this.picUpdate)).EndInit();
             ((System.ComponentModel.ISupportInitialize)(this.picUpdate)).EndInit();

+ 2 - 6
Optimizer/Forms/MainForm.cs

@@ -1411,9 +1411,10 @@ namespace Optimizer
         {
         {
             try
             try
             {
             {
+                _networkMonitor = new NetworkMonitor();
+
                 if (Options.CurrentOptions.EnableTray)
                 if (Options.CurrentOptions.EnableTray)
                 {
                 {
-                    _networkMonitor = new NetworkMonitor();
                     _networkMonitor.StartMonitoring();
                     _networkMonitor.StartMonitoring();
                     _networkMonitoringSupported = true;
                     _networkMonitoringSupported = true;
                     NetworkLiveMonitoring();
                     NetworkLiveMonitoring();
@@ -4108,10 +4109,5 @@ namespace Optimizer
         {
         {
             Process.Start(_discordLink);
             Process.Start(_discordLink);
         }
         }
-
-        private void MainForm_Resize(object sender, EventArgs e)
-        {
-            Clipboard.SetText(this.Size.Width.ToString() + "," + this.Size.Height.ToString());
-        }
     }
     }
 }
 }

+ 1 - 1
Optimizer/Program.cs

@@ -14,7 +14,7 @@ namespace Optimizer
         /* DO NOT LEAVE THEM EMPTY */
         /* DO NOT LEAVE THEM EMPTY */
 
 
         internal readonly static float Major = 11;
         internal readonly static float Major = 11;
-        internal readonly static float Minor = 7;
+        internal readonly static float Minor = 8;
 
 
         internal readonly static bool EXPERIMENTAL_BUILD = false;
         internal readonly static bool EXPERIMENTAL_BUILD = false;
 
 

+ 3 - 3
README.md

@@ -10,7 +10,7 @@ Optimizer is recommended after a fresh, clean installation of Windows to achieve
 
 
 Depending on your version of Windows, Optimizer will also allow you to perform some specific tweaks.
 Depending on your version of Windows, Optimizer will also allow you to perform some specific tweaks.
 <p align="center">
 <p align="center">
-	<a href="https://github.com/hellzerg/optimizer/releases/download/11.7/Optimizer-11.7.exe" target="_blank">
+	<a href="https://github.com/hellzerg/optimizer/releases/download/11.8/Optimizer-11.8.exe" target="_blank">
 		<img src="download-button.png">
 		<img src="download-button.png">
 		<br>
 		<br>
 		<img src="flags.png">
 		<img src="flags.png">
@@ -84,6 +84,6 @@ https://github.com/hellzerg/optimizer/blob/master/FEED.md
 
 
 ## Details: ##
 ## Details: ##
 
 
-* Latest version: 11.7
+* Latest version: 11.8
 * Released: February 10, 2022
 * Released: February 10, 2022
-* SHA256: C73709B492967D00FF9DE7736AD9A9E0755ECF0D9B5215410D1B7A59FB8913C9
+* SHA256: EB819CD2E2B65BA895662F72E7376661200FC83D10434B5FBE8DA5C2339C3616

+ 1 - 1
version.txt

@@ -1 +1 @@
-11.7
+11.8