exiftool-vendored 16.5.0 → 17.0.1
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 +16 -1
- package/RELEASE.md +4 -3
- package/dist/Tags.d.ts +30 -30
- package/dist/Timezones.d.ts +5 -2
- package/dist/Timezones.js +8 -3
- package/dist/Timezones.js.map +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -25,7 +25,22 @@ vendored versions of ExifTool match the version that they vendor.
|
|
|
25
25
|
|
|
26
26
|
## Version history
|
|
27
27
|
|
|
28
|
-
###
|
|
28
|
+
### v17.0.1
|
|
29
|
+
|
|
30
|
+
- 🐞 `reasonableTzOffsetMinutes()`, `extractOffset()`, and
|
|
31
|
+
`offsetMinutesToZoneName()` handle `UnsetZone` properly. This shouldn't normally come into play, as this would require serialization of the unset timezone, but... why not, eh?
|
|
32
|
+
|
|
33
|
+
### v17.0.0
|
|
34
|
+
|
|
35
|
+
- 💔 Luxon has a [breaking change](https://moment.github.io/luxon/#/upgrading?id=_2x-to-30). Please verify that date parsing and zone assignments work as expected.
|
|
36
|
+
|
|
37
|
+
- 🌱 ExifTool upgraded to [v12.43](https://exiftool.org/history.html#v12.43).
|
|
38
|
+
|
|
39
|
+
- 🐞 `UnsetZone` now uses [`Info.normalizeZone()`](https://moment.github.io/luxon/api-docs/index.html#info).
|
|
40
|
+
|
|
41
|
+
- 📦 Updated dependencies
|
|
42
|
+
|
|
43
|
+
### v16.5.1
|
|
29
44
|
|
|
30
45
|
- 🌱 ExifTool upgraded to [v12.42](https://exiftool.org/history.html#v12.42).
|
|
31
46
|
|
package/RELEASE.md
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|
3. On Windows, in `../exiftool-vendored.exe`:
|
|
15
15
|
|
|
16
|
-
1. `npx ncu -u && yarn install && ./update.sh && yarn test`
|
|
16
|
+
1. `npx ncu -u --packageFile package.json && yarn install && ./update.sh && yarn test`
|
|
17
17
|
1. Verify diffs are in order, and commit
|
|
18
18
|
1. `npx release-it`
|
|
19
19
|
|
|
@@ -21,12 +21,13 @@
|
|
|
21
21
|
|
|
22
22
|
1. `npx ncu -u`
|
|
23
23
|
1. `yarn install`
|
|
24
|
-
1. `yarn mktags ../test-images` # < assumes
|
|
24
|
+
1. `yarn mktags ../test-images` # < assumes ``../test-images`` has the full ExifTool sample image suite
|
|
25
25
|
1. `yarn prettier`
|
|
26
26
|
1. `yarn lint`
|
|
27
27
|
1. `yarn docs`
|
|
28
28
|
1. Verify docs were rebuilt successfully at <http://localhost:3000/index.html>
|
|
29
29
|
1. `yarn test`
|
|
30
|
-
1. Update the [CHANGELOG.md](https://github.com/photostructure/exiftool-vendored.js/blob/main/CHANGELOG.md)
|
|
31
30
|
1. Verify diffs are reasonable, and `git commit`
|
|
31
|
+
1. Verify [](https://github.com/photostructure/exiftool-vendored.js/actions/workflows/node.js.yml)
|
|
32
|
+
1. Update the [CHANGELOG.md](https://github.com/photostructure/exiftool-vendored.js/blob/main/CHANGELOG.md)
|
|
32
33
|
1. `npx release-it`
|
package/dist/Tags.d.ts
CHANGED
|
@@ -419,7 +419,7 @@ export interface APP12Tags {
|
|
|
419
419
|
Rgain?: number;
|
|
420
420
|
/** ☆☆☆☆ Example: 9 */
|
|
421
421
|
Roff?: number;
|
|
422
|
-
/** ☆☆☆☆ ✔ Example: "8259,0,14bfe,a184,11987,1e4f1,0,7c0000,40b60000,56a05e6,
|
|
422
|
+
/** ☆☆☆☆ ✔ Example: "8259,0,14bfe,a184,11987,1e4f1,0,7c0000,40b60000,56a05e6,6…0038,d7" */
|
|
423
423
|
S0?: string;
|
|
424
424
|
/** ☆☆☆☆ ✔ Example: "#00000001" */
|
|
425
425
|
SerialNumber?: string;
|
|
@@ -499,7 +499,7 @@ export interface EXIFTags {
|
|
|
499
499
|
CFAPlaneColor?: string;
|
|
500
500
|
/** ☆☆☆☆ ✔ Example: "2 2" */
|
|
501
501
|
CFARepeatPatternDim?: string;
|
|
502
|
-
/** ☆☆☆☆ ✔ Example: "22 -128 0 0 0 128 128 256 384 384 512 640 1152 1152 1152
|
|
502
|
+
/** ☆☆☆☆ ✔ Example: "22 -128 0 0 0 128 128 256 384 384 512 640 1152 1152 1152 …0 0 0 0" */
|
|
503
503
|
ChromaticAberrationCorrParams?: string;
|
|
504
504
|
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
505
505
|
ChromaticAberrationCorrection?: string;
|
|
@@ -1203,11 +1203,11 @@ export interface QuickTimeTags {
|
|
|
1203
1203
|
VideoFrameRate?: number;
|
|
1204
1204
|
}
|
|
1205
1205
|
export interface RAFTags {
|
|
1206
|
-
/** ☆☆☆☆ ✔ Example: "294.2 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 6.8e-05 0.
|
|
1206
|
+
/** ☆☆☆☆ ✔ Example: "294.2 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 6.8e-05 0.000….001464" */
|
|
1207
1207
|
ChromaticAberrationParams?: string;
|
|
1208
1208
|
/** ☆☆☆☆ ✔ Example: "12 12 12 12" */
|
|
1209
1209
|
FujiLayout?: string;
|
|
1210
|
-
/** ☆☆☆☆ ✔ Example: "267.4545455 0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 0 0 0 0
|
|
1210
|
+
/** ☆☆☆☆ ✔ Example: "267.4545455 0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 0 0 0…5 0.488" */
|
|
1211
1211
|
GeometricDistortionParams?: string;
|
|
1212
1212
|
/** ☆☆☆☆ ✔ Example: -1.7 */
|
|
1213
1213
|
RawExposureBias?: number;
|
|
@@ -1221,7 +1221,7 @@ export interface RAFTags {
|
|
|
1221
1221
|
RawImageFullSize?: string;
|
|
1222
1222
|
/** ☆☆☆☆ ✔ Example: 5120 */
|
|
1223
1223
|
RawImageFullWidth?: number;
|
|
1224
|
-
/** ☆☆☆☆ ✔ Example: "267.4545455 0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 100
|
|
1224
|
+
/** ☆☆☆☆ ✔ Example: "267.4545455 0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 100 9…3 94.11" */
|
|
1225
1225
|
VignettingParams?: string;
|
|
1226
1226
|
/** ☆☆☆☆ ✔ Example: "GRBGBR BGGRGG RGGBGG GBRGRB RGGBGG BGGRGG" */
|
|
1227
1227
|
XTransLayout?: string;
|
|
@@ -1303,7 +1303,7 @@ export interface MakerNotesTags {
|
|
|
1303
1303
|
AEMaxAperture?: number;
|
|
1304
1304
|
/** ☆☆☆☆ ✔ Example: "[1], [2]" */
|
|
1305
1305
|
AEMeteringMode?: string;
|
|
1306
|
-
/** ☆☆☆☆ ✔ Example: "9.8 9.4 7.9 8.6 9.2 8.5 9.4 8.9 8.1 8.6 8.0 10.4 8.5 10.6
|
|
1306
|
+
/** ☆☆☆☆ ✔ Example: "9.8 9.4 7.9 8.6 9.2 8.5 9.4 8.9 8.1 8.6 8.0 10.4 8.5 10.6…9.5 9.5" */
|
|
1307
1307
|
AEMeteringSegments?: string;
|
|
1308
1308
|
/** ☆☆☆☆ ✔ Example: "Enable; 0; 8; 0" */
|
|
1309
1309
|
AEMicroadjustment?: string;
|
|
@@ -1421,8 +1421,6 @@ export interface MakerNotesTags {
|
|
|
1421
1421
|
AFPointPosition?: string;
|
|
1422
1422
|
/** ☆☆☆☆ ✔ Example: "Center" */
|
|
1423
1423
|
AFPointRegistration?: string;
|
|
1424
|
-
/** ☆☆☆☆ ✔ Example: "Use Half" */
|
|
1425
|
-
AFPointSel?: string;
|
|
1426
1424
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
1427
1425
|
AFPointSelected?: string;
|
|
1428
1426
|
/** ☆☆☆☆ ✔ Example: "H=AF+Main/V=AF+Command" */
|
|
@@ -1719,7 +1717,7 @@ export interface MakerNotesTags {
|
|
|
1719
1717
|
CPUFirmwareVersion?: string;
|
|
1720
1718
|
/** ☆☆☆☆ Example: "d, 2009:09:04 03:19:07" */
|
|
1721
1719
|
CPUVersions?: string;
|
|
1722
|
-
/** ☆☆☆☆ Example: "Starting calibration file for SD14F13_Rev3; S/N
|
|
1720
|
+
/** ☆☆☆☆ Example: "Starting calibration file for SD14F13_Rev3; S/N C75_00001…8:16:34" */
|
|
1723
1721
|
Calibration?: string;
|
|
1724
1722
|
/** ☆☆☆☆ Example: "2216/02/28 03:49:48" */
|
|
1725
1723
|
CameraDateTime?: string;
|
|
@@ -1825,13 +1823,13 @@ export interface MakerNotesTags {
|
|
|
1825
1823
|
ColorHue?: string;
|
|
1826
1824
|
/** ☆☆☆☆ ✔ Example: "600 -236 -108 -52 404 -96 -20 -140 416" */
|
|
1827
1825
|
ColorMatrix?: string;
|
|
1828
|
-
/** ☆☆☆☆ Example: "1.66016 -0.66016 0.00000 -0.20703 1.52734 -0.32031 -0.
|
|
1826
|
+
/** ☆☆☆☆ Example: "1.66016 -0.66016 0.00000 -0.20703 1.52734 -0.32031 -0.132…1.42969" */
|
|
1829
1827
|
ColorMatrixA?: string;
|
|
1830
|
-
/** ☆☆☆☆ Example: "1.12793 -0.03674 -0.09119 -0.20703 1.52734 -0.32031 -0.
|
|
1828
|
+
/** ☆☆☆☆ Example: "1.12793 -0.03674 -0.09119 -0.20703 1.52734 -0.32031 -0.13…1.35791" */
|
|
1831
1829
|
ColorMatrixB?: string;
|
|
1832
1830
|
/** ☆☆☆☆ ✔ Example: 4 */
|
|
1833
1831
|
ColorMatrixNumber?: number;
|
|
1834
|
-
/** ☆☆☆☆ ✔ Example: "Min -5; Max 5; Yellow 0; Orange 0; Orange-red 0; Red 0;
|
|
1832
|
+
/** ☆☆☆☆ ✔ Example: "Min -5; Max 5; Yellow 0; Orange 0; Orange-red 0; Red 0; M…green 0" */
|
|
1835
1833
|
ColorProfileSettings?: string;
|
|
1836
1834
|
/** ★☆☆☆ ✔ Example: "sRGB" */
|
|
1837
1835
|
ColorSpace?: string;
|
|
@@ -2025,7 +2023,7 @@ export interface MakerNotesTags {
|
|
|
2025
2023
|
CustomWBRedLevel?: number;
|
|
2026
2024
|
/** ☆☆☆☆ ✔ Example: "Setup" */
|
|
2027
2025
|
CustomWBSetting?: string;
|
|
2028
|
-
/** ☆☆☆☆ ✔ Example: "0 0 1 30 31 0 0 0 0 0 0 2 30 31 0 0 0 0 0 0 5 30 31 0 0 0
|
|
2026
|
+
/** ☆☆☆☆ ✔ Example: "0 0 1 30 31 0 0 0 0 0 0 2 30 31 0 0 0 0 0 0 5 30 31 0 0 0…1 1 1 0" */
|
|
2029
2027
|
CustomizeDials?: string;
|
|
2030
2028
|
/** ☆☆☆☆ Example: "Unknown (27471)" */
|
|
2031
2029
|
DECPosition?: string;
|
|
@@ -2389,7 +2387,7 @@ export interface MakerNotesTags {
|
|
|
2389
2387
|
FlashMetering?: string;
|
|
2390
2388
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2391
2389
|
FlashMeteringMode?: string;
|
|
2392
|
-
/** ☆☆☆☆ ✔ Example: "18.0 18.5 20.0 20.0 20.0 20.0 20.0 20.0 20.0 18.6 18.0 18
|
|
2390
|
+
/** ☆☆☆☆ ✔ Example: "18.0 18.5 20.0 20.0 20.0 20.0 20.0 20.0 20.0 18.6 18.0 18….2 19.0" */
|
|
2393
2391
|
FlashMeteringSegments?: string;
|
|
2394
2392
|
/** ★★☆☆ ✔ Example: "Unknown (c2)" */
|
|
2395
2393
|
FlashMode?: string;
|
|
@@ -2459,6 +2457,8 @@ export interface MakerNotesTags {
|
|
|
2459
2457
|
FocusContinuous?: string;
|
|
2460
2458
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
2461
2459
|
FocusDisplayAIServoAndMF?: string;
|
|
2460
|
+
/** ☆☆☆☆ ✔ Example: "7.68 - 36.90 m" */
|
|
2461
|
+
FocusDistanceRange?: string;
|
|
2462
2462
|
/** ☆☆☆☆ ✔ Example: "450x359" */
|
|
2463
2463
|
FocusFrameSize?: string;
|
|
2464
2464
|
/** ☆☆☆☆ ✔ Example: "Focus Hold" */
|
|
@@ -3511,7 +3511,7 @@ export interface MakerNotesTags {
|
|
|
3511
3511
|
SecondarySlotFunction?: string;
|
|
3512
3512
|
/** ☆☆☆☆ ✔ Example: "Unknown (87)" */
|
|
3513
3513
|
SelectAFAreaSelectMode?: string;
|
|
3514
|
-
/** ☆☆☆☆ ✔ Example: "Single-point AF, Auto, Zone AF, Spot AF, [6], [8], [9], [
|
|
3514
|
+
/** ☆☆☆☆ ✔ Example: "Single-point AF, Auto, Zone AF, Spot AF, [6], [8], [9], […], [14]" */
|
|
3515
3515
|
SelectAFAreaSelectionMode?: string;
|
|
3516
3516
|
/** ★★☆☆ ✔ Example: "Self-timer 5 or 10 s" */
|
|
3517
3517
|
SelfTimer?: string;
|
|
@@ -3643,7 +3643,7 @@ export interface MakerNotesTags {
|
|
|
3643
3643
|
SingleFrameBracketing?: string;
|
|
3644
3644
|
/** ☆☆☆☆ Example: "Off" */
|
|
3645
3645
|
SkinToneCorrection?: string;
|
|
3646
|
-
/** ☆☆☆☆ ✔ Example: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
|
3646
|
+
/** ☆☆☆☆ ✔ Example: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0…0 0 0 0" */
|
|
3647
3647
|
SlaveFlashMeteringSegments?: string;
|
|
3648
3648
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
3649
3649
|
SlowShutter?: string;
|
|
@@ -3815,7 +3815,7 @@ export interface MakerNotesTags {
|
|
|
3815
3815
|
ToneCurveMatching?: string;
|
|
3816
3816
|
/** ☆☆☆☆ ✔ Example: "(Binary data 1679 bytes, use -b option to extract)" */
|
|
3817
3817
|
ToneCurveTable?: string;
|
|
3818
|
-
/** ☆☆☆☆ ✔ Example: "Highlights; 0; -7; 7; Shadows; 0; -7; 7; Midtones; 0; -7;
|
|
3818
|
+
/** ☆☆☆☆ ✔ Example: "Highlights; 0; -7; 7; Shadows; 0; -7; 7; Midtones; 0; -7;…0; 0; 0" */
|
|
3819
3819
|
ToneLevel?: string;
|
|
3820
3820
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3821
3821
|
ToningEffect?: string;
|
|
@@ -3887,7 +3887,7 @@ export interface MakerNotesTags {
|
|
|
3887
3887
|
ViewfinderDisplay?: string;
|
|
3888
3888
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3889
3889
|
ViewfinderWarning?: string;
|
|
3890
|
-
/** ☆☆☆☆ ✔ Example: "Monochrome, WB corrected, One-touch image quality, Noise
|
|
3890
|
+
/** ☆☆☆☆ ✔ Example: "Monochrome, WB corrected, One-touch image quality, Noise …on, HDR" */
|
|
3891
3891
|
ViewfinderWarnings?: string;
|
|
3892
3892
|
/** ☆☆☆☆ ✔ Example: "ViewFinder" */
|
|
3893
3893
|
ViewingMode?: string;
|
|
@@ -4037,7 +4037,7 @@ export interface XMPTags {
|
|
|
4037
4037
|
CameraProfileDigest?: string;
|
|
4038
4038
|
/** ☆☆☆☆ Example: "Rear" */
|
|
4039
4039
|
CameraUnit?: string;
|
|
4040
|
-
/** ☆☆☆☆ ✔ Example: [{"DepthMap":{"ConfidenceURI":"android/confidencemap","
|
|
4040
|
+
/** ☆☆☆☆ ✔ Example: [{"DepthMap":{"ConfidenceURI":"android/confidencemap","De…ical"}] */
|
|
4041
4041
|
Cameras?: Struct[];
|
|
4042
4042
|
/** ☆☆☆☆ ✔ Example: "https://PhotoStructure.com/" */
|
|
4043
4043
|
CaptureSoftware?: string;
|
|
@@ -4055,7 +4055,7 @@ export interface XMPTags {
|
|
|
4055
4055
|
CentralWavelength?: number[];
|
|
4056
4056
|
/** ☆☆☆☆ ✔ Example: ["tag,2011-07-26T05:44:01Z,0,c"] */
|
|
4057
4057
|
Changes?: string[];
|
|
4058
|
-
/** ☆☆☆☆ ✔ Example: [{"CorrectionActive":true,"CorrectionAmount":1,"
|
|
4058
|
+
/** ☆☆☆☆ ✔ Example: [{"CorrectionActive":true,"CorrectionAmount":1,"Correctio…tion"}] */
|
|
4059
4059
|
CircularGradientBasedCorrections?: Struct[];
|
|
4060
4060
|
/** ☆☆☆☆ ✔ Example: "3 (Superior)" */
|
|
4061
4061
|
ColorClass?: string;
|
|
@@ -4069,7 +4069,7 @@ export interface XMPTags {
|
|
|
4069
4069
|
ColorNoiseReductionSmoothness?: number;
|
|
4070
4070
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
4071
4071
|
Colorlabels?: string;
|
|
4072
|
-
/** ☆☆☆☆ ✔ Example: {"Directory":[{"DataURI":"primary_image","Length":0,"Mime"
|
|
4072
|
+
/** ☆☆☆☆ ✔ Example: {"Directory":[{"DataURI":"primary_image","Length":0,"Mime…peg"}]} */
|
|
4073
4073
|
Container?: Struct;
|
|
4074
4074
|
/** ☆☆☆☆ ✔ Example: false */
|
|
4075
4075
|
ConvertToGrayscale?: boolean;
|
|
@@ -4079,7 +4079,7 @@ export interface XMPTags {
|
|
|
4079
4079
|
Creator?: string[];
|
|
4080
4080
|
/** ☆☆☆☆ Example: "{2d7e7fd6-2942-4d77-9842-389c3f62b14d}" */
|
|
4081
4081
|
CreatorAppID?: string;
|
|
4082
|
-
/** ☆☆☆☆ ✔ Example: {"CiAdrCity":"Amsterdam","CiAdrCtry":"Netherlands","
|
|
4082
|
+
/** ☆☆☆☆ ✔ Example: {"CiAdrCity":"Amsterdam","CiAdrCtry":"Netherlands","CiAdr…73 CH"} */
|
|
4083
4083
|
CreatorContactInfo?: Struct;
|
|
4084
4084
|
/** ☆☆☆☆ Example: 1 */
|
|
4085
4085
|
CreatorOpenWithUIOptions?: number;
|
|
@@ -4195,7 +4195,7 @@ export interface XMPTags {
|
|
|
4195
4195
|
HasSettings?: boolean;
|
|
4196
4196
|
/** ☆☆☆☆ ✔ Example: ["点像F11"] */
|
|
4197
4197
|
HierarchicalSubject?: string[];
|
|
4198
|
-
/** ☆☆☆☆ ✔ Example: [{"Action":"converted","Parameters":"from image/x-canon-
|
|
4198
|
+
/** ☆☆☆☆ ✔ Example: [{"Action":"converted","Parameters":"from image/x-canon-c…C+2"}}] */
|
|
4199
4199
|
History?: ResourceEvent[] | ResourceEvent | string;
|
|
4200
4200
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4201
4201
|
HueAdjustmentAqua?: number;
|
|
@@ -4247,7 +4247,7 @@ export interface XMPTags {
|
|
|
4247
4247
|
LensProfileSetup?: string;
|
|
4248
4248
|
/** ☆☆☆☆ Example: 37087 */
|
|
4249
4249
|
LocationAreaCode?: number;
|
|
4250
|
-
/** ☆☆☆☆ ✔ Example: {"Amount":1,"Group":"Profiles","Name":"Adobe Color","
|
|
4250
|
+
/** ☆☆☆☆ ✔ Example: {"Amount":1,"Group":"Profiles","Name":"Adobe Color","Para…A7077"} */
|
|
4251
4251
|
Look?: Struct;
|
|
4252
4252
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4253
4253
|
LuminanceAdjustmentAqua?: number;
|
|
@@ -4289,7 +4289,7 @@ export interface XMPTags {
|
|
|
4289
4289
|
MobileNetworkCode?: number;
|
|
4290
4290
|
/** ☆☆☆☆ ✔ Example: 2015-06-02T09:56:01.000+01:00 */
|
|
4291
4291
|
ModificationDate?: ExifDateTime | string;
|
|
4292
|
-
/** ☆☆☆☆ Example: "36864,40960,40961,37121,37122,40962,40963,37510,40964,
|
|
4292
|
+
/** ☆☆☆☆ Example: "36864,40960,40961,37121,37122,40962,40963,37510,40964,368…B0A1251" */
|
|
4293
4293
|
NativeDigest?: string;
|
|
4294
4294
|
/** ☆☆☆☆ Example: */
|
|
4295
4295
|
OriginalCreateDateTime?: ExifDateTime | string;
|
|
@@ -4361,11 +4361,11 @@ export interface XMPTags {
|
|
|
4361
4361
|
RedHue?: number;
|
|
4362
4362
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4363
4363
|
RedSaturation?: number;
|
|
4364
|
-
/** ☆☆☆☆ ✔ Example: {"AppliedToDimensions":{"H":3552,"W":2000},"RegionList":[
|
|
4364
|
+
/** ☆☆☆☆ ✔ Example: {"AppliedToDimensions":{"H":3552,"W":2000},"RegionList":[…ace"}]} */
|
|
4365
4365
|
RegionInfo?: Struct;
|
|
4366
4366
|
/** ☆☆☆☆ ✔ Example: {"Regions":""} */
|
|
4367
4367
|
RegionInfoMP?: Struct;
|
|
4368
|
-
/** ☆☆☆☆ ✔ Example: [{"RegItemId":"Number1","RegOrgId":"TestName1"},{"
|
|
4368
|
+
/** ☆☆☆☆ ✔ Example: [{"RegItemId":"Number1","RegOrgId":"TestName1"},{"RegItem…ame3"}] */
|
|
4369
4369
|
RegistryID?: Struct[];
|
|
4370
4370
|
/** ☆☆☆☆ Example: "+90.80" */
|
|
4371
4371
|
RelativeAltitude?: string;
|
|
@@ -4405,7 +4405,7 @@ export interface XMPTags {
|
|
|
4405
4405
|
SharpenRadius?: string;
|
|
4406
4406
|
/** ☆☆☆☆ ✔ Example: 2 */
|
|
4407
4407
|
SourcePhotosCount?: number;
|
|
4408
|
-
/** ☆☆☆☆ ✔ Example: ["com.google.android.apps.camera.gallery.specialtype.
|
|
4408
|
+
/** ☆☆☆☆ ✔ Example: ["com.google.android.apps.camera.gallery.specialtype.Spec…TRAIT"] */
|
|
4409
4409
|
SpecialTypeID?: string[];
|
|
4410
4410
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4411
4411
|
SplitToningBalance?: number;
|
|
@@ -4494,8 +4494,8 @@ export interface XMPTags {
|
|
|
4494
4494
|
* devices (like iPhones) An example value, JSON stringified, follows the
|
|
4495
4495
|
* popularity ratings.
|
|
4496
4496
|
*
|
|
4497
|
-
* Autogenerated by "yarn mktags" by ExifTool 12.
|
|
4498
|
-
*
|
|
4497
|
+
* Autogenerated by "yarn mktags" by ExifTool 12.43 on Wed Jul 13 2022.
|
|
4498
|
+
* 2920 unique tags were found in 9967 photo and video files.
|
|
4499
4499
|
*/
|
|
4500
4500
|
export interface Tags extends APP12Tags, APP14Tags, APP1Tags, APP4Tags, APP5Tags, APP6Tags, ApplicationRecordTags, CompositeTags, EXIFTags, ExifToolTags, FileTags, FlashPixTags, ICCProfileTags, IPTCTags, JFIFTags, MPFTags, MakerNotesTags, MetaTags, PanasonicRawTags, PhotoshopTags, PrintIMTags, QuickTimeTags, RAFTags, RIFFTags, XMPTags {
|
|
4501
4501
|
errors?: string[];
|
package/dist/Timezones.d.ts
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
|
-
import { FixedOffsetZone } from "luxon";
|
|
2
1
|
import { Maybe } from "./Maybe";
|
|
3
2
|
export declare const MaxTzOffsetHours = 14;
|
|
4
3
|
export declare const UnsetZoneOffsetMinutes = -1;
|
|
5
|
-
|
|
4
|
+
/**
|
|
5
|
+
* This is a placeholder for dates where the zone is unknown/unset, because
|
|
6
|
+
* Luxon doesn't officially support "unset" zones.
|
|
7
|
+
*/
|
|
8
|
+
export declare const UnsetZone: import("luxon").Zone;
|
|
6
9
|
export declare const UnsetZoneName: string;
|
|
7
10
|
export declare function reasonableTzOffsetMinutes(tzOffsetMinutes: Maybe<number>): boolean;
|
|
8
11
|
/**
|
package/dist/Timezones.js
CHANGED
|
@@ -10,12 +10,16 @@ const String_1 = require("./String");
|
|
|
10
10
|
// Pacific/Kiritimati is +14:00 TIL
|
|
11
11
|
// https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
|
12
12
|
exports.MaxTzOffsetHours = 14;
|
|
13
|
-
// Not in typings:
|
|
14
13
|
exports.UnsetZoneOffsetMinutes = -1;
|
|
15
|
-
|
|
14
|
+
/**
|
|
15
|
+
* This is a placeholder for dates where the zone is unknown/unset, because
|
|
16
|
+
* Luxon doesn't officially support "unset" zones.
|
|
17
|
+
*/
|
|
18
|
+
exports.UnsetZone = luxon_1.Info.normalizeZone(exports.UnsetZoneOffsetMinutes);
|
|
16
19
|
exports.UnsetZoneName = exports.UnsetZone.name;
|
|
17
20
|
function reasonableTzOffsetMinutes(tzOffsetMinutes) {
|
|
18
21
|
return ((0, Number_1.isNumber)(tzOffsetMinutes) &&
|
|
22
|
+
tzOffsetMinutes !== exports.UnsetZoneOffsetMinutes &&
|
|
19
23
|
Math.abs(tzOffsetMinutes) < exports.MaxTzOffsetHours * 60);
|
|
20
24
|
}
|
|
21
25
|
exports.reasonableTzOffsetMinutes = reasonableTzOffsetMinutes;
|
|
@@ -25,8 +29,9 @@ exports.reasonableTzOffsetMinutes = reasonableTzOffsetMinutes;
|
|
|
25
29
|
function offsetMinutesToZoneName(offsetMinutes) {
|
|
26
30
|
if (offsetMinutes == null ||
|
|
27
31
|
!(0, Number_1.isNumber)(offsetMinutes) ||
|
|
28
|
-
offsetMinutes === exports.UnsetZoneOffsetMinutes)
|
|
32
|
+
offsetMinutes === exports.UnsetZoneOffsetMinutes) {
|
|
29
33
|
return undefined;
|
|
34
|
+
}
|
|
30
35
|
if (offsetMinutes === 0)
|
|
31
36
|
return "UTC";
|
|
32
37
|
const sign = offsetMinutes < 0 ? "-" : "+";
|
package/dist/Timezones.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Timezones.js","sourceRoot":"","sources":["../src/Timezones.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"Timezones.js","sourceRoot":"","sources":["../src/Timezones.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exiftool-vendored",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "17.0.1",
|
|
4
4
|
"description": "Efficient, cross-platform access to ExifTool",
|
|
5
5
|
"main": "./dist/ExifTool.js",
|
|
6
6
|
"types": "./dist/ExifTool.d.ts",
|
|
@@ -67,18 +67,18 @@
|
|
|
67
67
|
"@types/globule": "^1.1.4",
|
|
68
68
|
"@types/he": "^1.1.2",
|
|
69
69
|
"@types/mocha": "^9.1.1",
|
|
70
|
-
"@types/node": "^18.0.
|
|
70
|
+
"@types/node": "^18.0.3",
|
|
71
71
|
"@types/progress": "^2.0.5",
|
|
72
72
|
"@types/rimraf": "^3.0.2",
|
|
73
73
|
"@types/tar-fs": "^2.0.1",
|
|
74
74
|
"@types/tmp": "^0.2.3",
|
|
75
75
|
"@types/xmldom": "^0.1.31",
|
|
76
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
77
|
-
"@typescript-eslint/parser": "^5.
|
|
76
|
+
"@typescript-eslint/eslint-plugin": "^5.30.6",
|
|
77
|
+
"@typescript-eslint/parser": "^5.30.6",
|
|
78
78
|
"chai": "^4.3.6",
|
|
79
79
|
"chai-as-promised": "^7.1.1",
|
|
80
80
|
"chai-subset": "^1.6.0",
|
|
81
|
-
"eslint": "^8.
|
|
81
|
+
"eslint": "^8.19.0",
|
|
82
82
|
"eslint-plugin-import": "^2.26.0",
|
|
83
83
|
"eslint-plugin-node": "^11.1.0",
|
|
84
84
|
"extract-zip": "^2.0.1",
|
|
@@ -89,10 +89,10 @@
|
|
|
89
89
|
"prettier": "^2.7.1",
|
|
90
90
|
"progress": "^2.0.3",
|
|
91
91
|
"rimraf": "^3.0.2",
|
|
92
|
-
"serve": "^
|
|
92
|
+
"serve": "^14.0.0",
|
|
93
93
|
"source-map-support": "^0.5.21",
|
|
94
94
|
"tmp": "^0.2.1",
|
|
95
|
-
"typedoc": "^0.
|
|
95
|
+
"typedoc": "^0.23.7",
|
|
96
96
|
"typescript": "~4.7.4",
|
|
97
97
|
"@xmldom/xmldom": "^0.8.2",
|
|
98
98
|
"xpath": "^0.0.32"
|
|
@@ -101,11 +101,11 @@
|
|
|
101
101
|
"@types/luxon": "^2.3.2",
|
|
102
102
|
"batch-cluster": "^10.4.2",
|
|
103
103
|
"he": "^1.2.0",
|
|
104
|
-
"luxon": "^
|
|
104
|
+
"luxon": "^3.0.1",
|
|
105
105
|
"tz-lookup": "^6.1.25"
|
|
106
106
|
},
|
|
107
107
|
"optionalDependencies": {
|
|
108
|
-
"exiftool-vendored.exe": "12.
|
|
109
|
-
"exiftool-vendored.pl": "12.
|
|
108
|
+
"exiftool-vendored.exe": "12.43.0",
|
|
109
|
+
"exiftool-vendored.pl": "12.43.0"
|
|
110
110
|
}
|
|
111
111
|
}
|