gedcom-ts 2026.6.2 → 2026.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/README.md +3 -3
- package/dist/booklet.cjs +1 -1
- package/dist/booklet.mjs +1 -1
- package/dist/export/buildGedzipBlob.d.ts +1 -2
- package/dist/import/extractZipContent.d.ts +1 -2
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -2
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ A graphical demo showcasing the public API (import a `.ged` / `.zip`, browse the
|
|
|
28
28
|
## Package
|
|
29
29
|
|
|
30
30
|
- NPM: [gedcom-ts](https://www.npmjs.com/package/gedcom-ts)
|
|
31
|
-
- Current release **`2026.6.
|
|
31
|
+
- Current release **`2026.6.3`** — GEDZIP via fflate uniquement. Version format **CalVer** `AAAA.M.micro` (e.g. `2026.6.3` = June 2026, micro release). See [CHANGELOG.md](CHANGELOG.md).
|
|
32
32
|
- Entry points:
|
|
33
33
|
- **`gedcom-ts`** — import, model, edit layer, export, geocoding
|
|
34
34
|
- **`gedcom-ts/booklet`** — PDF livret (`pdf-lib` en peerDependency, chargé depuis `node_modules`)
|
|
@@ -552,7 +552,7 @@ function exportGed(readGed: ReadGed) {
|
|
|
552
552
|
|
|
553
553
|
#### `ExportGedzipFile`
|
|
554
554
|
|
|
555
|
-
Writes a `.zip` (GEDZIP) bundling the GEDCOM and all attached `MultimediaFile` payloads.
|
|
555
|
+
Writes a `.zip` (GEDZIP) bundling the GEDCOM and all attached `MultimediaFile` payloads. Built with **fflate** (`zip` async, level 9).
|
|
556
556
|
|
|
557
557
|
```ts
|
|
558
558
|
import { ExportGedzipFile, Person } from "gedcom-ts";
|
|
@@ -932,7 +932,7 @@ const primary = selectPrimaryNameVariant(person.nameVariants);
|
|
|
932
932
|
|
|
933
933
|
#### `GEDCOM_LIBRARY_VERSION`
|
|
934
934
|
|
|
935
|
-
CalVer string written in exported `HEAD`.`SOUR`.`VERS` (same value as the npm package version, e.g. `2026.6.
|
|
935
|
+
CalVer string written in exported `HEAD`.`SOUR`.`VERS` (same value as the npm package version, e.g. `2026.6.3`).
|
|
936
936
|
|
|
937
937
|
```ts
|
|
938
938
|
import { GEDCOM_LIBRARY_VERSION } from "gedcom-ts";
|