AutoHotkey

Submit portable freeware that you find here. It helps if you include information like description, extraction instruction, Unicode support, whether it writes to the registry, and so on.
Message
Author
User avatar
lintalist
Posts: 434
Joined: Sat Apr 19, 2014 12:52 am
Contact:

Re: AutoHotkey

#16 Post by lintalist »

v1.1.20.02

Fixed add-first mode of OnMessage.
Fixed A_OSVersion for unrecognized OSes on x64 builds.
Fixed ExitApp to unpause the script before releasing objects in case a __delete meta-function is called.
Trivial optimizations and code maintenance.

http://ahkscript.org/docs/AHKL_ChangeLog.htm

User avatar
SYSTEM
Posts: 2041
Joined: Sat Jul 31, 2010 1:19 am
Location: Helsinki, Finland

Re: AutoHotkey

#17 Post by SYSTEM »

lintalist wrote:v1.1.20.02

Fixed add-first mode of OnMessage.
Fixed A_OSVersion for unrecognized OSes on x64 builds.
Fixed ExitApp to unpause the script before releasing objects in case a __delete meta-function is called.
Trivial optimizations and code maintenance.

http://ahkscript.org/docs/AHKL_ChangeLog.htm
Checker had already updated the entry. :)
My YouTube channel | Release date of my 13th playlist: August 24, 2020

User avatar
lintalist
Posts: 434
Joined: Sat Apr 19, 2014 12:52 am
Contact:

Re: AutoHotkey

#18 Post by lintalist »

I saw that just now and wanted to Edit my post - you beat me to it SYSTEM :-)

User avatar
SYSTEM
Posts: 2041
Joined: Sat Jul 31, 2010 1:19 am
Location: Helsinki, Finland

Re: AutoHotkey

#19 Post by SYSTEM »

lintalist wrote:I saw that just now and wanted to Edit my post - you beat me to it SYSTEM :-)
Haha, I am fast. ;)

And so is Checker. :mrgreen:
My YouTube channel | Release date of my 13th playlist: August 24, 2020

User avatar
Checker
Posts: 1628
Joined: Wed Jun 20, 2007 1:00 pm
Location: Ingolstadt [DE]

Re: AutoHotkey

#20 Post by Checker »

Image

User avatar
Midas
Posts: 6710
Joined: Mon Dec 07, 2009 7:09 am
Location: Sol3

Re: AutoHotkey

#21 Post by Midas »

The quickest in the East! :D

User avatar
guinness
Posts: 4118
Joined: Mon Aug 27, 2007 2:00 am
Contact:

Re: AutoHotkey

#22 Post by guinness »

Syntactically AutoHotKey seems a little bit all over the place. Is it BASIC-like? Is it C? Who knows?

User avatar
lintalist
Posts: 434
Joined: Sat Apr 19, 2014 12:52 am
Contact:

Re: AutoHotkey

#23 Post by lintalist »

1.1.20.03 - March 21, 2015

Fixed MouseGetPos (OutputVarControl), GuiContextMenu and GuiDropFiles (A_GuiControl) to not ignore disabled controls [broken by v1.1.20.00].

http://ahkscript.org/docs/AHKL_ChangeLog.htm

User avatar
SYSTEM
Posts: 2041
Joined: Sat Jul 31, 2010 1:19 am
Location: Helsinki, Finland

Re: AutoHotkey

#24 Post by SYSTEM »

lintalist wrote:1.1.20.03 - March 21, 2015

Fixed MouseGetPos (OutputVarControl), GuiContextMenu and GuiDropFiles (A_GuiControl) to not ignore disabled controls [broken by v1.1.20.00].

http://ahkscript.org/docs/AHKL_ChangeLog.htm
Thanks. Entry updated. :)
My YouTube channel | Release date of my 13th playlist: August 24, 2020

User avatar
lintalist
Posts: 434
Joined: Sat Apr 19, 2014 12:52 am
Contact:

Re: AutoHotkey

#25 Post by lintalist »

v1.1.21.00 - March 28, 2015 - http://ahkscript.org/docs/AHKL_ChangeLog.htm#v1.1.21.00
  • Added Loop, Reg, RootKey[\Key, Mode].
  • Added Loop, Files, FilePattern [, Mode].
  • Changed InputVar parameters to allow % expression (except with If commands).
  • Revised Object methods:
    • Added Object.InsertAt(), Object.Push() and ObjRawSet().
    • Added Object.Delete(), Object.RemoveAt() and Object.Pop().
    • Added Object.Length().
  • Added Ord() and updated Chr() to support supplementary chars (>0xFFFF).
  • Added StrReplace().
  • Removed the obsolete and undocumented 5-parameter mode of RegRead, which was exclusively for AutoIt v2 compatibility (the extra parameter was unused).
  • Changed RegRead, RegWrite and RegDelete so that the RootKey and SubKey parameters can optionally be combined.

User avatar
SYSTEM
Posts: 2041
Joined: Sat Jul 31, 2010 1:19 am
Location: Helsinki, Finland

Re: AutoHotkey

#26 Post by SYSTEM »

lintalist wrote:v1.1.21.00 - March 28, 2015 - http://ahkscript.org/docs/AHKL_ChangeLog.htm#v1.1.21.00
  • Added Loop, Reg, RootKey[\Key, Mode].
  • Added Loop, Files, FilePattern [, Mode].
  • Changed InputVar parameters to allow % expression (except with If commands).
  • Revised Object methods:
    • Added Object.InsertAt(), Object.Push() and ObjRawSet().
    • Added Object.Delete(), Object.RemoveAt() and Object.Pop().
    • Added Object.Length().
  • Added Ord() and updated Chr() to support supplementary chars (>0xFFFF).
  • Added StrReplace().
  • Removed the obsolete and undocumented 5-parameter mode of RegRead, which was exclusively for AutoIt v2 compatibility (the extra parameter was unused).
  • Changed RegRead, RegWrite and RegDelete so that the RootKey and SubKey parameters can optionally be combined.
Entry updated. :)
My YouTube channel | Release date of my 13th playlist: August 24, 2020

User avatar
lintalist
Posts: 434
Joined: Sat Apr 19, 2014 12:52 am
Contact:

Re: AutoHotkey

#27 Post by lintalist »

1.1.21.01 - April 3, 2015 - http://ahkscript.org/docs/AHKL_ChangeLog.htm
  • Fixed StrReplace() to allow ReplaceText to be omitted.
  • Fixed class variables to allow non-ASCII names.

User avatar
lintalist
Posts: 434
Joined: Sat Apr 19, 2014 12:52 am
Contact:

Re: AutoHotkey

#28 Post by lintalist »

v1.1.21.03 - April 12, 2015

* Fixed detection of naming conflicts between properties and methods.

http://ahkscript.org/docs/AHKL_ChangeLog.htm

User avatar
SYSTEM
Posts: 2041
Joined: Sat Jul 31, 2010 1:19 am
Location: Helsinki, Finland

Re: AutoHotkey

#29 Post by SYSTEM »

lintalist wrote:v1.1.21.03 - April 12, 2015

* Fixed detection of naming conflicts between properties and methods.

http://ahkscript.org/docs/AHKL_ChangeLog.htm
Entry updated. :)
My YouTube channel | Release date of my 13th playlist: August 24, 2020

User avatar
lintalist
Posts: 434
Joined: Sat Apr 19, 2014 12:52 am
Contact:

Re: AutoHotkey

#30 Post by lintalist »

1.1.22.03 - July 12, 2015

Fixed A_EndChar returning a truncated value for Unicode end chars.

Small implementation changes:
  • Changed A_Language to use GetSystemDefaultUILanguage().
  • Refactored Window Spy/help file launching from tray menu to improve code re-use.
  • Optimized Gui/Menu/Hotkey/Hotstring/OnClipboard message handling (minor).
Source: http://ahkscript.org/docs/AHKL_ChangeLog.htm

Post Reply