Skip to content

Commit bca32de

Browse files
committed
Hotfix v9.2
1 parent 8ebc007 commit bca32de

File tree

6 files changed

+145
-140
lines changed

6 files changed

+145
-140
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [9.2] - 2021-06-28
6+
- Hotfix: Disable Spell Checking does not disable pen support (Disable Windows Ink now does this)
7+
- Hotfix: Feed error label misplaced
8+
59
## [9.1] - 2021-06-26
610
- Significantly reduced file size (~1.4 MB)
711
- Improvements in memory management (~60MB instead of ~110MB on load)

Optimizer/MainForm.Designer.cs

+134-133
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Optimizer/Optimize.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1073,12 +1073,14 @@ internal static void DisableWindowsInk()
10731073
{
10741074
Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsInkWorkspace", "AllowWindowsInkWorkspace", "0", RegistryValueKind.DWord);
10751075
Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsInkWorkspace", "AllowSuggestedAppsInWindowsInkWorkspace", "0", RegistryValueKind.DWord);
1076+
Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\TabletTip\1.7", "EnableInkingWithTouch", "0", RegistryValueKind.DWord);
10761077
}
10771078

10781079
internal static void EnableWindowsInk()
10791080
{
10801081
Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsInkWorkspace", "AllowWindowsInkWorkspace", "1", RegistryValueKind.DWord);
10811082
Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsInkWorkspace", "AllowSuggestedAppsInWindowsInkWorkspace", "1", RegistryValueKind.DWord);
1083+
Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\TabletTip\1.7", "EnableInkingWithTouch", "1", RegistryValueKind.DWord);
10821084
}
10831085

10841086
internal static void DisableSpellingAndTypingFeatures()
@@ -1089,7 +1091,6 @@ internal static void DisableSpellingAndTypingFeatures()
10891091

10901092
// Typing
10911093
Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\TabletTip\1.7", "EnableDoubleTapSpace", "0", RegistryValueKind.DWord);
1092-
Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\TabletTip\1.7", "EnableInkingWithTouch", "0", RegistryValueKind.DWord);
10931094
Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\TabletTip\1.7", "EnablePredictionSpaceInsertion", "0", RegistryValueKind.DWord);
10941095
Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\TabletTip\1.7", "EnableTextPrediction", "0", RegistryValueKind.DWord);
10951096
}
@@ -1102,7 +1103,6 @@ internal static void EnableSpellingAndTypingFeatures()
11021103

11031104
// Typing
11041105
Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\TabletTip\1.7", "EnableDoubleTapSpace", "1", RegistryValueKind.DWord);
1105-
Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\TabletTip\1.7", "EnableInkingWithTouch", "1", RegistryValueKind.DWord);
11061106
Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\TabletTip\1.7", "EnablePredictionSpaceInsertion", "1", RegistryValueKind.DWord);
11071107
Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\TabletTip\1.7", "EnableTextPrediction", "1", RegistryValueKind.DWord);
11081108
}

Optimizer/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ static class Program
1313
// Enter current version here
1414

1515
internal readonly static float Major = 9;
16-
internal readonly static float Minor = 1;
16+
internal readonly static float Minor = 2;
1717

1818
internal readonly static bool EXPERIMENTAL_BUILD = false;
1919

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,6 @@ https://github.com/hellzerg/optimizer/blob/master/FEED.md
6363

6464
## Details: ##
6565

66-
* Latest version: 9.1
67-
* Released: June 26, 2021
68-
* SHA256: 8BA3DD25D8F1DF445B16F73050BA58C6B90FAC07C0E54B0BD931C42F1E5793AA
66+
* Latest version: 9.2
67+
* Released: June 28, 2021
68+
* SHA256: C7D8A248CAC1A76BDFD0E293E5945A6F36E8E259D0527958DA27C178A8899A3F

version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9.1
1+
9.2

0 commit comments

Comments
 (0)