Skip to content

Commit

Permalink
2.19.8
Browse files Browse the repository at this point in the history
** Fixed bug with generation of preferences file
** Fixed sent characters being detected when SendMethod=3
  • Loading branch information
ManiacDC committed Nov 24, 2014
1 parent b5c1343 commit eac3d50
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Source/Includes/Preferences File.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Source/TypingAid.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Binary file modified Source/TypingAid.ahk.ini
Binary file not shown.

0 comments on commit eac3d50

Please sign in to comment.