AutoHotkey

Camel1965

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

AutoHotkey 1.1.36.02​

December 7, 2022
  • Improved ComObjConnect to allow detecting disconnect via __Delete.
  • Fixed a performance issue with command args exceeding 4*1024*1024 chars.
  • Fixed FileCreateDir with network shares/UNC paths.
  • Fixed undefined behavior for File.Length/Read() with console buffers.
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

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

AutoHotkey 2.0.5​

August 13, 2023
  • 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.
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

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

AutoHotkey 2.0.6

2.0.6 - August 30, 2023


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
Zaloguj lub Zarejestruj się aby zobaczyć!
: to not merge with the line below it. This prevented
Zaloguj lub Zarejestruj się aby zobaczyć!
: 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.
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

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

AutoHotkey 2.0.7

2.0.7 - September 2, 2023


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.
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

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

AutoHotkey 2.0.8

2.0.8 - September 11, 2023


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.
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

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

AutoHotkey 2.0.11

Added a workaround for the first shown menu not accepting keyboard input on Windows 10.


Fixed the
Zaloguj lub Zarejestruj się aby zobaczyć!
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
Zaloguj lub Zarejestruj się aby zobaczyć!
, not linguistically.
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

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

AutoHotkey 2.0.12

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
Zaloguj lub Zarejestruj się aby zobaczyć!
]


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[c] to evaluate as (a.b)[c]).

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 hash
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

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

AutoHotkey 2.0.13

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.
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Podobne tematy:

Do góry