exiftool-vendored 15.9.1 โ†’ 15.9.2

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 CHANGED
@@ -25,6 +25,10 @@ vendored versions of ExifTool match the version they vendor.
25
25
 
26
26
  ## Version history
27
27
 
28
+ ### v15.9.2
29
+
30
+ - ๐Ÿ“ฆ Rebuild tags and docs with updated test images. Note that some `GPS` tags types changed to `string`: see v15.8.0.
31
+
28
32
  ### v15.9.1
29
33
 
30
34
  - ๐Ÿ“ฆ Exposed `UnsetZoneOffsetMinutes` from `Timezones`
package/README.md CHANGED
@@ -324,9 +324,12 @@ If you run this in a docker image based off Alpine or Debian Slim, **this won't
324
324
 
325
325
  **Always remember to call `.end()`.**
326
326
 
327
- ExifTool child processes consume system resources. Ensure you don't leave zombie
328
- processes around by calling `.end()`, which returns a `Promise<void>` if you
329
- want to wait for the shutdown to be complete.
327
+ ExifTool child processes consume system resources, and [prevents `node` from
328
+ exiting due to the way Node.js streams
329
+ work](https://github.com/photostructure/exiftool-vendored.js/issues/106).
330
+
331
+ You must explicitly call `ExifTool.end()` for `node` to exit gracefully. This
332
+ cannot be in a `process.on("exit")` hook, as that will never get called.
330
333
 
331
334
  ### Mocha v4.0.0
332
335
 
package/dist/Tags.d.ts CHANGED
@@ -33,11 +33,11 @@ export interface FileTags {
33
33
  EncodingProcess?: string;
34
34
  /** โ˜…โ˜…โ˜…โ˜… โœ” Example: "Little-endian (Intel, II)" */
35
35
  ExifByteOrder?: string;
36
- /** โ˜…โ˜…โ˜…โ˜… โœ” Example: 2021-12-20T17:04:11.000-08:00 */
36
+ /** โ˜…โ˜…โ˜…โ˜… โœ” Example: 2021-12-29T10:35:44.000-08:00 */
37
37
  FileAccessDate?: ExifDateTime | string;
38
- /** โ˜…โ˜…โ˜…โ˜… โœ” Example: 2021-12-18T15:34:05.000-08:00 */
38
+ /** โ˜…โ˜…โ˜…โ˜… โœ” Example: 2021-12-29T10:35:44.000-08:00 */
39
39
  FileInodeChangeDate?: ExifDateTime | string;
40
- /** โ˜…โ˜…โ˜…โ˜… โœ” Example: 2021-06-08T12:53:12.000-07:00 */
40
+ /** โ˜…โ˜…โ˜…โ˜… โœ” Example: 2021-08-11T12:39:33.000-07:00 */
41
41
  FileModifyDate?: ExifDateTime | string;
42
42
  /** โ˜…โ˜…โ˜…โ˜… โœ” Example: "utc+8_oly.jpg" */
43
43
  FileName?: string;
@@ -93,7 +93,7 @@ export interface CompositeTags {
93
93
  DOF?: string;
94
94
  /** โ˜†โ˜†โ˜†โ˜† Example: 2006-12-19 */
95
95
  DateCreated?: ExifDate | string;
96
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 2021-03-16T18:14:25.000-07:00 */
96
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 2021-07-23T16:13:55.000-07:00 */
97
97
  DateTimeCreated?: ExifDateTime | string;
98
98
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 2017-02-20T18:06:40.000Z */
99
99
  DateTimeOriginal?: ExifDateTime | string;
@@ -125,17 +125,17 @@ export interface CompositeTags {
125
125
  GPSAltitude?: number;
126
126
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 2020-10-23T09:27:26.000Z */
127
127
  GPSDateTime?: ExifDateTime | string;
128
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 43.633224 */
129
- GPSDestLatitude?: number;
130
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 139.58194 */
131
- GPSDestLongitude?: number;
128
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "43 deg 37' 59.61" N" */
129
+ GPSDestLatitude?: string;
130
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "80 deg 23' 16.31" W" */
131
+ GPSDestLongitude?: string;
132
132
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 48.857748 */
133
133
  GPSLatitude?: number;
134
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "N" */
134
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "North" */
135
135
  GPSLatitudeRef?: string;
136
136
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 2.2918888 */
137
137
  GPSLongitude?: number;
138
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "W" */
138
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "West" */
139
139
  GPSLongitudeRef?: string;
140
140
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "7.196465 134.376806666667" */
141
141
  GPSPosition?: string;
@@ -185,11 +185,11 @@ export interface CompositeTags {
185
185
  ShutterCurtainHack?: string;
186
186
  /** โ˜…โ˜…โ˜…โ˜… โœ” Example: "Inf" */
187
187
  ShutterSpeed?: string;
188
- /** โ˜…โ˜†โ˜†โ˜† โœ” Example: 2021-01-29T13:50:39.093-08:00 */
188
+ /** โ˜…โ˜†โ˜†โ˜† โœ” Example: 2021-07-23T16:13:55.459-07:00 */
189
189
  SubSecCreateDate?: ExifDateTime | string;
190
- /** โ˜…โ˜†โ˜†โ˜† โœ” Example: 2021-03-22T15:15:03.000-05:00 */
190
+ /** โ˜…โ˜†โ˜†โ˜† โœ” Example: 2021-08-05T17:10:14.000+09:00 */
191
191
  SubSecDateTimeOriginal?: ExifDateTime | string;
192
- /** โ˜…โ˜†โ˜†โ˜† โœ” Example: 2021-03-22T15:15:03.000-05:00 */
192
+ /** โ˜…โ˜†โ˜†โ˜† โœ” Example: 2021-08-05T17:10:14.000+09:00 */
193
193
  SubSecModifyDate?: ExifDateTime | string;
194
194
  }
195
195
  export interface APP1Tags {
@@ -237,8 +237,8 @@ export interface APP1Tags {
237
237
  GPSDOP?: number;
238
238
  /** โ˜†โ˜†โ˜†โ˜† Example: "WGS84" */
239
239
  GPSMapDatum?: string;
240
- /** โ˜†โ˜†โ˜†โ˜† Example: 1 */
241
- GPSValid?: number;
240
+ /** โ˜†โ˜†โ˜†โ˜† Example: "Yes" */
241
+ GPSValid?: string;
242
242
  /** โ˜†โ˜†โ˜†โ˜† Example: "7.4 C" */
243
243
  IRWindowTemperature?: string;
244
244
  /** โ˜†โ˜†โ˜†โ˜† Example: 1 */
@@ -595,51 +595,51 @@ export interface EXIFTags {
595
595
  FocalPlaneXResolution?: number;
596
596
  /** โ˜…โ˜…โ˜…โ˜† โœ” Example: 9846.1538 */
597
597
  FocalPlaneYResolution?: number;
598
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 2 */
599
- GPSAltitudeRef?: number;
598
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "Unknown (2)" */
599
+ GPSAltitudeRef?: string;
600
600
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "ๅบœไธญๅธ‚้ƒทๅœŸใฎๆฃฎๅš็‰ฉ้คจ" */
601
601
  GPSAreaInformation?: string;
602
602
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 2020-10-23 */
603
603
  GPSDateStamp?: ExifDate | string;
604
604
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 86.180049 */
605
605
  GPSDestBearing?: number;
606
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "T" */
606
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "True North" */
607
607
  GPSDestBearingRef?: string;
608
608
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 0.030120052 */
609
609
  GPSDestDistance?: number;
610
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "K" */
610
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "Kilometers" */
611
611
  GPSDestDistanceRef?: string;
612
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "N" */
612
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "North" */
613
613
  GPSDestLatitudeRef?: string;
614
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "W" */
614
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "West" */
615
615
  GPSDestLongitudeRef?: string;
616
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 1 */
617
- GPSDifferential?: number;
618
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 8.9370599 */
619
- GPSHPositioningError?: number;
616
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "No Correction" */
617
+ GPSDifferential?: string;
618
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "8.937059922 m" */
619
+ GPSHPositioningError?: string;
620
620
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 94.800416 */
621
621
  GPSImgDirection?: number;
622
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "T" */
622
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "Unknown ()" */
623
623
  GPSImgDirectionRef?: string;
624
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 3 */
625
- GPSMeasureMode?: number;
624
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "Unknown ()" */
625
+ GPSMeasureMode?: string;
626
626
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "gps" */
627
627
  GPSProcessingMethod?: string;
628
628
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "??B??" */
629
629
  GPSSatellites?: string;
630
630
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 5 */
631
631
  GPSSpeed?: number;
632
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "N" */
632
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "knots" */
633
633
  GPSSpeedRef?: string;
634
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "V" */
634
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "Unknown ()" */
635
635
  GPSStatus?: string;
636
636
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 23:59:41.001 */
637
637
  GPSTimeStamp?: ExifTime | string;
638
638
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 71.76 */
639
639
  GPSTrack?: number;
640
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "T" */
640
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "True North" */
641
641
  GPSTrackRef?: string;
642
- /** โ˜…โ˜†โ˜†โ˜† โœ” Example: "50 51 48 48" */
642
+ /** โ˜…โ˜†โ˜†โ˜† โœ” Example: "50.51.48.48" */
643
643
  GPSVersionID?: string;
644
644
  /** โ˜…โ˜…โ˜…โ˜† โœ” Example: "Unknown (8176)" */
645
645
  GainControl?: string;
@@ -671,7 +671,7 @@ export interface EXIFTags {
671
671
  JpgFromRawStart?: number;
672
672
  /** โ˜…โ˜†โ˜†โ˜† โœ” Example: "?mm f/?" */
673
673
  LensInfo?: string;
674
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "SIGMA " */
674
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "ZEISS" */
675
675
  LensMake?: string;
676
676
  /** โ˜…โ˜…โ˜…โ˜… โœ” Example: "White Fluorescent" */
677
677
  LightSource?: string;
@@ -1181,7 +1181,7 @@ export interface QuickTimeTags {
1181
1181
  CurrentTime?: string;
1182
1182
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "Helvetica" */
1183
1183
  FontName?: string;
1184
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "45.5753 -122.1279" */
1184
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "45 deg 34' 31.08" N, 122 deg 7' 40.44" W" */
1185
1185
  GPSCoordinates?: string;
1186
1186
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 0 */
1187
1187
  GenBalance?: number;
@@ -4213,7 +4213,7 @@ export interface MakerNotesTags {
4213
4213
  SoftFocusFilter?: string;
4214
4214
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "n/a" */
4215
4215
  SoftSkinEffect?: string;
4216
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 2020-10-23T09:46:18.000-06:00 */
4216
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 2021-07-23T16:13:55.000-07:00 */
4217
4217
  SonyDateTime?: ExifDateTime | string;
4218
4218
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 2015-11-26T14:41:25.000 */
4219
4219
  SonyDateTime2?: ExifDateTime | string;
@@ -4243,7 +4243,7 @@ export interface MakerNotesTags {
4243
4243
  SonyMaxApertureValue?: number;
4244
4244
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 34 */
4245
4245
  SonyMinAperture?: number;
4246
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "ZV-1" */
4246
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "ZV-E10" */
4247
4247
  SonyModelID?: string;
4248
4248
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: "Fine" */
4249
4249
  SonyQuality?: string;
@@ -4713,9 +4713,9 @@ export interface XMPTags {
4713
4713
  CroppedAreaTopPixels?: number;
4714
4714
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 2014-05-11T13:08:25.659-04:00 */
4715
4715
  DateAcquired?: ExifDateTime | string;
4716
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 2017-08-13T12:38:30.000-04:00 */
4716
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 2017-08-13T12:38:30.000+04:00 */
4717
4717
  DateTime?: ExifDateTime | string;
4718
- /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 2017-08-13T12:38:30.000-04:00 */
4718
+ /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 2017-08-13T12:38:30.000+04:00 */
4719
4719
  DateTimeDigitized?: ExifDateTime | string;
4720
4720
  /** โ˜†โ˜†โ˜†โ˜† โœ” Example: 2015-06-02T09:56:01.000Z */
4721
4721
  DateUTC?: ExifDateTime | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exiftool-vendored",
3
- "version": "15.9.1",
3
+ "version": "15.9.2",
4
4
  "description": "Efficient, cross-platform access to ExifTool",
5
5
  "main": "./dist/ExifTool.js",
6
6
  "types": "./dist/ExifTool.d.ts",