AutoHotkey

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
45920
Reakcje/Polubienia
37397
AutoHotkey 1.1.33.05
1.1.33.05 - March 10, 2021

Fixed bugs with hotkey variants having different #InputLevels.


  • Hotkey variants executing despite send level being too low, due to a global variant having lower #InputLevel.
  • Hotkey variants not executing because a previous variant was ineligible due to #InputLevel.

Fixed Ctrl/Shift/Alt (without L/R) as hook hotkeys.
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
45920
Reakcje/Polubienia
37397
AutoHotkey 1.1.33.09
May 8, 2021
  • Fixed crash on load when an AltTab action is used in a key-up/down pair
  • Fixed garbage error text when the main script file cannot be opened
  • Removed "Error at line 0" from error messages which appear before the first line is read
  • Fixed focus resetting when a minimized GUI is restored
  • Fixed focus not saving when a GUI is minimized with Gui Show


Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
45920
Reakcje/Polubienia
37397
AutoHotkey 1.1.33.10
August 29, 2021
  • Fixed loading of JPG/GIF files which are already open for reading.
  • Fixed misidentification of digits/xdigits by if-var-is.
  • Added a safety check for ControlGet Selected in case it is used with a non-Edit control.
  • Fixed variables being set to NULL in certain rare cases, causing crashes. The only confirmed case being when a string longer than 63 characters is returned from a function and assigned to a variable while AutoHotkey is running as a Windows store app.
  • Fixed InputHook callbacks failing after input is stopped and restarted.


Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
45920
Reakcje/Polubienia
37397

AutoHotkey 1.1.33.11​

April 20, 2022
  • Fixed Format(n) returning blank when n is a pure numeric expression.
  • Fixed the debugger's inability to query obj.<base>.<base>.
  • Changed debugger step/breakpoints to slip over Try/Catch/Finally/Case.
  • Fixed Switch { incorrectly raising a load-time error.
  • Fixed debugger stack_get reporting incorrect line after OnError.
  • Fixed debugger stack_get reporting incorrect line for auto-execute thread.
  • Fixed auto-env retrieval and A_ComVar to safely allow for variables larger than the official limit [PR #259 from mikeblas].
  • Fixed A_EventInfo for mouse wheel hotkeys [broken by v1.1.33.05].
  • Fixed ControlClick to convert coordinates correctly for wheel messages.
  • Fixed the IDispatch implementation for AutoHotkey objects to preserve case for property names.
  • Fixed #Warn StdOut to default to codepage 0 when /ErrorStdOut is not used.
  • Fixed crashes when a timer's __delete() meta-function deletes the next timer.
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
45920
Reakcje/Polubienia
37397

AutoHotkey 1.1.34.01

May 8, 2022
  • Fixed bugs introduced by v1.1.34.00:
  • a up:: firing on press rather than release if it is the first hotkey and ~a & b:: is present.
  • a:: not suppressing the key if ~a & b:: is also present, unless a:: is the first hotkey.
  • CapsLock:: not working when CapsLock & x:: is also present, and likewise for NumLock and ScrollLock.
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
45920
Reakcje/Polubienia
37397

AutoHotkey 1.1.34.02​

May 13, 2022
  • Fixed command line args for embedded script #1.
  • Fixed Alt::, Ctrl:: and Shift:: behaving like normal keys, instead of firing on release as documented.
  • Fixed ~a & b:: (when disabled with #If) causing a:: to fire on key-up even after activating some other combo.
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
45920
Reakcje/Polubienia
37397

AutoHotkey 1.1.34.03

1.1.34.03 - June 5, 2022


Fixed double backspacing of supplementary Unicode characters in hotstrings.
Fixed a:: not firing if a up:: and a & b:: are present.
Fixed MinSize/MaxSize being applied incorrectly before the first call to Gui Show.
Fixed the hook thread getting stuck in an infinite loop if an InputHook has been restarted too soon after being stopped.
Fixed crashes or undefined behaviour when a blank parameter is passed to FileCopy, FileMove, FileCopyDir, FileMoveDir or FileRemoveDir.
Fixed dead keys erroneously being reapplied by the keyboard hook after the final character of a hotstring is suppressed (e.g. for :?*:ò::ó).
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
45920
Reakcje/Polubienia
37397

AutoHotkey 1.1.34.04​

August 23, 2022
  • Fixed callback functions not being included in the debugger's call stack.
  • Fixed MsgBox timeout reported as "OK" if shown within 100ms of startup.
  • Fixed Edit control to ignore +WantTab while +ReadOnly is in effect.
  • Fixed property_get returning a local var when -d should prevent it.
  • Fixed RegRead to support REG_MULTI_SZ values containing empty items.
  • Fixed x[,y]:=z invoking undefined behaviour.
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
45920
Reakcje/Polubienia
37397
AutoHotkey 1.1.35.00
1.1.35.00 - October 30, 2022
Changed GroupActivate and GroupClose to behave more intuitively:
  • Evaluate windows against the window group as a whole, not individual window specifications.
  • When GroupClose indirectly causes another matching window to activate, leave it active even if it isn't matched by the same window specification.
Contributions by jeeswg (pull requests #186, #235, #240, #249, #273, #274):
  • Backported operators !==, >>> and >>>= from v2.
  • Backported A_InitialWorkingDir from v2.
  • Backported File.Handle from v2.
  • Backported A_Clipboard from v2.
  • Backported IsSet() from v2.
Bug-fixes:
Fixed a spelling error in the #Warn Unreachable message.
Fixed FileCreateDir handling of paths containing ".." or "/".
Fixed some issues with FileSelectFile's RootDir\Filename parameter:
  • Filename not being used when RootDir is a badly formatted CLSID.
  • Undefined behaviour for long paths when GetShortPathName fails (such as when long path awareness is disabled or there's a default filename which isn't an existing file).

Fixed FileSetTime to set A_LastError if it finds no files.
Fixed EnvAdd/+= losing precision when adding 115,292,150,461+ seconds.
Fixed the keyboard hook reinserting a suppressed dead key when Enter is pressed, such as in the sequence `o{Enter} when the following is true:
  • A separate script has suppressed "ò" due to :?*:ò::.
  • The current process also has active hotstrings.
  • The other process installed its hook last.

Fixed ControlGet List "Selected" option repeating output on x64 when the target is 32-bit.
Fixed stack corruption for ControlGet List "Count" options.
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
45920
Reakcje/Polubienia
37397

AutoHotkey 1.1.36.00​

December 1, 2022
  • Added VerCompare().
  • Added support for breakpoint exceptions via DBGp.
  • Extended #Requires to support operators for range checks (< <= > >= =) and additional keywords: Unicode, ANSI, 32-bit, 64-bit.
  • Added CompanyName to the version information in AutoHotkey.exe, which may work around a Windows 10 bug where the program would not appear in Open With.
  • Changed Switch/Case to perform non-numeric comparison when the switch or case expression is a lone literal string, such as "00", and documented comparison behaviour which was previously undocumented.
  • Fixed some inconsistencies with integer property names via IDispatch.
  • Negative values always being considered non-numeric.
  • Positive values losing formatting, such as leading zeroes.
  • Fixed potential crashes when inspecting a ComObject via DBGp after using ComObjConnect.
  • Fixed FileAppend to treat a blank Encoding as omitted.
  • Fixed version comparisons to ignore numeric build info; e.g. 1.1.35.00+1+abcdef (1 is the number of commits since 1.1.35.00).
  • Fixed FileCreateDir XY (with trailing slash) failing to create X [broken by v1.1.35.00].
Zaloguj lub Zarejestruj się aby zobaczyć!
 
Do góry