Timeline



Apr 23, 2022:

5:27 PM Ticket #3878 (Tidy corrupts user defined include lines..) closed by Jos
Fixed: Funny that nobody ever had this issue before. Guess that is mainly because when using a user defined UDF file one mainly uses this syntax: #include "c:\xyz\file.au3". This is definitely an bug and should be fixed in the current Tidy beta version 21.316.1639.14 https://www.autoitscript.com/autoit3/scite/download/beta_SciTE4AutoIt3/Tidy.exe Jos
2:42 PM Ticket #3878 (Tidy corrupts user defined include lines..) created by wimhek11@…
Tidy changes the #include lines pointing to own includes from …

Apr 22, 2022:

2:38 AM Ticket #3876 (Hex Number Arithmetic is incorrect) updated by Zbend
Replying to anonymous: > Hello, > > i found the same problem in all beta versions since 3.3.14.5, you can bypass them by wrote > {{{ > Const $OFFSET = -(0x46) > }}} > > Sascha thats only a bypass for hardcoded offsets. If you have functions where you dont know if the output value is supposed to be positive or negative this bypass wont work out. also that "solution" was mentioned in the link i provided

Apr 20, 2022:

4:56 PM Ticket #3876 (Hex Number Arithmetic is incorrect) updated by anonymous
Hello, i found the same problem in all beta versions since 3.3.14.5, you can bypass them by wrote […] Sascha

Apr 16, 2022:

11:18 AM Ticket #3869 (Subtraction operator before power operation is parsed incorrectly) updated by J-Paul Mesnage
Owner, Status changed
10:13 AM Ticket #3869 (Subtraction operator before power operation is parsed incorrectly) updated by J-Paul Mesnage
Hi, the main problem was coming from a regression introduce by #3772 But it was still a pb with 3.3.14.5 which must return -5 all the time The unary operator is not really handled in AutoIt The fix has been sent to Jon
10:07 AM Ticket #3876 (Hex Number Arithmetic is incorrect) updated by J-Paul Mesnage
Hi I cannot answer this question as Jon will do it when It has time in fact this pb come from a regression introduce by #3772 which will be fix by the fixing of #3869 Sorry for the trouble

Apr 12, 2022:

11:49 AM Ticket #3863 (_WinAPI_GetCapture) closed by J-Paul Mesnage
Completed: Added by revision [12704] in version: 3.3.15.6
11:15 AM Ticket #3877 ($GUI_ONTOP hides the control when already on top) closed by J-Paul Mesnage
Fixed: Fixed by revision [12703] in version: 3.3.15.6
10:54 AM Ticket #3877 ($GUI_ONTOP hides the control when already on top) updated by anonymous
Replying to anonymous: > $GUI_ONTOP is meant for GUI's and not for GUI Controls. Isn't it? Sorry. Never mind. Looked it up.
10:50 AM Ticket #3877 ($GUI_ONTOP hides the control when already on top) updated by anonymous
$GUI_ONTOP is meant for GUI's and not for GUI Controls. Isn't it?
7:28 AM Ticket #3877 ($GUI_ONTOP hides the control when already on top) updated by J-Paul Mesnage
Nice catch @pixelsearch I will add to the doc pointing to this article https://social.msdn.microsoft.com/Forums/en-US/dcd6a33c-2a6f-440f-ba0b-4a5fa26d14bb/when-to-use-wsclipchildren-and-wsclipsibilings-styles?forum=vcgeneral I will not change the default as this article point out a little perf draw back

Apr 11, 2022:

6:09 PM Ticket #3877 ($GUI_ONTOP hides the control when already on top) updated by pixelsearch
Adding a $WS_CLIPSIBLINGS style when creating the label seems to solve the issue in the script presented above, where controls overlap. Is this solution ok ? Local $idLabel = GUICtrlCreateLabel("", 0, 0, 300, 200, $WS_CLIPSIBLINGS, $GUI_WS_EX_PARENTDRAG)

Apr 10, 2022:

10:01 PM Ticket #3876 (Hex Number Arithmetic is incorrect) updated by Zvend
Hey, just for my information: When will the fix be applied? so i can continue moving my project to the newest autoit version
9:07 PM Ticket #3877 ($GUI_ONTOP hides the control when already on top) updated by mLipok
Description changed
1:25 PM Ticket #3877 ($GUI_ONTOP hides the control when already on top) created by Nine
Setting the button to $GUI_ONTOP makes it disappear : […] Giving …

Apr 9, 2022:

2:39 PM Ticket #3873 (DllStruct dot access non existent element should be a fatal error) updated by J-Paul Mesnage
Owner, Status changed
Added Opt("dllstructMode, 1) to force fatal error Fix sent to Jon
9:26 AM Ticket #3875 (GUICtrlSetResizing() performance) updated by KaFu
Top, thanks!

Apr 8, 2022:

5:57 PM Ticket #3875 (GUICtrlSetResizing() performance) updated by mLipok
Description changed
5:03 PM Ticket #3874 (FileOpen() and similar functions should set @error to non-zero on failure) closed by J-Paul Mesnage
Rejected: It is true that, from the beginning, a lot of AutoIt builtin function was not using the @error. It would be a hard work to introduce @error in these functions. But perhaps you can easy use _WinAPI_GetLasterror() in a udf as mention by Jos,
4:35 PM Ticket #3865 (Image Control resizing behave as forced $GUI_DOCKWIDTH and $GUI_DOCKHEIGHT) updated by J-Paul Mesnage
Owner, Status changed
Thanks, Fix sent to Jon
12:27 PM Ticket #3864 (StringRegExp - AutoIt3.exe ended.rc:-1073741571) updated by J-Paul Mesnage
Owner, Status changed
Thanks a tentaive fix has been sent to Jon
12:20 PM Ticket #3875 (GUICtrlSetResizing() performance) updated by J-Paul Mesnage
Owner, Status changed
Thanks Fix sent to Jon
9:55 AM Ticket #3876 (Hex Number Arithmetic is incorrect) updated by J-Paul Mesnage
Owner, Status changed
Thanks, Fix sent to Jon

Apr 7, 2022:

2:33 PM Ticket #3876 (Hex Number Arithmetic is incorrect) created by Zvend
The hex arithmetic in the newest version broke compared to previous …
9:52 AM Ticket #3875 (GUICtrlSetResizing() performance) created by KaFu
Hiho Team, maybe you saw my posting in the open help forum about …

Apr 5, 2022:

3:34 PM Ticket #3874 (FileOpen() and similar functions should set @error to non-zero on failure) updated by Jos
You are assuming that AutoIt3 knows all these conditions, in stead of just trying to open the file and returning a @error=-1 in case it fails. Just make your own UDF _FileOpen() that does these extra checks and balances as that really should be pretty simply to code when required. ;)
3:00 PM Ticket #3874 (FileOpen() and similar functions should set @error to non-zero on failure) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
2:50 PM Ticket #3874 (FileOpen() and similar functions should set @error to non-zero on failure) created by anonymous
I wonder why some File* and all Dir* functions don't set @error to …
12:26 PM Ticket #3872 (FTP-Server in AutoIt Help no longer accessible) closed by J-Paul Mesnage
Fixed: Fixed by revision [12698] in version: 3.3.15.6
7:52 AM Ticket #3871 (_ArrayDisplay() Hang sorted array with Null element) updated by J-Paul Mesnage
Thanks to Pixelsearch for the solution
7:50 AM Ticket #3871 (_ArrayDisplay() Hang sorted array with Null element) closed by J-Paul Mesnage
Fixed: Fixed by revision [12696] in version: 3.3.15.6

Apr 4, 2022:

6:03 PM Ticket #3871 (_ArrayDisplay() Hang sorted array with Null element) updated by J-Paul Mesnage
Description, Summary changed
6:02 PM Ticket #3871 (_ArrayDisplay() Hang sorted array with Null element) reopened by J-Paul Mesnage
5:00 PM Ticket #3873 (DllStruct dot access non existent element should be a fatal error) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
4:03 PM Ticket #3873 (DllStruct dot access non existent element should be a fatal error) created by matwachich@…
When accessing a dllstruct like this $tStruct.field, if field doesn't …
2:42 PM Ticket #3872 (FTP-Server in AutoIt Help no longer accessible) updated by mLipok
ftp://speedtest.tele2.net Found on: https://stackoverflow.com/a/29104430/5314940
8:19 AM Ticket #3872 (FTP-Server in AutoIt Help no longer accessible) updated by J-Paul Mesnage
Hi, can you suggest a FTP server without password?

Apr 3, 2022:

8:30 AM Ticket #3872 (FTP-Server in AutoIt Help no longer accessible) updated by J-Paul Mesnage
Reporter changed

Apr 2, 2022:

11:34 AM Ticket #3872 (FTP-Server in AutoIt Help no longer accessible) created by Musashi
Apparently, the FTP-Server ftp.csx.cam.ac.uk (CAMBRIDGE ANONYMOUS FTP …
8:48 AM Ticket #3871 (_ArrayDisplay() Hang sorted array with Null element) closed by J-Paul Mesnage
Fixed: Fixed
8:20 AM Ticket #3871 (_ArrayDisplay() Hang sorted array with Null element) created by J-Paul Mesnage
To repro just use the pointed link …

Mar 30, 2022:

10:08 AM Ticket #3835 (Replace constants with magic numbers) updated by J-Paul Mesnage
I revert the GDIPlus.au3 regression Fix in 3.3.16.1 Sorry for the trouble
Note: See TracTimeline for information about the timeline view.