Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 11/21/19 in Posts

  1. See https://www.embarcadero.com/products/rad-studio/whats-new-in-10-3-rio Most important new features: Delphi Android 64-bit support iOS 13 and macOS Catalina (Delphi) Support RAD Server Docker Deployment Enterprise Connectors in Enterprise & Architect Edition see http://docwiki.embarcadero.com/RADStudio/Rio/en/10.3_Rio_-_Release_3 for details. List of fixed Bugs: http://docwiki.embarcadero.com/RADStudio/Rio/en/New_features_and_customer_reported_issues_fixed_in_RAD_Studio_10.3.3 Download and general information: https://www.embarcadero.com/products/rad-studio/whats-new-in-10-3-rio
  2. Dalija Prasnikar

    Delphi 10.3.3 has been released

    https://www.embarcadero.com/products/rad-studio/whats-new-in-10-3-rio https://dalijap.blogspot.com/2019/11/rio-1033-update.html
  3. Uwe Raabe

    RAD Studio 10.3.3 now available

    AFAIK the CE will always be the latest available release. So if you get a brand new CE today you should get 10.3.3 - at least that is what the Feature Matrix suggests.
  4. Darian Miller

    RAD Studio 10.3.3 now available

    Ah yes, corrected
  5. Darian Miller

    Delphi 10.3.3 has been released

    Plus an update to no longer require users to restart their app when changing from light to dark themes on iOS: https://cc.embarcadero.com/item/30899
  6. Rollo62

    HTML Library limited offer

    @Alexander Sviridenkov Have you considered to get a special HtmlComponents forum space here in DP ? Maybe you can check with Daniel about what the conditions would be to get such space. I think this is a great place for technical discussions.
  7. Lars Fosdal

    RAD Studio 10.3.3 now available

    That makes me assume there will be no new Community Edition until 10.4.0 I was wrong about this.
  8. Stefan Glienke

    Default for published property

    The TypeInfo uses the value $80000000 to indicate that this property has no default value. That unfortunately overlaps with Low(Integer). You have to use the stored keyword: property MinValue: Integer read FMinValue write SetMinValue stored IsMinValueStored; function TMyComponent.IsMinValueStored: Boolean; begin Result := FMinValue <> Low(Integer) end;
  9. Stefan Glienke

    DUnitX and testing MemoryLeaks

    Use LeakCheck - there is even a blog post how to. Not having done anything on something that just works does not mean abandoned. If something does not work, let him know. FastMM is good to report memory leaks on an entire application run but not suited for unit tests memleak reporting - that is why LeakCheck was written plus having something that works cross platform.
×