PeterPanettone 171 Posted Wednesday at 06:00 PM 1 minute ago, Lars Fosdal said: I thought everyone had dropped Kaspersky by now. Fortunately, this is not the case. Long live Kaspersky! Share this post Link to post
ToddFrankson 12 Posted Wednesday at 06:06 PM Can we debug on IOS yet????? Share this post Link to post
EugeneK 29 Posted Wednesday at 06:07 PM I actually like this one more than couple of previous releases based on new features that I will use. Conditional if operator is nice, 'is not', 'not in' as well, new generic constraints, WinRT APIs refresh, DUnitX refresh, UIAutomation support. 1 Share this post Link to post
Anders Melander 2093 Posted Wednesday at 06:23 PM 6 minutes ago, Lars Fosdal said: I thought everyone had dropped Kaspersky by now. Nah. Although I have no love for Russia, I have no beef with Kaspersky (and these days I trust the US just as little) and I've found that it's the one that works best for me. I'm using the free version, FWIW. Share this post Link to post
Patrick PREMARTIN 152 Posted Wednesday at 06:54 PM 47 minutes ago, ToddFrankson said: Can we debug on IOS yet????? still not 😞 Share this post Link to post
david berneda 51 Posted Wednesday at 07:57 PM 3 hours ago, PeterPanettone said: I like the NameOf(T) compiler (magic) function. Do you think on using it? It can be useful to people that like to do debug logs. Share this post Link to post
Mark NZ 10 Posted Wednesday at 08:00 PM 2 hours ago, Patrick PREMARTIN said: Please open an issue on https://qp.embarcadero.com and say what version of Kaspersky you use. I've tried this with AV tools a couple of times in the past, it was a waste of time, Embarcadero wasn't interested. Share this post Link to post
PeterPanettone 171 Posted Wednesday at 08:02 PM 4 minutes ago, david berneda said: Do you think on using it? It can be useful to people that like to do debug logs. I am using CodeSite. Share this post Link to post
Kryvich 178 Posted Wednesday at 08:24 PM 2 hours ago, Anders Melander said: Nah. Although I have no love for Russia, I have no beef with Kaspersky (and these days I trust the US just as little) and I've found that it's the one that works best for me. I'm using the free version, FWIW. Last time I tried it, it tried to install its root certificate into Windows. Share this post Link to post
Anders Melander 2093 Posted Wednesday at 08:31 PM 5 minutes ago, Kryvich said: It tried to install its root certificate into Windows. Is that a problem? If so, why? Share this post Link to post
ToddFrankson 12 Posted Wednesday at 11:52 PM 4 hours ago, Patrick PREMARTIN said: still not 😞 unreal! Too busy adding AI that's not needed, and web stencils. DEBUGGING IS A BARE BASIC MINIMUM FOR DEVELOPMENT. 1 1 Share this post Link to post
pyscripter 833 Posted yesterday at 01:38 AM (edited) There have been some significant improvements to TJSONSerializer. The following have been added: TJsonValueSerialization = (Always, ExcludeDefault, ExcludeSpecial, ExcludeAll); TJsonReferenceHandling = (None, Preserve, IgnoreCycles, ErrorOnCycles); Also the following related issues I had submitted have been fixed. TJSONSerializer support for Null value and default value handling. - RAD Studio Service - Jira Service Management TJsonObjectWriter,Container should be declared as TJSONAncestor - RAD Studio Service - Jira Service Management TJsonDictionaryConverter cannot serialize TDictionary descendent classes - RAD Studio Service - Jira Service Management Allow empty keys in JSON objects - RAD Studio Service - Jira Service Management In addition the a couple of my older issues have been addressed: https://quality.embarcadero.com/browse/RSP-41987 TDockTabSet does not DPI scale the images displayed - RAD Studio Service - Jira Service Management Note that, for some reason, the list of issues fixed in New features and customer reported issues fixed in RAD Studio 13.0 - RAD Studio does not include some of the above fixed issues. So the list does not appear to be comprehensive. Edited yesterday at 06:38 AM by pyscripter 3 Share this post Link to post
Vincent Parrett 879 Posted yesterday at 04:13 AM 7 hours ago, Anders Melander said: 7 hours ago, Kryvich said: It tried to install its root certificate into Windows. Is that a problem? If so, why? Yes - applications should not be installing root certificates into windows - the only scenario where I can see this being needed is when using self signed code signing certificates - which is happening more an more in enterprises for internal applications/scripts - especially ones where internet access is limited. 2 Share this post Link to post
Anders Melander 2093 Posted yesterday at 07:28 AM 3 hours ago, Vincent Parrett said: Yes - applications should not be installing root certificates into windows - the only scenario where I can see this being needed is when using self signed code signing certificates - which is happening more an more in enterprises for internal applications/scripts - especially ones where internet access is limited. A bit of Googling tells me that the purpose of the certificate is to enable it to scan encrypted HTTPS traffic. Share this post Link to post
David Heffernan 2472 Posted yesterday at 01:16 PM (edited) I was interested in the new AI chatbot that Emba are offering, which was announced in the webinar yesterday. It's at: https://www.embarcadero.com/radaicompanion The concept is that it is an AI bot that has been tweaked to target Emba products, Delphi, C++Builder etc. Anyway, after a recent question on SO I asked: Does the VCL have a TagObject property? The answer was a little disappointing: Yes, the VCL does have a TagObject property. It is available in the FMX.Types.TFmxObject class, which is part of the FireMonkey (FMX) framework, not the VCL. The TagObject property allows you to store any TObject value. I mean it gets there in the second sentence, but starting with Yes is poor. Classic AI people pleaser stuff! I then gave it some more recent SO questions and I have to say it did a good job. I'm quite interested in this concept though, and we've been working on something similar for our product because it's too niche for standard bots to know how to answer tricky questions. Edited yesterday at 01:22 PM by David Heffernan 2 Share this post Link to post
Die Holländer 93 Posted yesterday at 01:44 PM If FMX is mentioned in the prompt: Check if FMX or VCL has a TagObject property. Provide Feedback FMX has a TagObject property. Specifically, the FMX.Types.TFmxObject class includes a TagObject property, which allows you to store any TObject value. VCL, on the other hand, does not have a TagObject property. Instead, VCL components typically have a Tag property, which is of type NativeInt and is used to store integer values. For more information on the TagObject property in FMX, you can refer to the official documentation: FMX.Types.TFmxObject.TagObject. Share this post Link to post
DelphiUdIT 261 Posted yesterday at 02:48 PM 1 hour ago, David Heffernan said: Does the VCL have a TagObject property? The answer was a little disappointing: Yes, the VCL does have a TagObject property. It is available in the FMX.Types.TFmxObject class, which is part of the FireMonkey (FMX) framework, not the VCL. The TagObject property allows you to store any TObject value. Now the answer is right. It's improving Share this post Link to post
David Heffernan 2472 Posted yesterday at 03:00 PM 12 minutes ago, DelphiUdIT said: Now the answer is right. It's improving I corrected it at the time. I wonder what the session management is for this bot. Share this post Link to post
Rollo62 605 Posted yesterday at 03:06 PM (edited) 1 hour ago, David Heffernan said: I was interested in the new AI chatbot that Emba are offering, Good question, I've tried this "How can I debug iOS with Florence?" As far as I know, debugging iOS ist still broken, which I can find also in the release notes for example If this compainion was trained on the current data, then its a little off here. So I wonderwhat they used for training really, I hope also some insights from Jira or the like. Edited yesterday at 03:06 PM by Rollo62 Share this post Link to post
Lajos Juhász 330 Posted yesterday at 03:42 PM During the release webinar Marco has mentioned that it was trained among other informations using the Delphi 13 docwiki. Share this post Link to post
Rollo62 605 Posted yesterday at 04:06 PM (edited) 24 minutes ago, Lajos Juhász said: During the release webinar Marco has mentioned that it was trained among other informations using the Delphi 13 docwiki. Ok, it has kindof strange infos too, like bugfix would be possible somehow. https://docwiki.embarcadero.com/RADStudio/Florence/en/Release_Notes#Launching_iOS_fails_with_PAServer_22 it doesn't say here either very clearly https://docwiki.embarcadero.com/PlatformStatus/en/Main_Page#Supported_Platforms_and_Operating_Systems Perhaps its not clearly noted, that there were any issues. For example at Delphi 12 it clearly stated that its not able to debug on iOS 17 devices, https://docwiki.embarcadero.com/PlatformStatus/en/Main_Page#cite_note-iOS17-2 Strange, why did they removed this note in Delphi 13? Maybe they intend to fix this in an early patch. Edited yesterday at 04:07 PM by Rollo62 Share this post Link to post
mvanrijnen 130 Posted 23 hours ago People tried the codecompletion. error insight etc, with a big project? Share this post Link to post
Uwe Raabe 2181 Posted 19 hours ago 3 hours ago, mvanrijnen said: with a big project Define big. 1 Share this post Link to post
Attila Kovacs 683 Posted 19 hours ago Does the code formatter support any of the new syntaxes, or has it been removed completely? Share this post Link to post
Attila Kovacs 683 Posted 19 hours ago On 9/10/2025 at 6:50 PM, PeterPanettone said: I like the NameOf(T) compiler (magic) function. it only took 10 years 1 Share this post Link to post