소스 검색

Hotfix 6.7

deadmoon 4 년 전
부모
커밋
9edd444aac
5개의 변경된 파일10개의 추가작업 그리고 7개의 파일을 삭제
  1. 3 0
      CHANGELOG.md
  2. 2 2
      Optimizer/Optimize.cs
  3. 1 1
      Optimizer/Program.cs
  4. 3 3
      README.md
  5. 1 1
      version.txt

+ 3 - 0
CHANGELOG.md

@@ -2,6 +2,9 @@
 
 All notable changes to this project will be documented in this file.
 
+## [6.7] - 2021-02-25
+- Hotfix: Search not working (Reset Superfetch, disable it again and restart Windows to fix)
+
 ## [6.6] - 2021-02-24
 - Hotfix: Crash when disabling Superfetch service
 

+ 2 - 2
Optimizer/Optimize.cs

@@ -251,7 +251,7 @@ namespace Optimizer
             //Utilities.StopService("Schedule");
 
             Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SysMain", "Start", "4", RegistryValueKind.DWord);
-            Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Schedule", "Start", "4", RegistryValueKind.DWord);
+            //Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Schedule", "Start", "4", RegistryValueKind.DWord);
             Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\PrefetchParameters", "EnableSuperfetch", "0", RegistryValueKind.DWord);
             Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\PrefetchParameters", "EnablePrefetcher", "0", RegistryValueKind.DWord);
         }
@@ -259,7 +259,7 @@ namespace Optimizer
         internal static void EnableSuperfetch()
         {
             Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SysMain", "Start", "2", RegistryValueKind.DWord);
-            Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Schedule", "Start", "2", RegistryValueKind.DWord);
+            //Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Schedule", "Start", "2", RegistryValueKind.DWord);
             Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\PrefetchParameters", "EnableSuperfetch", "1", RegistryValueKind.DWord);
             Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\PrefetchParameters", "EnablePrefetcher", "1", RegistryValueKind.DWord);
 

+ 1 - 1
Optimizer/Program.cs

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

+ 3 - 3
README.md

@@ -48,6 +48,6 @@ https://github.com/hellzerg/optimizer/blob/master/LEGACY.md
 
 ## Details: ##
 
-* Latest version: 6.6
-* Released: February 24, 2021
-* SHA256: BCE568D533A779F993B7B7450EC4407E1712A137B51850B841E855E552A12F0C
+* Latest version: 6.7
+* Released: February 25, 2021
+* SHA256: 12F997868501087306ADF6B8F934F11F03544CBBE2CB4D680257C1906A67CADC

+ 1 - 1
version.txt

@@ -1 +1 @@
-6.6
+6.7