Skip to content

Releases: AutoHotkey/AutoHotkey

v1.1.23.06

15 May 03:10
Compare
Choose a tag to compare

Fixed break label crashing the program if nested directly inside its target loop.

v1.1.23.05

27 Mar 01:25
Compare
Choose a tag to compare

Fixed InputBox, MsgBox, FileSelectFile and FileSelectFolder sending an unwanted Alt-up if Alt is down. This was due to an error with the Ctrl/Shift workaround added in v1.1.22.01.
Improved the Ctrl/Shift workaround to avoid unnecessarily "masking" the Win key if Ctrl, Shift or Alt is also down.

v1.1.23.04

26 Mar 02:40
Compare
Choose a tag to compare

Fixed LV_Modify to support omitting Options, as in LV_Modify(r,, col1).

v1.1.23.03

12 Mar 02:41
Compare
Choose a tag to compare

Fixed __Delete meta-functions erroneously suppressing or prematurely re-throwing exceptions, when they are called during exception propagation.
Fixed load-time detection of function calls where a required parameter is blank, as in fn(x,,y).

v1.1.23.02

12 Mar 00:12
Compare
Choose a tag to compare

Fixed RegDelete deleting the entire key instead of the default value.
Code maintenance; minor code size improvement.

v1.1.23.01

24 Jan 01:40
Compare
Choose a tag to compare

Fixed a theoretical issue with loading scripts from weird/very long paths.
Ahk2Exe: Fixed Unicode in compiled scripts (broken by v1.1.23.00 release).

v1.1.23.00

16 Jan 06:46
Compare
Choose a tag to compare

Added Menu Insert sub-command.
Added MenuGetHandle().
Added MenuGetName().
Added menu item options: Radio, Right, Break and BarBreak.
Improved the Menu command to allow identifying items by position: 1&
Added LoadPicture().
Added hicon/hbitmap: syntax for passing handles to commands which normally load an image from file.
Added built-in variables: A_CoordModeToolTip/Pixel/Mouse/Caret/Menu, A_DefaultGui, A_DefaultListView, A_DefaultTreeView, A_KeyDelayPlay, A_KeyDuration/Play, A_MouseDelayPlay, A_SendLevel, A_SendMode and A_StoreCapslockMode.
Added Ix Hotkey option to set the hotkey variant's input level to x.
Improved Picture control to support BackgroundTrans with icons.
Improved Picture control to reduce flicker when loading large images.
Small optimizations to the menu code and built-in var lookups.
Fixed conversion of menu items to/from separators.
Fixed A_ThisMenuItemPos to support duplicate item names.
Fixed sub-menus sometimes not being recreated after a menu is deleted.
Fixed AutoHotkeyXXX.exe to launch AutoHotkey.chm, not AutoHotkeyXXX.chm.

v1.1.22.09

11 Nov 11:05
Compare
Choose a tag to compare

Fixed some issues with SetTimer Delete.

  • KeyHistory's timer count erroneously included deleted timers.
  • Calling KeyHistory within a thread started by a timer crashed the script if the timer had been deleted but not turned off.
  • Deleting the most recently created timer prevented subsequently created timers from working unless ALL timers were deleted.

v1.1.22.08

11 Nov 08:57
Compare
Choose a tag to compare

Fixed For-loop to pass control correctly when _NewEnum/Next throws an exception.
Fixed Finally to suspend the pending exception until its body has been evaluated, not just until the first built-in function call.
Fixed load-time detection of invalid jumps from Finally blocks (broken by v1.1.20).

v1.1.22.07

27 Sep 09:40
Compare
Choose a tag to compare

Fixed Gui control w-1 and h-1 options failing when DPI is 150+% and the Gui has not applied -DPIScale.
Fixed ~key up hotkeys to not perform an automatic Send {key down}. This was occurring only if the hotkey was turned on after the key was pressed down.