Timeline



May 1, 2016:

10:47 PM Ticket #3097 (AutoIt crash with Objects) updated by mLipok
When it be fixed, it will be notified here. You should wait for fixing.
4:19 PM Ticket #3227 (DirRemove - If directory does not exist: Return value 1 instead of 0) updated by Melba23
"Maybe Information in form of @extended has more sense in this case" Certainly better than altering the normal return. M23
9:18 AM Ticket #3228 (Return empty string on failure for _ArrayToString) closed by J-Paul Mesnage
Rejected: No the doc is correct as a array is not return is this case so the error checking must be done by checking @error. It is as the return of UDF function handle such error. You may find discrepency in other UDF but not in this one

Apr 30, 2016:

11:00 PM Ticket #3228 (Return empty string on failure for _ArrayToString) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
10:34 PM Ticket #3228 (Return empty string on failure for _ArrayToString) created by anonymous
There are mixed returns for the _ArrayToString function, the proper …
10:21 PM Ticket #3227 (DirRemove - If directory does not exist: Return value 1 instead of 0) created by Micha
Because the function DirRemove reached the target (even if the …

Apr 29, 2016:

1:36 PM Ticket #3226 (StringRegExp : "complete description of PCRE patterns link" not found) created by jguinch
In StringRegExp help page, there is a link for the "complete …
11:39 AM Ticket #3225 (Interrupt function not work when working with GUICtrlRichEdit) updated by Melba23
Or you can activate the main GUI each time you write to the RichEdit: […] And, as mLipok mentioned, in future please us the forum for support questions. M23
11:37 AM Ticket #3225 (Interrupt function not work when working with GUICtrlRichEdit) closed by Melba23
No Bug

Apr 28, 2016:

8:59 PM Ticket #3225 (Interrupt function not work when working with GUICtrlRichEdit) updated by mLipok
_GUICtrlRichEdit_AppendText uses _GUICtrlRichEdit_SetSel which uses _WinAPI_SetFocus this _WinAPI_SetFocus setting focus on GUI and fires WM_COMMAND _WinAPI_SetFocus is called many times in single seconds so your CLICKING in $iStop = GUICtrlCreateButton("Stop", 70, 10, 50, 20) is to sloow for AutoIt speed. You can make a work around by adding Sleep() Sleep(100) _GUICtrlRichEdit_AppendText($LogWindowR, $logtext) or by removing _WinAPI_SetFocus from _GUICtrlRichEdit_SetSel ---- This is not support forum, next time please first ask on the forum: https://www.autoitscript.com/forum/forum/2-autoit-general-help-and-support/ ---- Sumarizing: It seams to be normal behavior in this case.
10:46 AM test2.au3 attached to Ticket #3225 by michael.szerencsits@…
10:45 AM Ticket #3225 (Interrupt function not work when working with GUICtrlRichEdit) created by michael.szerencsits@…
Hello AutoIt Team, I created a program where RichEdit Box where …

Apr 22, 2016:

5:17 PM Ticket #2865 (Autoit crash with NodeList on For In loop) closed by mLipok
No Bug: This is related to IE object. This was discussed and solved here: https://www.autoitscript.com/forum/topic/181376-_iequeryselectorall/?do=findComment&comment=1303644

Apr 20, 2016:

8:22 AM Ticket #2503 (Reference Definition Keyword) updated by mLipok
Why do you need the exactly the same content in variable in the same scope but with different variable name ? To me this seems ridiculous, or at least unnecessary.

Apr 19, 2016:

6:58 PM Ticket #3206 (New remark for the "root dir" parameter for FileSelectFolder) closed by Melba23
Completed: Changed by revision [11689] in version: 3.3.15.1
6:24 PM Ticket #3213 (_Arraydisplay() (from Array.au3) may truncate headers since their max ...) closed by Melba23
Rejected: The header lengths are determined by the user so it is up to the user to choose suitable header lengths. The UDF is primarily designed to display the array and it would be ridiculous to reduce the visible content just to display a header in full. Rejected. M23

Apr 18, 2016:

9:59 AM Ticket #3224 (_ArrayConcatenate wrong parameters in description) closed by Melba23
Completed: Already fixed in Rev 11633. M23

Apr 16, 2016:

9:56 AM Ticket #2871 (#AutoIt3Wrapper_OutPath) closed by Jos
Rejected
9:52 AM Ticket #3222 (FileInstall) updated by Jos
#3185 for Jon to check whether this is a simple fix or not, so lets wait for that before making a remark in the documentation. Jos
9:50 AM Ticket #3221 (AutoItWrapper not stopping if #AutoIt3Wrapper_Run_Before fails) updated by Jos
How would you see this implemented as the returncode could be different for each process? Not sure how this could work considering you can have multiple Run_Before or Run_After statements. Thoughts? Jos
5:19 AM Ticket #3224 (_ArrayConcatenate wrong parameters in description) created by anonymous
Help File: _ArrayConcatenate ( Const ByRef $aArrayTarget, ByRef …

Apr 15, 2016:

7:22 PM Ticket #3223 (_IEPropertySet - On Success returns 0 instead 1) updated by mLipok
Component, Summary changed
7:20 PM Ticket #3223 (_IEPropertySet - On Success returns 0 instead 1) closed by mLipok
Fixed: Fixed by revision [11686] in version: 3.3.15.1
7:18 PM Ticket #3223 (_IEPropertySet - On Success returns 0 instead 1) updated by mLipok
There is no problem with _IEPropertyGet as On Succes it returns: the selected property. So I change the ticket title.
7:17 PM Ticket #3223 (_IEPropertySet - On Success returns 0 instead 1) updated by mLipok
Version, Summary changed
7:04 PM Ticket #3223 (_IEPropertySet - On Success returns 0 instead 1) updated by anonymous
Replying to anonymous: > Both functions return 0 by success and not 1. > Excuse me, ist only the _IEPropertySet function that always return Zero. Change line 2490 in IE.au3 to Return SetError($_IESTATUS_Success, 0, 1)
7:02 PM Ticket #3223 (_IEPropertySet - On Success returns 0 instead 1) created by anonymous
Both functions return 0 by success and not 1.
1:00 PM Ticket #3221 (AutoItWrapper not stopping if #AutoIt3Wrapper_Run_Before fails) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
12:56 PM Ticket #3221 (AutoItWrapper not stopping if #AutoIt3Wrapper_Run_Before fails) updated by mLipok
Type changed
12:03 PM Ticket #3220 (_ArrayBinarySearch Help text incomplete/misleading) closed by Melba23
Completed: Changed by revision [11685] in version: 3.3.15.1

Apr 14, 2016:

9:02 PM Ticket #3222 (FileInstall) created by anonymous
Two functions of FileInstall in the same line wont work. Maybe there …

Apr 13, 2016:

2:13 PM 4-13-2016 9-11-21 AM.png attached to Ticket #3221 by anonymous
2:13 PM Ticket #3221 (AutoItWrapper not stopping if #AutoIt3Wrapper_Run_Before fails) created by cory.r.stein@…
When using the AutoItWrapper to compile, if any of the …

Apr 10, 2016:

12:47 PM Ticket #3220 (_ArrayBinarySearch Help text incomplete/misleading) created by RTFC
_ArrayBinarySearch Help text fails to mention that the supplied array …
7:24 AM Ticket #3218 (_Timer_KillTimer don't kill timer.) closed by J-Paul Mesnage
No Bug

Apr 9, 2016:

6:36 PM SetupDiEnumDeviceInfo.zip attached to Ticket #3219 by Ontosy
6:34 PM Ticket #3219 (dllCall cause error with SetupDiEnumDeviceInfo) created by Ontosy
When i use dllCall with a C dll return a error 6 with …
4:17 PM Ticket #3097 (AutoIt crash with Objects) updated by anonymous
is there any beta that addresses this issue? or is reversion to 3.3.12 the only mitigation? or is there some other mitigation?
1:34 AM Ticket #3218 (_Timer_KillTimer don't kill timer.) updated by autoBert
and error found, sorry first ticket and a False Positive
1:23 AM Ticket #3218 (_Timer_KillTimer don't kill timer.) created by autoBert
[…]

Apr 6, 2016:

5:15 PM Ticket #3217 (FileInstall() memory leak) updated by TheDcoder
That is not a memory leak, that is the file stored in the memory…
4:51 PM 3.3.14.2_leak.jpg attached to Ticket #3217 by malamen@…
4:50 PM Ticket #3217 (FileInstall() memory leak) created by malamen@…
Used FileInstall() to store and extract large files (300-900 Mb), and …

Apr 1, 2016:

7:06 AM Ticket #3216 (WinGetState, none of the states are declared.) closed by J-Paul Mesnage
Duplicate: Thanks Already fix for next beta
6:15 AM WinGetState Example.au3 attached to Ticket #3216 by InunoTaishou
6:14 AM Ticket #3216 (WinGetState, none of the states are declared.) created by InunoTaishou
From the help file for WinGetState: […] None of the these …
12:47 AM Ticket #2596 (TCPRecv not returning data, and setting @error to -1) updated by internetmonkeyboy@…
Local $shost = "www.google.com" Local $sPage = "/" Local $iPort = 80 TCPStartup() Local $sName_To_IP = TCPNameToIP($shost) Local $iSocket = TCPConnect($sName_To_IP, $iPort) If $iSocket = -1 Then TCPCloseSocket($iSocket) MsgBox(0, "Socket Connect Error", $iSocket, 0) Exit Else MsgBox(0, "Socket Connected", $iSocket, 1) EndIf Local $sCommand = "GET " & $sPage & " HTTP/1.1" & @CRLF $sCommand &= "Host: " & $shost & @CRLF $sCommand &= "User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1) Gecko/20061010 Firefox/2.0" & @CRLF $sCommand &= "Referer: " & $shost & @CRLF $sCommand &= "Connection: close" & @CRLF & @CRLF Local $BytesSent = TCPSend($iSocket, $sCommand) If $BytesSent = 0 Then MsgBox(0, "Sending Error", $BytesSent, 0) Exit EndIf Local $sRecv = "" Local $sCurrentRecv ;= "" While 1 $sCurrentRecv = TCPRecv($iSocket, 1000) If @error <> 0 Then ExitLoop MsgBox(0, @error, $sCurrentRecv, 1) WEnd TCPCloseSocket($iSocket) TCPShutdown()
12:43 AM Ticket #2596 (TCPRecv not returning data, and setting @error to -1) updated by internetmonkeyboy@…
As of today still not setting @error level. Why is this still broken?
Note: See TracTimeline for information about the timeline view.