v2.0.13

Community news and information about new or upcoming versions of AutoHotkey
lexikos
Posts: 9592
Joined: 30 Sep 2013, 04:07
Contact:

v2.0.13

20 Dec 2022, 02:52

v2.0.0 is now available.


Changes from v1.1 to v2.0

Changes since v2.0-rc.3:

Removed Documents\AutoHotkey*.ahk default path and Welcome page popup, as users are no longer expected to execute AutoHotkey.exe directly.
AutoHotkey.exe can still default to AutoHotkey.ahk in the same directory as the exe, for portable use.
Fixed invalid parameter errors displaying wrong value for some methods.
Fixed continuable errors to be continuable even when OnError is used.
Fixed #HotIf to treat non-empty, non-numeric strings as true.

Changes to UX:

Revised the help file menu; superseded files are now tucked away in a submenu.
Added "Dash" to the title of ui-dash.ahk.
Added tutorial links to Dash (some tutorials are also new).
Added Editors link to the Editor settings GUI.
Restored Start menu shortcuts for Window Spy and Ahk2Exe to allow them to be found by search.
Replaced the v2 symlink with an actual directory and a file-swapping mechanism, similar to how v1 updates are handled.
This allows files such as the help file config (chm_config.js) and Lib folder/symlink to be retained between updates.

Changes merged from v1.1 branch:

Fixed VerCompare(a, ">" b) and reduced code size marginally.
Fixed AltTab load-time errors to be consistent with other errors.
Changed ComObject wrapper to pass large integers as VT_I8, not VT_R8.
This improves interoperability between AutoHotkey instances (whether v1, v2 or a mixture).
Integers within the range of a 32-bit integer are still passed as VT_I3.
Fixed ComObject not throwing correctly when called via an object/COM.
Fixed Hotkey control to allow setting ^, ! and + as hotkeys.
Fixed Hotkey control to include modifiers when value is set to a symbol.
Optimized allocation of cached COM property names for built-in IDispatch.


SHA256 hashes
lexikos
Posts: 9592
Joined: 30 Sep 2013, 04:07
Contact:

v2.0.1

01 Jan 2023, 05:34

Fixed Func.IsOptional(1) returning 0 in some cases where it shouldn't.
Fixed Gui event handler functions to not drop the Gui parameter when the Gui is its own event sink.
Fixed COM errors to not show "(null)" when no description is available.
Fixed ToolTips intermittently appearing at the wrong position.
Fixed __Enum(unset) to permit a second variable for Array, Match and Gui.
Fixed #include <> error messages to show "Script library" rather than "Function library".
Fixed new threads being unable to prevent a message check with Critical.
Optimized conversion of DllCall type names.
Made some trivial but effective code size optimizations.

UX/Launcher:
Fixed very long quoted strings causing PCRE error -21.
Fixed launcher doing nothing when compiled.

SHA256 hashes
lexikos
Posts: 9592
Joined: 30 Sep 2013, 04:07
Contact:

v2.0.2

02 Jan 2023, 04:00

Fixed Short DllCall arg type and undefined behaviour for invalid types.
Fixed (non-string) file version number for AutoHotkey binaries.
Fixed parameter type errors to show the correct parameter number.

SHA256 hashes
lexikos
Posts: 9592
Joined: 30 Sep 2013, 04:07
Contact:

v2.0.3

22 Jun 2023, 22:08

Released on June 19, 2023.

Fixed Hotkey("a", "b") to use the original function of "b", not "a". [PR #318]
Fixed FileSetAttribute crash when used in a File Reading Loop. [PR #323]
Fixed duplicate Gui control name errors to correctly abort the thread.
Fixed DateTime/MonthCal Range option not applying minimum value.
Fixed s[x] => x and other single-line properties starting with "s".
Fixed a bug with deleting a breakpoint on a static line containing =>.
Fixed Button control not becoming default when clicked.
Fixed PixelSearch to unset X when pixel is not found.
Fixed hotstring with escape sequence causing next line to be skipped.
Fixed WinTitle ignoring character 1 when "ahk_" is at character 2.
Fixed remapping to utilize right-hand modifier already being down. For example, +x::+y will no longer release RShift to press LShift.
Changed error message for a == b && c() and similar cases to avoid alluding to legacy =.
Improved error message for some cases of unintended line continuation.
Fixed reserved words to be permitted as method names, as documented.
Fixed duplicate OnMessage calls for some keyboard messages.
Fixed inter-referenced closures being deleted prematurely.
Fixed SetFont to permit leading spaces in the Options parameter.
Fixed sending of {ASC nnnn}.
Fixed a.base := a to throw an error.
Fixed x.y := unset causing crashes or undefined behaviour.
Fixed GuiControl.Move() to be relative to the GUI's client area even when the GUI is not its parent.
Fixed Menu Add overwriting items which were appended by Menu Insert.



The following changes were unintentionally omitted from the v2.0.3 documentation:

Launcher
Run Dash instead of showing the old Welcome page in the documentation, when run without parameters.
Fixed version selection GUI raising an error if Enter is pressed without selecting a version. [PR UX/#4]
Suppress errors when checking whether an absent version can be downloaded.
Fixed absent version download prompt to not show the UAC shield if UAC is disabled.
Fixed issues with #Requires interpretation.
  • Support omitting the "v" prefix.
  • Support operators (> >= < <= =).
  • Support a single digit for the version.
Installation
Fixed the default installation directory for command-line use.
Renamed the Start menu shortcut from "AutoHotkey" to "AutoHotkey Dash".
Fixed EnableUIAccess when running as SYSTEM.
Fixed EnableUIAccess to verify the private key when selecting a certificate.
  • Without this, it could select a certificate for which a key container with the right name is available, but actually not the right one (e.g. if another user created the certificate). This would occur after a previous installation had already recovered from a missing private key by creating a new key and certificate. A private key could be missing if a previous installation ran as a different user, or for other reasons.
Dash
Fixed Launch Config GUI to update the "Run as administrator" and "Run with UI access" options.
Fixed Up/Down key handling in the Launch Config GUI.
lexikos
Posts: 9592
Joined: 30 Sep 2013, 04:07
Contact:

v2.0.4

08 Jul 2023, 02:04

Changed the Reload button on error/warning dialogs to explicitly close the dialog, even if the current script instance isn't terminated.
Removed an optimization for return var which caused the variable to appear blank when accessed within a finally block.
Fixed Default (Switch) to allow space before the colon.
Fixed Array.Prototype.RemoveAt to return the removed value when Length is "explicitly omitted" with unset or var?.
Fixed crashing when a ComObject is passed to a for-loop with only the second variable specified.


Installer

reset-assoc.ahk, which runs automatically after installation, now detects if .ahk file type registration is being overridden by HKCU\Software\Classes\.ahk, such as by setting the default program using "Open with" or a file's Properties dialog prior to installation on Windows 7. In such a case, a prompt is shown and the issue can be resolved by accepting the prompt.

Command-line installations which do not specify the target directory will now prompt for elevation if AutoHotkey is already installed for all users and not the current user, instead of attempting (and failing) to update without elevation. If elevation fails or is denied by the user, AutoHotkey is installed for the current user only.


Changes merged from v1.1.37.00 and v1.1.37.01

Changed COM method and property calls to pass large integers as VT_I8, not VT_R8 (floating-point), so the original type and precision is retained. Integers in the 32-bit range are still passed as VT_I4.
Added support for multi-variable enumerators (for-loops) with IDispatch-wrapped AutoHotkey objects. Both the script invoking the object and the object itself must be running a supported AutoHotkey version.
Fixed omitted parameters to receive their default values rather than the "optional argument marker" when an AutoHotkey method is called via IDispatch (COM). The reverse translation was already done when calling COM methods in previous versions.
Fixed VerCompare(a, ">" b) and reduced code size marginally.
Fixed AltTab-related load-time errors to be consistent with other errors.
Fixed errors thrown by a ComObject wrapper not being propagated correctly if it is called via an object/COM.
Fixed the Hotkey GUI control to allow setting the symbols ^, ! and + as hotkeys.
Fixed the Hotkey control to include modifiers when its value is set to a symbol.
Fixed potential misbehaviour of InputHook.KeyOpt() with single chars.
  • Option removal potentially not affecting the corresponding SC.
  • Options potentially also being applied to sc000.
Fixed a bug with custom combos where a set of hotkeys like a & b::, a:: and a up:: would fail to suppress the release of a if a:: alone is disabled with #HotIf.
Fixed a bug where a key-down event is correctly suppressed by a hotkey, but sending an additional key-down with SendLevel > 0 would prevent the subsequent key-up from being suppressed, even if the sent event is ignored due to #InputLevel.
Fixed a & b up:: not suppressing b if a & b:: is present but disabled by #HotIf.
Fixed an issue with hotkeys not firing due to a race condition. If a modifier hotkey such as ~*RWin:: called Send or GetKeyState too soon, the OS could report that RWin isn't down, so the hook's modifier state would be "corrected" and hotkeys would wrongly fire or fail to fire. This was likely to occur only if another keyboard hook was installed more recently than the script's own hook, since in that case the OS would not update key state until the other hook's thread has resumed and returned.
Fixed hotstrings to use the Last Found Window set by #HotIf.
Fixed an issue where any attempt to reinstall the keyboard or mouse hook would fail if the OS had automatically uninstalled the hook. It is still necessary to meet certain conditions before any such attempt can be made.
Optimized allocation of cached COM property names for built-in IDispatch.
Refactored code to support a build configuration for AutoHotkey as a DLL.


SHA256 hashes
lexikos
Posts: 9592
Joined: 30 Sep 2013, 04:07
Contact:

v2.0.5

12 Aug 2023, 04:18

Fixed a memory leak caused by incorrect reference counting when an object is enumerated via COM. [PR# 325]
Fixed internal calls to __Enum to not call __Call.
Fixed error messages referring to parameter #65535.
Fixed incorrect IEnumVARIANT return count.
Fixed Download throwing OSError(0) when error should be non-zero.
Fixed LV.Add/Insert/Modify crashing when passed the minimum number of parameters.
Fixed stack traces to exclude calls to __new for Error subclasses.

SHA256 hash
lexikos
Posts: 9592
Joined: 30 Sep 2013, 04:07
Contact:

v2.0.6

30 Aug 2023, 03:14

Fixed some ambiguity with COM calls, such as x.y acting as x.y().
Fixed breakpoint on control flow statement being "hit" when a fat arrow function on the line below it returns.
Fixed Default : to not merge with the line below it. This prevented Default : from being used at the end of a Switch block, and caused any subsequent line to take the line number of the Default.
Optimized ProcessGetPath, ProcessSetPriority and ProcessClose to not scan through all processes when given a valid PID, even if access to the process is denied.
Fixed inability of LWin::Alt to be used to activate some Alt key combos.
Fixed TypeError thrown by x is y to say "Class" rather than "Object".
Fixed WinTitle to support criteria longer than 1023 characters.
Fixed issues when &ref is used on different aliases of the same variable.
Fixed optional parameter default expressions (other than simple literal values) preventing the use of assume-global/assume-static.

SHA256 hash
lexikos
Posts: 9592
Joined: 30 Sep 2013, 04:07
Contact:

v2.0.7

02 Sep 2023, 03:30

Fixed MouseClickDrag to allow X1 and Y1 to be omitted.
Fixed mouse AltTab hotkeys not suppressing execution of a prefix hotkey, such as 1:: for 1 & WheelDown::AltTab. (Broken by v2.0.4)
Fixed hook hotkeys not recognizing modifiers which are pressed down by SendInput.
Fixed A_AhkPath to not be reliant on the case/format of the command line used to launch the process.
Fixed heap corruption during window searches involving groups. (Broken by v2.0.6)

Launcher
Fixed #Requires not being detected if followed by a comment other than ; prefer xxx. (Broken by v2.0.6)
Fixed syntax detection misinterpreting multi-line auto-replace hotstrings.

Window Spy
Changed font to Segoe UI size 9, consistent with Dash.

SHA256 hash
lexikos
Posts: 9592
Joined: 30 Sep 2013, 04:07
Contact:

v2.0.8

11 Sep 2023, 06:31

Fixed ByRef parameters erroneously assigning the default value to the caller's VarRef if unset.
Fixed some issues affecting suppressed Alt/Ctrl/Shift/Win hotkeys, such as:
  • *LCtrl:: blocked LCtrl from the active window, but sending Alt-key combinations would fail because the system thinks Ctrl is down, and would therefore send WM_KEYDOWN instead of WM_SYSKEYDOWN.
  • *LAlt:: caused the system to forget any prior {LAlt DownR}, so a remapping such as LCtrl::LAlt would not behave correctly while LAlt is physically down, even though LAlt was suppressed.
  • Other potential issues where the system's low-level tracking of a modifier key doesn't match up with the logical state.
Fixed some issues affecting continuation sections:
  • Escape sequences in the Join option were translated twice, causing ```` to become one literal ` instead of two, ``n to become a linefeed, and similar.
  • `" or `' produced a literal backtick and ended the string, instead of producing a literal quote mark, if the continuation section was enclosed in quotes of the same type and lacked the ` option.
Optimized the automatic escaping of quote marks and backtick in continuation sections.
Fixed breakpoint_list (debugger) returning duplicates on lines containing fat arrow functions.
Fixed +BackgroundDefault failing to override the Gui's BackColor property.

SHA256 hash
lexikos
Posts: 9592
Joined: 30 Sep 2013, 04:07
Contact:

v2.0.9

16 Sep 2023, 23:59

Fixed stacking of hotstrings with the X option.
Fixed debugger not listing local vars if the function is at the bottom of the stack.
Fixed Gui threads to show on the debugger's call stack.
Fixed some combinations of &/ByRef causing stack overflow in ExitApp.

SHA256 hash
lexikos
Posts: 9592
Joined: 30 Sep 2013, 04:07
Contact:

v2.0.10

24 Sep 2023, 00:26

Fixed crashing when a named function hotkey is used after #HotIf.
Fixed numeric literals ending with a dot to not cause line continuation.
Fixed pre-increment/decrement to work with chained array indexing.
Fixed OnNotify/OnCommand applying styles only applicable to OnEvent.
Fixed FileExist/DirExist leaking handles when emptydir\* is used.
Fixed DirExist leaking handles when only files match.

SHA256 hash
lexikos
Posts: 9592
Joined: 30 Sep 2013, 04:07
Contact:

v2.0.11

22 Dec 2023, 20:52

Added a workaround for the first shown menu not accepting keyboard input on Windows 10.
Fixed the Add method (Gui) to support the ShortDate option for DateTime controls.
Fixed a reference counting error with multi-level function nesting.
Fixed #include <x> causing a load-time crash if used inside a function.
Fixed ListView.Opt("NoSort").
Fixed a memory leak occurring when an object with no own properties is cloned.
Fixed #include and FileInstall (non-compiled) to compare file names ordinally, not linguistically.

SHA256 hashes
lexikos
Posts: 9592
Joined: 30 Sep 2013, 04:07
Contact:

v2.0.12

22 Mar 2024, 19:39

Fixed Gui GetPos/GetClientPos when Gui has an owner window or +DPIScale.
Fixed Until preventing subfolder recursion in file loops.
Fixed DllCall to throw when arg type is UStr.
Fixed a memory leak occurring for each regex callout.
Fixed Send erroneously releasing a modifier due to a race condition. For example, ~LAlt::Send "{Blind}x" intermittently released LAlt if some other keyboard hook was installed more recently than the script's own hook.
Fixed icon loader to prefer higher bit-depth when multiple bitmaps of the same size are present.
Fixed SendInput failing to release LCtrl if it had already released RAlt and the layout does not have AltGr.
Fixed key-up hotkeys not firing if the key repeats after modifiers change. For example, F1::Send "{Ctrl down}" should allow F1 up:: to execute when the key is released even though Ctrl is down, but was not allowing it after key-repeat occurs.
Fixed an error message to refer to #HotIf rather than #IfWin. [PR #327]
Fixed OwnProps erroneously skipping properties with optional parameters.
Fixed inconsistent behaviour of cloned dynamic properties.
  • OwnProps not skipping cloned properties which require parameters.
  • Parameters not being passed recursively to parameterless properties (i.e. to allow a.b[x] to evaluate as (a.b)[x]).
Fixed SysGetIPAddresses causing a Critical Error when the network subsystem is non-functional; e.g. in Windows safe mode.
Changed ControlGetFocus to return 0 when focus can't be determined, such as when a console window is active.

SHA256 hashes
lexikos
Posts: 9592
Joined: 30 Sep 2013, 04:07
Contact:

v2.0.13

20 Apr 2024, 06:54

Changed Hotkey function to throw ValueError if Options contains an invalid option.
Fixed InputHook to respect the +S option for Backspace when acting as undo.
Fixed debugger to safely handle property deletion during enumeration.
Fixed OLE clipboard content (e.g. error dialog text) being lost on exit.
Fixed detection of invalid suffix on a hotkey, such as Hotkey "a pu".
Fixed DllCall AStr* arg type to copy back only if address changes.
Fixed #Include to correctly "close" any built-in variable it reads (no known impact on real-world scripts).
Fixed WinTitles with two different ahk_id values to yield no match.

SHA256 hashes

Return to “Announcements”

Who is online

Users browsing this forum: No registered users and 75 guests