Skip to content

Commit e686af7

Browse files
committed
update README.md
1 parent 57faa91 commit e686af7

File tree

1 file changed

+44
-8
lines changed

1 file changed

+44
-8
lines changed

README.md

Lines changed: 44 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,42 @@ Example of app made with Alcinoe
1919
<img src="https://github.com/MagicFoundation/Alcinoe/blob/master/References/DocImages/youtube_kiskis2.jpg?raw=true" alt="KisKis" />
2020
</a>
2121

22+
23+
Embarcadero Quality Reports
24+
---------------------------
25+
26+
Please vote for the resolution of these quality reports. The
27+
lack of resolution on these issues from Embarcadero has compelled
28+
us to patch the original Delphi source files:
29+
30+
* [Project option to define where to look/create the LaunchScreen.TemplateiOS directory](https://quality.embarcadero.com/browse/RSP-33503)
31+
* [Support for the new Android Splash Screen standard](https://quality.embarcadero.com/browse/RSP-39331)
32+
* [for android compilation, need to use aapt2 instead of aapt](https://quality.embarcadero.com/browse/RSP-27606)
33+
* [Their is no propagation of mouse event under Firemonkey](https://quality.embarcadero.com/browse/RSP-24397)
34+
* [BeginUpdate/Endupdate block with add or remove of child objects : misconception](https://quality.embarcadero.com/browse/RSP-21013)
35+
* [The width and height of a TContext3D object must be defined as single-precision floating-point numbers, not as integers](https://quality.embarcadero.com/browse/RSP-41516)
36+
* [TTextLayout.PositionAtPoint / TTextLayoutD2D.DoPositionAtPoint totally broken in Alexandria](https://quality.embarcadero.com/browse/RSP-39734)
37+
* [Regression in Alexandria: FMX.StrokeBuilder.pas Revamp Leads to TARC Drawing Issues](https://quality.embarcadero.com/browse/RSP-41618)
38+
* [GL_TEXTURE_EXTERNAL_OES not supported](https://quality.embarcadero.com/browse/RSP-16830)
39+
* [Make CanvasHelper of TCanvasGpu public](https://quality.embarcadero.com/browse/RSP-18797)
40+
* [Make that TTexture can define a material (GLSL shader) to use](https://quality.embarcadero.com/browse/RSP-23501)
41+
* [On iOS we need to pass options: PNSDictionary with the message TApplicationEvent.FinishedLaunching](https://quality.embarcadero.com/browse/RSP-40351)
42+
* [AVPlayerItem miss the function addOutput](https://quality.embarcadero.com/browse/RSP-16853)
43+
* [CLVisit is missing from the implementation of CLLocationManager](https://quality.embarcadero.com/browse/RSP-18621)
44+
* [Miss kCIInputImageKey in iOSapi.CoreImage.pas](https://quality.embarcadero.com/browse/RSP-19878)
45+
* [Miss some definition in IOSapi.Security](https://quality.embarcadero.com/browse/RSP-20279)
46+
* [Effect ProcessTexture is not working and function TFilter.InputTexture: TTexture do unecessary work](https://quality.embarcadero.com/browse/RSP-20825)
47+
* [TVirtualKeyboardAndroid.GetVirtualKeyboardState not accurate](https://quality.embarcadero.com/browse/RSP-24737)
48+
* [Add NSPersonNameComponents in iOSapi.Foundation.pas](https://quality.embarcadero.com/browse/RSP-28096)
49+
* [FilterServerSupportFunctionProc WinApi badly converted in Delphi](https://quality.embarcadero.com/browse/RSP-33754)
50+
* [Comparison of 2 interfaces result in bad behavior in TCommonCustomForm.SetHovered and similar](https://quality.embarcadero.com/browse/RSP-36612)
51+
* [In android, TFormRender must use JChoreographer_FrameCallback not JRunnable](https://quality.embarcadero.com/browse/RSP-38660)
52+
* [Need JNotificationClass.AUDIO_ATTRIBUTES_DEFAULT and JNotificationChannel.setSound](https://quality.embarcadero.com/browse/RSP-39511)
53+
* [Declaration of JLocationListener miss somes methods](https://quality.embarcadero.com/browse/RSP-41343)
54+
* [Miss CLLocationManager.accuracyAuthorization in iOSapi.CoreLocation.pas](https://quality.embarcadero.com/browse/RSP-41352)
55+
* [Miss constant kCLLocationAccuracyReduced in iOSapi.CoreLocation.pas](https://quality.embarcadero.com/browse/RSP-41388)
56+
* [iOS/OSX: Declaration for CLRegion.initCircularRegionWithCenter is incorrect](https://quality.embarcadero.com/browse/RSP-15717)
57+
2258

2359
Install Alcinoe
2460
---------------
@@ -385,14 +421,14 @@ Learn more at [{alcinoe}\Demos\ALFmxFilterEffects](https://github.com/MagicFound
385421
Json Parser
386422
-----------
387423

388-
TALJSONDocumentA is a Delphi parser/writer for JSON/BSON
424+
TALJSONDocument is a Delphi parser/writer for JSON/BSON
389425
data formats. It supports both DOM and SAX parsers. (Note
390426
that a better name for SAX could be SAJ for Simple API for
391427
JSON instead of Simple API for XML, but as the concept of
392-
SAX is well-known, I will keep this name.) TALJSONDocumentA
428+
SAX is well-known, I will keep this name.) TALJSONDocument
393429
also supports BSON format and uses a syntax similar to
394-
TALXMLDocument/TXMLDocument. Additionally, TALJSONDocumentA
395-
can export Json/Bson data to TALStringListA.
430+
TALXMLDocument/TXMLDocument. Additionally, TALJSONDocument
431+
can export Json/Bson data to TALStringList.
396432

397433
Example :
398434

@@ -513,16 +549,16 @@ poll the server for a reply. Learn more at
513549
Fast TStringList
514550
----------------
515551

516-
TALStringListA works the same as Delphi's TStringList,
552+
TALStringList works the same as Delphi's TStringList,
517553
except that it allows you to search for a name=value
518554
using a quicksort algorithm when the list is sorted.
519-
Additionally, TALStringListA uses a locale-independent
555+
Additionally, TALStringList uses a locale-independent
520556
algorithm (based on the 8-bit ordinal value of each
521557
character) instead of the AnsiCompareText and
522558
AnsiCompareStr used by Delphi's TStringList. As a
523-
result, sorting in TALStringListA is up to 10 times
559+
result, sorting in TALStringList is up to 10 times
524560
faster than in Delphi's TStringList. Furthermore,
525-
TALStringListA is not a Unicode TStringList, but a 100%
561+
TALStringList is not a Unicode TStringList, but a 100%
526562
Ansi StringList. You can start exploring this feature
527563
with the demo located at
528564
[{alcinoe}\Demos\ALSortedListBenchmark](https://github.com/MagicFoundation/Alcinoe/tree/master/Demos/ALSortedListBenchmark)

0 commit comments

Comments
 (0)