exiftool-vendored.pl 13.30.0 → 13.31.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.
@@ -611,11 +611,13 @@ OPTIONS
611
611
  useful for some text strings since control characters (such as
612
612
  newlines) are not replaced by '.' as they are in the default
613
613
  output. By default, list items are separated by a newline when
614
- extracted with the -b option, but this may be changed (see the -sep
615
- option for details). May be combined with -j, -php or -X to extract
616
- binary data in JSON, PHP or XML format, but note that "Unsafe" tags
617
- are not extracted as binary unless they are specified explicitly or
618
- the API RequestAll option is set to 3 or higher.
614
+ extracted with the -b option and no terminator is added after each
615
+ tag value, but the list separator may be changed with a -sep option
616
+ and a terminator may be set by adding a second -sep option (see the
617
+ -sep option for details). May be combined with -j, -php or -X to
618
+ extract binary data in JSON, PHP or XML format, but note that
619
+ "Unsafe" tags are not extracted as binary unless they are specified
620
+ explicitly or the API RequestAll option is set to 3 or higher.
619
621
 
620
622
  With a leading double dash (--b or --binary), tags which contain
621
623
  binary data are suppressed in the output when reading.
@@ -1079,7 +1081,7 @@ OPTIONS
1079
1081
 
1080
1082
  produces output like this:
1081
1083
 
1082
- -- Generated by ExifTool 13.30 --
1084
+ -- Generated by ExifTool 13.31 --
1083
1085
  File: a.jpg - 2003:10:31 15:44:19
1084
1086
  (f/5.6, 1/60s, ISO 100)
1085
1087
  File: b.jpg - 2006:05:23 11:57:38
@@ -1895,9 +1897,10 @@ OPTIONS
1895
1897
  with -listf, -listr or -listwf to add file descriptions to the
1896
1898
  list. The -lang option may be combined with -listx to output
1897
1899
  descriptions in a single language, and the -sort and/or -lang
1898
- options may be combined with -listgeo. Also, the API GeolocMinPop,
1899
- GeolocFeature and GeolocAltNames options apply to the -listgeo
1900
- output. Here are some examples:
1900
+ options may be combined with -listgeo (installation of the
1901
+ alternate database is required for the additional languages). Also,
1902
+ the API GeolocMinPop, GeolocFeature and GeolocAltNames options
1903
+ apply to the -listgeo output. Here are some examples:
1901
1904
 
1902
1905
  -list # list all tag names
1903
1906
  -list -EXIF:All # list all EXIF tags
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exiftool-vendored.pl",
3
- "version": "13.30.0",
3
+ "version": "13.31.0",
4
4
  "description": "Vendored perl ExifTool for Node.js",
5
5
  "main": "./index.js",
6
6
  "homepage": "https://github.com/photostructure/exiftool-vendored.pl#readme",
@@ -30,7 +30,11 @@
30
30
  "scripts": {
31
31
  "prettier": "prettier --write test/*.js",
32
32
  "test": "mocha",
33
- "update-exiftool": "bash -c ./update-exiftool.sh",
33
+ "update": "run-p update:*",
34
+ "update:deps": "ncu -u",
35
+ "update:exiftool": "bash -c ./update-exiftool.sh",
36
+ "install:pinact": "go install github.com/suzuki-shunsuke/pinact/cmd/pinact@latest",
37
+ "update:actions": "pinact run -u",
34
38
  "release": "release-it"
35
39
  },
36
40
  "release-it": {
@@ -47,8 +51,9 @@
47
51
  }
48
52
  },
49
53
  "devDependencies": {
50
- "mocha": "^11.1.0",
54
+ "mocha": "^11.7.0",
55
+ "npm-run-all": "4.1.5",
51
56
  "prettier": "^3.5.3",
52
- "release-it": "^19.0.2"
57
+ "release-it": "^19.0.3"
53
58
  }
54
59
  }