Timeline



Jul 19, 2022:

12:13 AM Ticket #3857 (DotNet 5/6 Support) updated by Jrdiver
Add Net7 to the list also, though that should be compatible with standard 2.0, net5, and net6.

Jul 10, 2022:

9:03 AM Ticket #3898 (Wrong references in au3.api) closed by Jos
No Bug: Yes the creation is still required as the standard AutoComplete of AutoIt3. Closing this issue as "working as intended". :)

Jul 7, 2022:

5:32 PM Ticket #3891 (DllCall performance optimization) updated by J-Paul Mesnage
Milestone changed
Added by revision [12826] in version: 3.3.16.1
5:04 PM Ticket #3891 (DllCall performance optimization) closed by J-Paul Mesnage
Completed: Added by revision [12824] in version: 3.3.15.6

Jul 3, 2022:

7:38 PM Ticket #3898 (Wrong references in au3.api) updated by J-Paul Mesnage
is the creation of au3.api still needed? I assume Scite Lite is using it?
6:55 PM Ticket #3900 (REGEXPTITLE fails to match) closed by J-Paul Mesnage
Fixed
2:34 PM Ticket #3900 (REGEXPTITLE fails to match) updated by anonymous
Actually, problem is present in 3.3.16.0 version, but it is already fixed in beta version 3.3.16.1-rc2 as it is pointed out to me by pixelsearch in the forum. Thanx everyone.

Jul 2, 2022:

11:09 PM Ticket #3900 (REGEXPTITLE fails to match) updated by J-Paul Mesnage
I don't have access to an english version of Windows but with a french one […] works perfect you can use Au3info an pickup the exact title perhaps the space is not a basic space but a non breaking space
11:05 PM Ticket #3900 (REGEXPTITLE fails to match) updated by J-Paul Mesnage
Description changed
9:11 PM Ticket #3900 (REGEXPTITLE fails to match) created by meanarbez@…
; Open the standard file properties for AutoIt3.exe upfront, ; it's …

Jul 1, 2022:

7:59 PM Ticket #3899 (_GUICtrlListView_ClickItem issue with remote desktop) closed by mLipok
No Bug: This is normal MS Windows API behavior. Take a look on: https://www.autoitscript.com/wiki/FAQ#Why_doesn.27t_my_script_work_on_a_locked_workstation.3F https://www.autoitscript.com/forum/topic/204228-any-mouse-action-in-microsoft-remote-desktop-not-working/?do=findComment&comment=1467163 https://www.autoitscript.com/forum/topic/201285-maintain-active-desktop-after-rdp-disconnect/ btw. Next time ask on the forum before you submit ticket.
5:07 PM Ticket #3898 (Wrong references in au3.api) updated by Jos
JP, Just leave things as they were and don't worry about it. I have worked around this "issue" for the requirement I have and made in such way that the Include from au3.api will be inserted and Jump-to-Func will go to the proper Include file as there is no other option there. :)
11:35 AM Ticket #3899 (_GUICtrlListView_ClickItem issue with remote desktop) updated by anonymous
The issue can be reproduced with a scheduled task that launches the following script: https://gist.github.com/rickupton/16f9a7b445a668c70c61 I'm using a x86 compiled exe of this script.
11:29 AM Ticket #3899 (_GUICtrlListView_ClickItem issue with remote desktop) created by raffaelet@…
I have a scheduled task that uses _GUICtrlListView_ClickItem Working …
8:55 AM Ticket #3898 (Wrong references in au3.api) updated by J-Paul Mesnage
I will check what I can do without disturbing the Doc generation. The doc must point to the main include

Jun 30, 2022:

7:50 AM Ticket #3898 (Wrong references in au3.api) updated by Jos
JP, when you think it is fine to point to another include than the actual include containing the Func, you can close this ticket and it simply means I can't trust the content of au3.api and will have to sort their proper location myself via a script as I ended up doing. I need the exact include file for the Jump-To-Func functionality in SciTE-Lua. ;) Jos
6:21 AM Ticket #3898 (Wrong references in au3.api) updated by J-Paul Mesnage
Hi, *Internals.au3 are meant to be used in several *.au3 so it is an error if only if the *.au3 is not referring a *internals.au3 Can you point out to such cases? basically function description will never point to an *Internals.au3

Jun 29, 2022:

9:09 AM Ticket #3898 (Wrong references in au3.api) updated by Jos
Description changed

Jun 27, 2022:

8:04 PM Ticket #3898 (Wrong references in au3.api) created by Jos
This is a list that contains a reference to the wrong include files, I …

Jun 24, 2022:

3:24 PM Ticket #3896 (Single non-ANSI character failure in BinaryToString) updated by anonymous
Thanks, I expected $single_r_hacek = 0x99C5 to return a Binary, but Binary() is required to do so: $single_r_hacek = 0x99C5 ConsoleWrite(VarGetType($single_r_hacek)) ; shows Int32, 4 bytes, final 00 marking EOT, hence StringLen returned 3. $single_r_hacek = Binary("0xC599") ConsoleWrite(VarGetType($single_r_hacek)) ; shows Binary $UTF8_single_r_hacek = BinaryToString($single_r_hacek, 4) ConsoleWrite(StringLen($UTF8_single_r_hacek)) ; correct output 1
2:31 PM Ticket #3897 (incorrect arithmatic with Hex notation) closed by J-Paul Mesnage
Duplicate: fixed with #3876 for 3.3.16.1
1:27 PM Ticket #3897 (incorrect arithmatic with Hex notation) created by anonymous
When you try to subtract using hex notation, the values end up being …
11:39 AM Ticket #3896 (Single non-ANSI character failure in BinaryToString) updated by jchd18
You were trying to feed UTF8 hex to wrong function(s). […]

Jun 22, 2022:

9:20 AM Ticket #3895 (Allow string() to return first class object name) updated by J-Paul Mesnage
Fix sent to Jon
9:18 AM Ticket #3896 (Single non-ANSI character failure in BinaryToString) closed by J-Paul Mesnage
No Bug: Hi, your script is wrong as the $single_r_hacek is not a "Binary" when use in BinaryToString() at least it must be StringToBinary(ChrW(0x99C5)) after that the write to file have to be changed too if with your script try triple you get wrong result too.

Jun 21, 2022:

1:58 PM Bug in BinaryToString for single non-ANSI character (correct file).au3 attached to Ticket #3896 by anonymous
1:57 PM Bug in BinaryToString for single non-ANSI character.2.au3 attached to Ticket #3896 by anonymous
1:56 PM Ticket #3896 (Single non-ANSI character failure in BinaryToString) updated by anonymous
#cs ---------------------------------------------------------------------------- AutoIt Version: 3.3.16.0 Author: myName Script Function: Template AutoIt script. #ce ---------------------------------------------------------------------------- ; Script Start - Add your code below here ; Bug in BinaryToString with single non-ANSI character $single_r_hacek = 0x99C5 ; LE UTF-code C599 for ř U+0159 LATIN SMALL LETTER R WITH CARON, NOT in ANSI $UTF8_single_r_hacek = BinaryToString($single_r_hacek, 4) ; convert to UTF-8 string ConsoleWrite(StringLen($UTF8_single_r_hacek)) ; gives WRONG output 3 instead of 1 MsgBox(0, "", $UTF8_single_r_hacek) ; correct ř output FileWrite("single_test.txt", $UTF8_single_r_hacek) ; WRONG 0xC5990000 in file $binfile = FileOpen("single_test_bin.txt", 16 + 2) FileWrite($binfile, $UTF8_single_r_hacek) ; WRONG 0x720000 in binary file (ANSI/ASCII r) FileClose($binfile) $double_r_hacek = 0x99C599C5 $UTF8_double_r_hacek = BinaryToString($double_r_hacek, 4) ; convert to UTF-8 string ConsoleWrite(StringLen($UTF8_double_r_hacek)) ; gives correct output 2 MsgBox(0, "", $UTF8_double_r_hacek) ; correct řř output FileWrite("double_test.txt", $UTF8_double_r_hacek) ; correct 0xC599C599 in file $binfile = FileOpen("double_test_bin.txt", 16 + 2) FileWrite($binfile, $UTF8_double_r_hacek) ; WRONG 0x7272 in binary file FileClose($binfile)
1:27 PM Bug in BinaryToString for single non-ANSI character.au3 attached to Ticket #3896 by anonymous
1:23 PM Ticket #3896 (Single non-ANSI character failure in BinaryToString) created by anonymous
Single character failure in BinaryToString. BinaryToString returns …
Note: See TracTimeline for information about the timeline view.