Timeline
Dec 11, 2020:
- 7:45 AM Ticket #3667 (Continuation line with no code on it passes Au3Check but at runtime ...) updated by
-
Owner changed
Fix sent to Jon
Dec 10, 2020:
- 3:12 PM Ticket #3718 (AU3_ControlSend of AutoItX3_x64.dll doesn't work properly) closed by
- No Bug: No confirmation so I close the ticket. Just reopen a new one if still true with the script to reproduce
- 3:09 PM Ticket #3789 (Fileread() returns empty string when variable > 2GB) updated by
-
Owner, Status changed
fix sent to Jon - 1:33 PM Ticket #3789 (Fileread() returns empty string when variable > 2GB) updated by
- In fact the situation come frome the fact that AutoIt cannot detect on the file open in output that the data are in ANSI format. So just add 512 ($FO_ANSI) in the FileOpen mode. It look like Windows as some limitation on the data length to convert from UTF8 to Unicode. I will try to propose a go around without modifying the FileOpen mode.
- 12:59 PM Ticket #3796 (Execute() cause crash (-1073741819) with some strings containing ...) updated by
- Hi Melba23, I'm sorry but did not read your reply until now. When I wrote the ticket I was wondering whether I should state that the reason for having a "." character in execute() is not the issue, but rather the fatal crash that occurs, instead of returning @error. But it seem that Jpm fixed it now so I'm looking forward to try a new build :-) -steinar
Dec 9, 2020:
- 9:49 PM Ticket #3783 (_WinAPI_SetThreadAffinityMask, _WinAPI_SetThreadGroupAffinity, ...) closed by
- Rejected: AS there is no progress I close it. Just open a new one when you have a real proposal Cheers
- 9:25 PM Ticket #3540 (Implement optional ByRef parameters for functions) updated by
-
Owner, Status changed
- 9:24 PM Ticket #3796 (Execute() cause crash (-1073741819) with some strings containing ...) updated by
-
Owner, Status changed
Fix sent to Jon - 9:23 PM Ticket #3540 (Implement optional ByRef parameters for functions) updated by
- Fix sent to Jon
Dec 7, 2020:
- 11:42 AM Ticket #3795 (Missing documention for MapAppend()) closed by
- Wont Fix: The Map feature is only available in the Beta release - and that Help file does contain the Help pages in English (I have just checked)! M23
- 11:36 AM Ticket #3796 (Execute() cause crash (-1073741819) with some strings containing ...) updated by
- Just why do you have the "." character in the Execute string parameter? There is nothing in AutoIt syntax which makes that a legal string for an Execute command. Just what are you trying to do with this? M23
Dec 6, 2020:
- 11:21 AM Ticket #3796 (Execute() cause crash (-1073741819) with some strings containing ...) created by
- Execute(Dec.<string>) = Crash, because "Dec" is a function? …
Dec 5, 2020:
- 4:00 PM Ticket #3795 (Missing documention for MapAppend()) updated by
-
Version changed
Automatic ticket cleanup. - 3:33 PM Ticket #3795 (Missing documention for MapAppend()) created by
- So far documentation for …
Dec 1, 2020:
- 9:34 AM Ticket #3794 (StringRegExp - string passed by value instead by reference?) updated by
- ByValue create new local value (internally for function) for the same data passed to the function, so there must be allocated and copied memory related to the data set. ByReference mean that function do not create new data set for the data passed to the function, but only use reference (like a link) to the data set in memory. btw. Next time please ask on the forum. EDIT: This was mine comment mLipok
Nov 30, 2020:
- 8:47 PM Ticket #3794 (StringRegExp - string passed by value instead by reference?) updated by
- Replying to Jpm: Oh really cool. That would solve a lot of problems for me. For completeness and out of interest: Was it really a "by value" problem?
- 8:00 PM Ticket #2370 (StringReplace & StringRegExpReplace Add Offset\The starting position ...) updated by
-
Milestone changed
Automatic ticket cleanup. - 7:05 PM Ticket #3794 (StringRegExp - string passed by value instead by reference?) updated by
-
Owner, Status changed
Fix sent to Jon. Many thanks - 7:04 PM Ticket #2370 (StringReplace & StringRegExpReplace Add Offset\The starting position ...) updated by
-
Status changed
Finally I get a solution. I sent the fix to Jon - 7:03 PM Ticket #2370 (StringReplace & StringRegExpReplace Add Offset\The starting position ...) reopened by
- 7:02 PM Ticket #2870 (AutoIt send key combinations do not work sometimes) closed by
- No Bug
- 7:01 PM Ticket #2870 (AutoIt send key combinations do not work sometimes) updated by
-
Owner, Status changed
- 7:01 PM Ticket #2870 (AutoIt send key combinations do not work sometimes) reopened by
- 12:17 PM Ticket #3793 (Add project explorer and open folder options in scite) closed by
- Rejected: The only standard option in SciTE is the use of a *.session file to save the state of all opened files which will be restored when opening te session file. Other than that there will be no internal extensions build into the standard SciTE. Jos
- 11:17 AM Ticket #2668 (Subclassing issue on CallWindowProc) closed by
- No Bug: I assume that nobody will confirm that I was right so I close it
- 9:00 AM Ticket #3794 (StringRegExp - string passed by value instead by reference?) updated by
-
Version changed
Automatic ticket cleanup. - 8:49 AM Ticket #3794 (StringRegExp - string passed by value instead by reference?) created by
- Script: […] Output: […] The execution time depends directly on …
Nov 28, 2020:
- 6:45 PM Ticket #3793 (Add project explorer and open folder options in scite) created by
- Hi! Would it be possible to add Open folder in File menu. …
Nov 25, 2020:
- 2:55 PM Ticket #2370 (StringReplace & StringRegExpReplace Add Offset\The starting position ...) closed by
- Completed: Added by revision [12451] in version: 3.3.15.4
- 12:19 PM Ticket #2370 (StringReplace & StringRegExpReplace Add Offset\The starting position ...) updated by
- I reopen it as the proposed solution is not working when a special character is included in the replacement string \ . $ | [ ( { * + ? # so I will just modified the StringReplace doc to point to StringRegExpReplace as the solution to use the same implementation will need to scan input string char by char as the present StringReplace implementation does. It is better that the specific pattern of StringRegExpReplace be the user responsability.
Nov 24, 2020:
- 5:10 PM Ticket #3742 (Locate Windows Shell context menu items in an extra menu) updated by
- This is the script that I used. It hides the default menu-items, creates a new sub-menu and new keys that will be visible in the sub-menu. Found it somewhere on the AutoIt forum. I did a quick search, but didn't find the post. Sorry for that. […]
- 3:14 PM Ticket #3790 (CharW() >= 64968 compares with "" as True) updated by
-
Owner, Status changed
Fix sent to Jon the comparison was stop at the first null string now if strings have different size they are taken in account to differentiate the strings insensitive case comparison. BTW the insansitive string comparison always stop at the first nul char. Be carefull !!!
Nov 21, 2020:
- 1:03 PM Ticket #3792 (Map should have a count method) closed by
- Completed
- 12:44 PM Ticket #3792 (Map should have a count method) updated by
- Why don't just use UBound($mMap) it is doing what you need.
Nov 20, 2020:
- 6:00 PM Ticket #3792 (Map should have a count method) updated by
-
Version changed
Automatic ticket cleanup. - 5:22 PM Ticket #3792 (Map should have a count method) created by
- Although it is very easy to get the count with UBound(MapKeys($mMap)), …
Nov 17, 2020:
- 9:32 AM Ticket #3791 (Sort arrow not showing in _ArrayDisplay()) closed by
- Fixed: Fixed by revision [12445] in version: 3.3.15.4
- 8:31 AM Ticket #3791 (Sort arrow not showing in _ArrayDisplay()) updated by
-
Description changed
fix original description badly formatted
Nov 16, 2020:
- 11:29 AM Ticket #3791 (Sort arrow not showing in _ArrayDisplay()) updated by
- The part "Test reproducing the issue" did paste poorly. It can be found on the forum (link at the top of the report) Thanks
- 11:17 AM Ticket #3791 (Sort arrow not showing in _ArrayDisplay()) created by
- Bug described in this link : …
Nov 15, 2020:
- 11:26 PM Ticket #2443 (Name of nested structs) updated by
-
Owner, Status changed
introduce new types tag/endtag to be use in DllStructCreate() DllStruct*Data can be replace by $tStruct.tag.element DllStructGetPtr by $tStruct.tag.element.Ptr() Fiw sent to Jon - 7:38 PM Ticket #3790 (CharW() >= 64968 compares with "" as True) created by
- CharW() >= 64968 compares with "" as True. I think it shouldn't Here a …
Note:
See TracTimeline
for information about the timeline view.
