exiftool-vendored 31.0.0 → 31.2.0
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 +12 -1
- package/dist/GPS.d.ts +1 -1
- package/dist/IPTCApplicationRecordTags.d.ts +1 -1
- package/dist/Tags.d.ts +2661 -551
- package/dist/Tags.js +20 -19
- package/dist/Tags.js.map +1 -1
- package/dist/Timezones.js +1 -1
- package/dist/Timezones.js.map +1 -1
- package/dist/WriteTags.d.ts +10 -5
- package/package.json +21 -23
package/CHANGELOG.md
CHANGED
|
@@ -25,10 +25,21 @@ vendored versions of ExifTool match the version that they vendor.
|
|
|
25
25
|
|
|
26
26
|
## Version history
|
|
27
27
|
|
|
28
|
+
### v31.2.0
|
|
29
|
+
|
|
30
|
+
- 🌱 Upgraded ExifTool to version [13.40](https://exiftool.org/history.html#13.40).
|
|
31
|
+
- 📦 Added Node.js v25 to the build matrix
|
|
32
|
+
|
|
33
|
+
### v31.1.0
|
|
34
|
+
|
|
35
|
+
- 🌱 Upgraded ExifTool to version [13.38](https://exiftool.org/history.html#13.38).
|
|
36
|
+
- ✨ Rebuilt `Tags.ts`: fields that live in multiple groups **are now included in every group**. Prior versions would pick the first-seen group for these fields, and that was nondeterministic between versions.
|
|
37
|
+
- 📦 `TagMetadata.json` keys are sorted to minimize later per-version diffs
|
|
38
|
+
- 📦 (did you know that `File:Comment` was writable? TIL!)
|
|
39
|
+
|
|
28
40
|
### v31.0.0
|
|
29
41
|
|
|
30
42
|
- 💔 Rebuilt `Tags.ts` with new exiftool v13.37 and additional newer exemplar test images. Several prior fields (that hopefully no one is using) were dropped, and new fields were added (see the git diff of Tags.ts from the prior release for details)
|
|
31
|
-
|
|
32
43
|
- 🌱 Upgraded ExifTool to version [13.37](https://exiftool.org/history.html#13.37).
|
|
33
44
|
|
|
34
45
|
### v30.5.0
|
package/dist/GPS.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export type GpsLocationTags = {
|
|
|
9
9
|
GPSPosition?: string;
|
|
10
10
|
GeolocationPosition?: string;
|
|
11
11
|
};
|
|
12
|
-
export declare const GpsLocationTagNames: StrEnum<"
|
|
12
|
+
export declare const GpsLocationTagNames: StrEnum<"GPSLatitude" | "GPSLatitudeRef" | "GPSLongitude" | "GPSLongitudeRef" | "GPSPosition" | "GeolocationPosition">;
|
|
13
13
|
export type GpsLocationTagName = StrEnumKeys<typeof GpsLocationTagNames>;
|
|
14
14
|
export interface GpsParseResult {
|
|
15
15
|
result: GpsLocationTags;
|
|
@@ -80,5 +80,5 @@ export interface IPTCApplicationRecordTags {
|
|
|
80
80
|
DocumentHistory?: string;
|
|
81
81
|
ExifCameraInfo?: string;
|
|
82
82
|
}
|
|
83
|
-
export declare const IPTCApplicationRecordTagNames: StrEnum<"ApplicationRecordVersion" | "ObjectTypeReference" | "ObjectAttributeReference" | "ObjectName" | "EditStatus" | "EditorialUpDate" | "Urgency" | "SubjectReference" | "
|
|
83
|
+
export declare const IPTCApplicationRecordTagNames: StrEnum<"Category" | "ApplicationRecordVersion" | "ObjectTypeReference" | "ObjectAttributeReference" | "ObjectName" | "EditStatus" | "EditorialUpDate" | "Urgency" | "SubjectReference" | "SupplementalCategories" | "FixtureIdentifier" | "ContentLocationCode" | "ContentLocationName" | "ReleaseDate" | "ReleaseTime" | "ExpirationDate" | "ExpirationTime" | "SpecialInstructions" | "ActionAdvised" | "ReferenceService" | "ReferenceDate" | "ReferenceNumber" | "OriginatingProgram" | "ProgramVersion" | "ObjectCycle" | "By-line" | "By-lineTitle" | "City" | "Sub-location" | "Province-State" | "Country-PrimaryLocationCode" | "Country-PrimaryLocationName" | "OriginalTransmissionReference" | "Headline" | "Credit" | "Source" | "CopyrightNotice" | "Contact" | "Caption-Abstract" | "LocalCaption" | "Writer-Editor" | "ImageType" | "ImageOrientation" | "LanguageIdentifier" | "AudioType" | "AudioSamplingRate" | "AudioSamplingResolution" | "AudioDuration" | "AudioOutcue" | "JobID" | "MasterDocumentID" | "ShortDocumentID" | "UniqueDocumentID" | "OwnerID" | "ObjectPreviewFileFormat" | "ObjectPreviewFileVersion" | "Prefs" | "ClassifyState" | "SimilarityIndex" | "DocumentNotes" | "DocumentHistory" | "ExifCameraInfo">;
|
|
84
84
|
export type IPTCApplicationRecordTagName = StrEnumKeys<typeof IPTCApplicationRecordTagNames>;
|