AutoHotkey

fluid

super saiyajin...
Fąfel
Dołączył
4 Czerwiec 2013
Posty
7200
Reakcje/Polubienia
47
AutoHotkey 1.1.14.00

Added Finally statement for performing cleanup after try/catch. [fincs]
Changed behaviour of ~ prefix with custom combos to be more intuitive.
Fixed x & y:: to fire both x:: and x up:: when x is released.
Fixed ImageSearch to set ErrorLevel=2, not 0, when a GDI call fails.
Fixed EnvGet crashing the program when the var exceeds 32767 chars.
Fixed a minor error-handling bug with StatusBarWait's ErrorLevel.
Fixed a cause of heap corruption with FileRead *c on ANSI builds.
Fixed passing of local vars in recursive calls to variadic functions.
Fixed script failing to load if the first line is an expression in parentheses.
Fixed PixelSearch Fast mode to set OutputVarX/Y only on success.

AutoHotkey 1.1.14.01

Fixed Try without Catch/Finally crashing if no exception was thrown.


Zaloguj lub Zarejestruj się aby zobaczyć!
 

fluid

super saiyajin...
Fąfel
Dołączył
4 Czerwiec 2013
Posty
7200
Reakcje/Polubienia
47
AutoHotkey 1.1.14.02

Fixed x:: and x up:: both firing on key-up if the state of the modifier keys prevented x from firing on key-down. The intended behaviour as of v1.1.14 is for both hotkeys to fire on key-up if x is also used in a custom combination like x & y::.


Zaloguj lub Zarejestruj się aby zobaczyć!
 

andyxa

Bardzo aktywny
Fąfel
Dołączył
29 Grudnia 2011
Posty
2119
Reakcje/Polubienia
977
1.1.14.03
Fixed a memory leak in new X when X.__Init aborts the thread.

Fixed breakpoints shifting onto class var initializers when they are interspersed with method definitions


Zaloguj lub Zarejestruj się aby zobaczyć!
 

fluid

super saiyajin...
Fąfel
Dołączył
4 Czerwiec 2013
Posty
7200
Reakcje/Polubienia
47
AutoHotkey 1.1.14.04

Fixed DllCall() crashing the script when Function is pure integer 0.
Fixed IsFunc("ComObj(") to return false instead of throwing an exception.
Fixed ControlClick to send XButton1/XButton2 correctly.


Zaloguj lub Zarejestruj się aby zobaczyć!
 

fluid

super saiyajin...
Fąfel
Dołączył
4 Czerwiec 2013
Posty
7200
Reakcje/Polubienia
47
AutoHotkey 1.1.15.00

Added A_OSVersion value WIN_8.1.

Changed the Hotkey command to apply/remove passthrough behavior on existing hotkey variants depending on whether the tilde (~) prefix is present.

Changed exe manifest to allow GetVersion/GetVersionEx to detect Windows 8.1. Due to changes in the way these functions work as of Windows 8.1, it is likely that explicit support will need to be added to AutoHotkey for each new version of Windows; until such support is added, GetVersionEx (and therefore A_OSVersion) will return the highest supported version number when running on even newer versions of Windows.


Zaloguj lub Zarejestruj się aby zobaczyć!
 

fluid

super saiyajin...
Fąfel
Dołączył
4 Czerwiec 2013
Posty
7200
Reakcje/Polubienia
47

fluid

super saiyajin...
Fąfel
Dołączył
4 Czerwiec 2013
Posty
7200
Reakcje/Polubienia
47

fluid

super saiyajin...
Fąfel
Dołączył
4 Czerwiec 2013
Posty
7200
Reakcje/Polubienia
47
AutoHotkey 1.1.15.03

Fixed meta-functions to exit the thread correctly after using Exit or Throw.
Fixed FileInstall to use A_WorkingDir when Dest is relative in a non-compiled script.


Zaloguj lub Zarejestruj się aby zobaczyć!
 

fluid

super saiyajin...
Fąfel
Dołączył
4 Czerwiec 2013
Posty
7200
Reakcje/Polubienia
47
AutoHotkey 1.1.15.04

Fixed a performance issue with &var_containing_long_string_of_digits.
Fixed built-in variables corrupting memory when an object is assigned.
Fixed parser to disallow continue where appropriate even if the current function is defined inside a Loop.
Fixed File.Encoding := x "-RAW" breaking encoding/decoding of non-ASCII characters. The -RAW suffix is now ignored.


Zaloguj lub Zarejestruj się aby zobaczyć!
 

fluid

super saiyajin...
Fąfel
Dołączył
4 Czerwiec 2013
Posty
7200
Reakcje/Polubienia
47
AutoHotkey 1.1.16.01

Added syntax for defining dynamic properties in classes.
Added x+m and y+m options for Gui control positioning.
Added the #InputLevel of each hotkey to ListHotkeys (when non-zero).
Optimized RegExMatch with the O (object) option; capturing part of a long string is much faster than before in some cases.
Fixed objects to check for new methods after __Call completes (consistent with __Set and __Get).
Fixed some undefined behaviour occurring after VarSetCapacity fails.
Fixed FileRead to correctly report an error with files over 4GB, instead of truncating even when it wasn't requested.
Fixed FileRead *c to null-terminate correctly when byte length is odd.
Fixed some ClipboardAll issues and changed behaviour:
ClipboardTimeout is ignored for GetClipboardData(), since it never actually worked and it caused problems. This fixes timeouts and lost data when a file is on the clipboard (any file on Windows 8, or any file in a zip file or similar).
Zero-length clipboard items are allocated 1 byte upon restoring to the clipboard, since setting a zero-length item seems to always fail.
The presence of MSDEVColumnSelect/MSDEVLineSelect is now preserved when set by Scintilla, though any data set by VS is discarded.
When writing ClipboardAll directly to file, it now prefers Unicode (other usages of ClipboardAll have had this behaviour since v1.1.08).
ClipboardAll and FileRead *c on Unicode builds now round length up when odd. This increases the reported StrLen by 1, potentially avoiding truncation of the last byte.
Fixed A_EventInfo for TreeView items with negative screen coords.
Fixed a possible ListView/TreeView message filtering issue.
Fixed A_LineFile/A_LineNumber in #If expressions.
Fixed #If to add itself to ListLines (though as "If").
Fixed Abs(["-"]*) and similar crashing the program.
Fixed } funcdef(){ globally and }} ending a method/property/class.

AutoHotkey 1.1.16.02

Fixed parser to allow #include inside a class (broken by a6ea27f).
Fixed Clipboard returning binary CF_HDROP data in some instances.
Improved accuracy of FileGetSize on files which are still open.
Improved for-loop compatibility with COM objects.


Zaloguj lub Zarejestruj się aby zobaczyć!
 

fluid

super saiyajin...
Fąfel
Dołączył
4 Czerwiec 2013
Posty
7200
Reakcje/Polubienia
47
AutoHotkey 1.1.16.03

Fixed some bad behaviour in Abs() and Mod() caused by a broken bug-fix in v1.1.16.01.

AutoHotkey 1.1.16.04

Fixed a crash which occurred when overwriting a non-writable property.
Fixed a crash which occurred when a RegExMatch object is created with uncaptured subpatterns during a regex callout.


Zaloguj lub Zarejestruj się aby zobaczyć!
 

fluid

super saiyajin...
Fąfel
Dołączył
4 Czerwiec 2013
Posty
7200
Reakcje/Polubienia
47

fluid

super saiyajin...
Fąfel
Dołączył
4 Czerwiec 2013
Posty
7200
Reakcje/Polubienia
47
AutoHotkey 1.1.17.00

New features:
Added Format().
FileOpen() can now be used to read from stdin or write to stdout or stderr by passing "*" or "**" as the filename. AutoHotkey.exe * can be used to execute script text piped from another process instead of read from file. For an example, see ExecScript().
Added support for passing AutoHotkey objects to COM APIs as IDispatch.
Added support for VT_BYREF in ComObject wrappers. Use obj[] to access the referenced value.
Bug-fixes:
Fixed blue-screening on XP SP2.
Fixed owned ComObjArrays to be returned by value, not by pointer. That is, a copy of the array is returned instead of a pointer to an array which is about to be deleted.
Changed the URL in the sample script which is created when you first run AutoHotkey.
Fixed sc15D to map to vk5D/AppsKey (Send, GetKeyName, etc.).
Fixed Edit controls to not treat AltGr+A as Ctrl+A.
Fixed static class vars to not act as a target for labels which immediately precede the class.


Zaloguj lub Zarejestruj się aby zobaczyć!
 

fluid

super saiyajin...
Fąfel
Dołączył
4 Czerwiec 2013
Posty
7200
Reakcje/Polubienia
47

fluid

super saiyajin...
Fąfel
Dołączył
4 Czerwiec 2013
Posty
7200
Reakcje/Polubienia
47
AutoHotkey 1.1.18.00

Improved IDispatch implementation for AutoHotkey objects:
X.Y in VBScript and C# now returns X.Y if it is NOT a Func object; previously, it attempted to call X.Y() regardless of type.
X(Y) in VBScript, JScript and C# now returns X[Y] unless X is a Func object, in which case it is called as before.
X[Y] in C# now returns X[Y] if X is NOT a Func object; previously, it attempted to call X[Y]() regardless of type.
X.Y() in C# now returns X.Y if it is NOT a Func object, due to ambiguity in the C# dispatch implementation.
Unhandled exceptions are now converted to IDispatch exceptions.
Added support for creating new properties in JavaScript/IE DOM objects.
Fixed FileAppend, %VarContainingClipboardAll%, File causing crashes.


Zaloguj lub Zarejestruj się aby zobaczyć!
 

Podobne tematy:

Do góry