1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
|
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
|
# 7.3 release version notes
## New libraries
* [Entity](wiki:Entity) and [EntityManager](wiki:EntityManager)
## Removed libraries
These libraries are still available in the 5.6 branch but will not receive any updates.
* Beacon
* BubbleBabble
* Updater
* XML\_RPC\_Server
* Karto (all features are now in Karto\\Point and Karto\\Set)
## Deprecated libraries
These libraries might be removed in version 7.4:
* SkrivLite (migrate to MarkDown)
## Renamed libraries
* Karto\_Point -> Karto\\Point
* Karto\_Point\_Set -> Karto\\Set
* Image -> Graphics\\Image
* Image\_Blob -> Graphics\\Blob
* Image\_EXIF -> Graphics\\EXIF
* QRCode -> Graphics\\QRCode
* SVGPlot -> Graphics\\SVG\\Plot
* SVGPie -> Graphics\\SVG\\Pie
* DB -> DB\\DB
* DB\_SQLite3 -> DB\\SQLite3
* ODSWriter -> Office\\Calc\\Writer
## API changes
### DB
* `delete`, `count` and `test` methods don't accept the second argument to be empty anymore
### DB\SQLite3
* `__construct` is no longer specific to the class, use the same arguments as `DB::__construct`
|