v1.1.33

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

v1.1.33

30 Jun 2020, 05:51

v1.1.33.00

Added #ErrorStdOut Encoding parameter.
Added /ErrorStdOut=Encoding command line switch.
Added #Warn Unreachable (warning mode).
Added #Requires AutoHotkey vVersion (directive).
Added detection of program-terminating SEH exceptions, to display an error dialog.

Fixed a possible bug where Input causes undefined behaviour. [PR #159 from Helgef]
Fixed WinKill.
Fixed A_WinDir to always return the system Windows directory.
Fixed FileGetShortcut/FileCreateShortcut to return and accept negative icon indices without modification.
Fixed InputBox Locale option to not focus the Cancel button.
Fixed menu bar keyboard shortcuts not working when GUI has no controls.
Fixed LoadPicture to use 256x256 graphic when available in a DLL/EXE.
Fixed DBGp stderr copy mode to not suppress error dialogs.
Fixed ControlGet Line setting ErrorLevel=1 when line is just empty.
Fixed Send causing unwanted hotkey buffering.

Added a "Default to UTF-8" option to the installer, which adds /CP65001 to the command line for all scripts launched via the shell (Explorer).

The installer is not signed due to issues with the last certificate issued by Certum.

SHA256 hashes
User avatar
joedf
Posts: 8940
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: v1.1.33.00

30 Jun 2020, 08:50

Happy to see this released. :clap:

Please excuse me, I've opened a PR for the duplicate version IDs in the change logs. Unless... it is intentional. :crazy:
https://github.com/Lexikos/AutoHotkey_L-Docs/pull/437
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]
MancioDellaVega
Posts: 83
Joined: 16 May 2020, 12:27
Location: Italy

Re: v1.1.33.00

30 Jun 2020, 09:01

I have windows 10 32 bit and the version V.1.1.30.1
How i can update in the right way?..can i use the installer.ahk that i have in
the ahk directory?
Courses on AutoHotkey
User avatar
joedf
Posts: 8940
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: v1.1.33.00

30 Jun 2020, 09:03

MancioDellaVega wrote:
30 Jun 2020, 09:01
I have windows 10 32 bit and the version V.1.1.30.1
How i can update in the right way?..can i use the installer.ahk that i have in
the ahk directory?
Just run the installer, and there should be an upgrade option. :thumbup:
https://www.autohotkey.com/download/ahk-install.exe
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]
MancioDellaVega
Posts: 83
Joined: 16 May 2020, 12:27
Location: Italy

Re: v1.1.33.00

30 Jun 2020, 12:17

just downloaded and all gone good...Thanks.. :dance:
Courses on AutoHotkey
lexikos
Posts: 9553
Joined: 30 Sep 2013, 04:07
Contact:

Re: v1.1.33.00

30 Jun 2020, 16:26

You can, of course, just download and install it like usual.

The upgrade option in setup just downloads and runs the latest setup file in silent mode.
Tensai
Posts: 29
Joined: 12 Dec 2019, 14:15

Re: v1.1.33.00

30 Jun 2020, 18:21

:bravo: Very happy to see this! Thanks for the amazing work Lexikos! :superhappy:
blue83
Posts: 157
Joined: 11 Apr 2018, 06:38

Re: v1.1.33.00

30 Jun 2020, 23:51

Thank you for update :)
User avatar
jmeneses
Posts: 524
Joined: 28 Oct 2014, 11:09
Location: Catalan Republic

Re: v1.1.33.00

01 Jul 2020, 01:56

Thank you very much lexikos for your work thank you very much indeed
Donec Perficiam
serzh82saratov
Posts: 137
Joined: 01 Jul 2017, 03:04

Re: v1.1.33.00

04 Jul 2020, 19:38

Great :thumbup:
This example can be used to remove a reference to "AutoHotkey" in the generated .exe to disguise that it is a compiled AutoHotkey script:
The windows have the class "AutoHotkeyGUI", it is very noticeable, is it possible to set your own name?
:dance:
This example will alter a UPX compressed .exe so that it can't be de-compressed with UPX -d
Is there any news about when there will be full password protection, or do you still think it's impossible?
TAC109
Posts: 1098
Joined: 02 Oct 2013, 19:41
Location: New Zealand

Re: v1.1.33.00

04 Jul 2020, 21:06

serzh82saratov wrote:
04 Jul 2020, 19:38
Great :thumbup:
This example can be used to remove a reference to "AutoHotkey" in the generated .exe to disguise that it is a compiled AutoHotkey script:
The windows have the class "AutoHotkeyGUI", it is very noticeable, is it possible to set your own name?
:dance:
There is an example in BinMod.ahk that shows how to do this.
This example will alter a UPX compressed .exe so that it can't be de-compressed with UPX -d
Is there any news about when there will be full password protection, or do you still think it's impossible?
There are no plans for this. :(
My scripts:-
XRef - Produces Cross Reference lists for scripts
ReClip - A Text Reformatting and Clip Management utility
ScriptGuard - Protects Compiled Scripts from Decompilation
I also maintain Ahk2Exe
lexikos
Posts: 9553
Joined: 30 Sep 2013, 04:07
Contact:

v1.1.33.01

13 Jul 2020, 05:27

Fixed modifier key-up hotkeys like LShift up:: not suppressing key-up unless a corresponding key-down hotkey is defined.
Fixed icons loaded from DLL/EXE not using the closest matching size if it's first in the icon group [broken by v1.1.33.00].
Fixed a up:: erroneously taking precedence over b & a up:: if a:: is defined but not b & a::.
Fixed b & a up:: not suppressing a when a:: is defined but disabled by #If and b & a:: is not defined.
MancioDellaVega
Posts: 83
Joined: 16 May 2020, 12:27
Location: Italy

Re: v1.1.33.00

13 Jul 2020, 10:11

Thanks for your great work. :clap: :clap:
Courses on AutoHotkey
lexikos
Posts: 9553
Joined: 30 Sep 2013, 04:07
Contact:

v1.1.33.02

17 Jul 2020, 05:57

Fixed InputHook.EndKey to prefer any vk over sc000.
Fixed InputHook.KeyOpt("{sc000}", flags).
Fixed #Warn Unreachable flagging Case/Default as unreachable.

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

v1.1.33.03

01 Mar 2021, 01:09

This release is incompatible with some old CPUs, such as Core 2.

Fixed crashing when an empty SafeArray is enumerated.
Fixed height to not auto-expand for Button/Checkbox/Radio with -Wrap.
Fixed WM_DESTROY bypassing release of objects in global/static vars.
Fixed WinMenuSelectItem second-attempt matching to handle & correctly. Specifically, items with actual text like "a && b" which appear as "a & b" will now match "a & b" instead of "a b".
Fixed breakpoint on Case/Default line breaking at end of previous case.
Changed SoundBeep to ignore duration if negative, instead of wrapping around to a large positive value.
Fixed mouse hotkeys with ! to mask Alt-up after key-repeat if possible.
Fixed several issues with overlapping hotkeys.
  • Key-up hotkeys firing incorrectly because they were paired with a hotkey with overlapping but different requirements, such as <^a up firing for RCtrl+A because it was paired with ^a; or *^c up firing for Shift+C because it was paired with *+c, and both can fire for Ctrl+Shift+C.
  • Unpredictable prioritization of hotkeys with the same modifiers but different L/R variants, or different modifiers when neither one is a perfect subset of the other. Priority was affected by order of definition to a degree but shifted unpredictably when hotkeys were added or removed.
Ahk2Exe was updated to commit 09945fdf, including enhancements to the ;@Ahk2Exe-PostExec directive.

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

v1.1.33.04

02 Mar 2021, 03:45

Removed dependency on the POPCNT instruction, which is not supported by old CPUs (e.g. Core 2).

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

v1.1.33.05

09 Mar 2021, 16:20

Fixed bugs with hotkey variants having different #InputLevels.
  • Hotkey variants executing despite send level being too low, due to a global variant having lower #InputLevel.
  • Hotkey variants not executing because a previous variant was ineligible due to #InputLevel.
Fixed Ctrl/Shift/Alt (without L/R) as hook hotkeys.

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

v1.1.33.06

13 Mar 2021, 22:38

Fixed joystick hotkeys (broken by v1.1.33.05).

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

Re: v1.1.33

28 Mar 2021, 05:52

I've just found that #MaxThreadsBuffer and the B hotkey option were also broken by v1.1.33.05, and fixed by v1.1.33.06.
lexikos
Posts: 9553
Joined: 30 Sep 2013, 04:07
Contact:

v1.1.33.07

21 Apr 2021, 02:52

Fixed tray icon freezing and becoming blurry after screen DPI changes.
Fixed hotkeys disabled by #InputLevel erroneously suppressing keys.

SHA256 hashes

Return to “Announcements”

Who is online

Users browsing this forum: No registered users and 43 guests