deadmoon 4 лет назад
Родитель
Сommit
3f9d995c2c
4 измененных файлов с 9 добавлено и 8 удалено
  1. 0 1
      CHANGELOG.md
  2. 7 5
      Optimizer/Program.cs
  3. 1 1
      README.md
  4. 1 1
      version.txt

+ 0 - 1
CHANGELOG.md

@@ -5,7 +5,6 @@ All notable changes to this project will be documented in this file.
 ## [7.1] - 2021-04-10
 - New: Pinger allows quick pinging and SHODAN.io search
 - New: Quick Access menu - enable it in Options
-- New: Allow only once instance to run
 - Hotfix: SystemResponsiveness now defaults to 14
 - Hotfix: Error handling when HOSTS file is unreadable - again
 

+ 7 - 5
Optimizer/Program.cs

@@ -45,11 +45,13 @@ namespace Optimizer
             AppDomain.CurrentDomain.AssemblyResolve += CurrentDomain_AssemblyResolve;
 
             // check if another instance is running
-            if (System.Diagnostics.Process.GetProcessesByName(Path.GetFileNameWithoutExtension(Assembly.GetEntryAssembly().Location)).Length > 1)
-            {
-                MessageBox.Show("Optimizer is already running in the background!", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information);
-                return;
-            }
+            // problem? prevents auto-patching...
+
+            //if (System.Diagnostics.Process.GetProcessesByName(Path.GetFileNameWithoutExtension(Assembly.GetEntryAssembly().Location)).Length > 1)
+            //{
+            //    MessageBox.Show("Optimizer is already running in the background!", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information);
+            //    return;
+            //}
 
             Application.EnableVisualStyles();
             Application.SetCompatibleTextRenderingDefault(false);

+ 1 - 1
README.md

@@ -56,4 +56,4 @@ https://github.com/hellzerg/optimizer/blob/master/LEGACY.md
 
 * Latest version: 7.1
 * Released: April 10, 2021
-* SHA256: 8EDA87BB5DA7D90A8E1B693AB6C1FD37FF7A4D53C925A055E0C8DE10BAB78142
+* SHA256: 3BB9638A4E8734960F1C6AE724841078BD187779C0846F374057F7999F82EBD7

+ 1 - 1
version.txt

@@ -1 +1 @@
-7.0
+7.1