diff --git a/Changelog.txt b/Changelog.txt index ee18369..2635b0c 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -1,3 +1,7 @@ +*2.19.8 11/24/2014 +** Fixed bug with generation of preferences file +** Fixed sent characters being detected when SendMethod=3 + *2.19.7 11/6/2014 ** The script is no longer compatible with AHK Basic. Please get the newest version from http://www.ahkscript.org. ** Fixes for Unicode - the script would stop reading the preferences file diff --git a/Source/Includes/Preferences File.ahk b/Source/Includes/Preferences File.ahk index 0b4e08d..a580c8a 100644 --- a/Source/Includes/Preferences File.ahk +++ b/Source/Includes/Preferences File.ahk @@ -89,7 +89,7 @@ ReadPreferences() DftLearnMode,LearnMode,Settings,LearnMode,On DftLearnCount,LearnCount,Settings,LearnCount,5 DftLearnLength,LearnLength,Settings,LearnLength,%SpaceVar% - DftDoNotLearnStrings,DoNotLearnStrings,Settings,DoNotLearnStrings, %SpaceVar% + DftDoNotLearnStrings,DoNotLearnStrings,Settings,DoNotLearnStrings,%SpaceVar% DftArrowKeyMethod,ArrowKeyMethod,Settings,ArrowKeyMethod,First DftDisabledAutoCompleteKeys,DisabledAutoCompleteKeys,Settings,DisabledAutoCompleteKeys,%SpaceVar% DftDetectMouseClickMove,DetectMouseClickMove,Settings,DetectMouseClickMove,On diff --git a/Source/TypingAid.ahk b/Source/TypingAid.ahk index b380ca9..1a6ff57 100644 --- a/Source/TypingAid.ahk +++ b/Source/TypingAid.ahk @@ -144,7 +144,7 @@ Loop GetIncludedActiveWindow() ;Get one key at a time - Input, chr, L1 V, {BS}%TerminatingEndKeys% + Input, chr, L1 V I, {BS}%TerminatingEndKeys% EndKey := ErrorLevel ProcessKey(chr,EndKey) diff --git a/Source/TypingAid.ahk.ini b/Source/TypingAid.ahk.ini index bb78782..d680982 100644 Binary files a/Source/TypingAid.ahk.ini and b/Source/TypingAid.ahk.ini differ