Timeline



Aug 29, 2023:

6:59 AM Ticket #3962 (Not able to interrupt script with hotkey on latest version v3.3.16.1) updated by J-Paul Mesnage
Owner, Status changed
Fix sent to Jon

Aug 28, 2023:

3:19 PM Ticket #3866 (REGEXPCLASS broken in 3.3.16.0) updated by anonymous
hoang

Aug 26, 2023:

3:54 PM Ticket #3972 (StringSplit can create invalid Arrays) updated by J-Paul Mesnage
Owner, Status changed
Thanks Fix sent to Jon
3:53 PM Ticket #3973 (GUICtrlSetColor does not work on GUICtrlCreateRadio) updated by J-Paul Mesnage
Owner, Status changed
Thanks fix (workaround) sent to Jon
1:50 PM Ticket #3963 (_WinAPI_OpenEvent function missing in WinAPIProc.au3) closed by J-Paul Mesnage
Completed: Added by revision [13003] in version: 3.3.17.0

Aug 25, 2023:

9:46 PM Ticket #3973 (GUICtrlSetColor does not work on GUICtrlCreateRadio) updated by mLipok
Description changed

Aug 24, 2023:

9:35 AM Ticket #3973 (GUICtrlSetColor does not work on GUICtrlCreateRadio) updated by KaFu
Good catch, thanks for the workaround link!

Aug 23, 2023:

2:44 PM Ticket #3973 (GUICtrlSetColor does not work on GUICtrlCreateRadio) updated by pixelsearch
Concerning this issue, Zedna created a thread on the Forum in 2020 : https://www.autoitscript.com/forum/topic/201774-guictrlsetcolor-on-checkboxradiobutton-doesnt-work-on-windows-10/ Nine's workaround solved it (a one-liner based on _WinAPI_SetWindowTheme) then Zedna adapted it for older versions of AutoIt.
12:33 PM Ticket #3972 (StringSplit can create invalid Arrays) updated by AspirinJunkie
The problem is obviously that StringSplit would create an array with more elements than the maximum number of array elements possible in AutoIt (VAR_SUBSCRIPT_ELEMENTS = 16,777,216): […] So basically all that is missing is another query in StringSplit that catches this case and then sets @error in it and returns either an empty array or a truncated array.
11:58 AM Ticket #3972 (StringSplit can create invalid Arrays) updated by Jos
True... so something is broken..…
11:24 AM Ticket #3973 (GUICtrlSetColor does not work on GUICtrlCreateRadio) created by KaFu
GUICtrlSetColor does not work on GUICtrlCreateRadio for me. […]
9:10 AM Ticket #3972 (StringSplit can create invalid Arrays) updated by AspirinJunkie
The help also states: If you use an empty string "" for the delimiters, each character will be returned as an element. I strongly suggest not touching this behavior. First, it would be script breaking for a lot of scripts that use StringSplit to split a string into an array of characters and second, it doesn't fix the bug described here, since it also occurs with a delimiter with one or more characters: […] The behavior also differs between AutoIt versions. Under version 3.14.5 the script crashes when StringSplit is called. I have not tested other versions.
7:59 AM Ticket #3972 (StringSplit can create invalid Arrays) updated by Jos
Guess a check for the second parameter would be appropriate to ensure it has a length of 1 or more. The helpfile does state: delimiters: One or more characters to use as delimiters (case sensitive).

Aug 22, 2023:

6:07 PM Ticket #3972 (StringSplit can create invalid Arrays) created by anonymous
[…]
2:55 PM Ticket #3968 (global struct gets corrupted after GUISetState()) updated by mLipok
Description changed
2:54 PM Ticket #3969 (Map Initializer List) updated by mLipok
Description changed
2:53 PM Ticket #3971 (Integer not handled properly when calling object method) updated by mLipok
Description changed

Aug 20, 2023:

1:37 AM Ticket #3971 (Integer not handled properly when calling object method) updated by BiatuAutMiahn@…
Decided to port to C++, but in the process I ran into an issue where The Size property of MSFT_Disk was being return as a string instead of UInt32 as states in MSFN, eventually I ran into this https://stackoverflow.com/a/20431978, where they mention windows returns a string on purpose, then I had the thought...what if I pass the partition size as a string? Well that did it.

Aug 19, 2023:

5:30 PM Ticket #3971 (Integer not handled properly when calling object method) created by BiatuAutMiahn@…
[…] Calling CreatePartition with any integer greater than …
9:00 AM Ticket #3970 (Macro @IsConsole) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
8:27 AM Ticket #3970 (Macro @IsConsole) created by Alecsis1
Hi all! Sometimes there's need to distinguish, is a script compiled as …

Aug 13, 2023:

11:35 PM Ticket #3969 (Map Initializer List) updated by anonymous
[…]

Aug 12, 2023:

2:40 PM Ticket #3968 (global struct gets corrupted after GUISetState()) reopened by J-Paul Mesnage
Hi I understand that the return is erratic even If I fix the $g_sFont = DllStructGetData($_gtHiDpi_WinFont, 'FaceName') to $g_sFont = DllStructGetData($tTemp, 'FaceName') I don't understand the influence of the position of Global $_gtHiDpi_WinFont= _SystemParametersInfo_GetSystemFont() which is ok after the GUISetState(@SW_SHOW, $hGUI) ; try the code with this and without it here is the code which is erratic […]

Aug 8, 2023:

1:23 PM Ticket #3967 (About fixing the vulnerability of AutoIt 3.3.16.1) updated by Jos
I see you found it! ;)
12:31 PM Ticket #3967 (About fixing the vulnerability of AutoIt 3.3.16.1) updated by anonymous
Replying to Jos: > This is not a place for asking questions, rather to provide Bug reports. > Please join the forum for questions. Could you please provide me the link of the forum to discuss my issue?

Aug 6, 2023:

11:07 AM Ticket #3969 (Map Initializer List) created by anonymous
[…]

Aug 5, 2023:

6:59 PM Ticket #3968 (global struct gets corrupted after GUISetState()) updated by argumentum
hmm, I've run the correction you posted here but it does not correct the original code that is observable while running over and over again while testing.

Aug 3, 2023:

12:51 PM Ticket #3968 (global struct gets corrupted after GUISetState()) updated by J-Paul Mesnage
In case it help the error was coming from the fact thatthe global variable was assign to a local variable the correction is […] Cheers
9:31 AM Ticket #3968 (global struct gets corrupted after GUISetState()) closed by Jos
No Bug
1:37 AM Ticket #3968 (global struct gets corrupted after GUISetState()) updated by argumentum
so, the bug was in the coder. This works as advertised: […] Do pardon my lack of experience if you would.

Aug 2, 2023:

11:30 PM Ticket #3968 (global struct gets corrupted after GUISetState()) created by argumentum
[…] While troubleshooting we discovered a bug. The thread is at …
1:37 PM Ticket #3967 (About fixing the vulnerability of AutoIt 3.3.16.1) closed by Jos
No Bug: This is not a place for asking questions, rather to provide Bug reports. Please join the forum for questions.
1:23 PM Ticket #3967 (About fixing the vulnerability of AutoIt 3.3.16.1) created by anonymous
Will the Vendor of this application provide patches or fixes for any …

Aug 1, 2023:

5:55 PM Ticket #3966 (Macro @WinLevel) updated by Andreik
Why @OSBuild is not enough?

Jul 31, 2023:

7:44 PM Ticket #3966 (Macro @WinLevel) updated by Jos
Why not simply make a UDF which returns the OS version?
5:00 PM Ticket #3966 (Macro @WinLevel) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
4:43 PM Ticket #3966 (Macro @WinLevel) created by Alecsis1
Hi! In addition to @OSVersion, let's call it for example @WinLevel …
Note: See TracTimeline for information about the timeline view.