exiftool-vendored.pl 12.78.0 → 12.82.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/bin/Changes +80 -3
- package/bin/MANIFEST +29 -2
- package/bin/META.json +1 -1
- package/bin/META.yml +1 -1
- package/bin/README +3 -2
- package/bin/config_files/acdsee.config +37 -57
- package/bin/config_files/example.config +6 -0
- package/bin/exiftool +67 -25
- package/bin/lib/Image/ExifTool/BuildTagLookup.pm +44 -31
- package/bin/lib/Image/ExifTool/CanonVRD.pm +2 -2
- package/bin/lib/Image/ExifTool/FujiFilm.pm +21 -5
- package/bin/lib/Image/ExifTool/GM.pm +543 -0
- package/bin/lib/Image/ExifTool/GeoLang/cs.pm +978 -0
- package/bin/lib/Image/ExifTool/GeoLang/de.pm +1975 -0
- package/bin/lib/Image/ExifTool/GeoLang/en_ca.pm +44 -0
- package/bin/lib/Image/ExifTool/GeoLang/en_gb.pm +124 -0
- package/bin/lib/Image/ExifTool/GeoLang/es.pm +2921 -0
- package/bin/lib/Image/ExifTool/GeoLang/fi.pm +1116 -0
- package/bin/lib/Image/ExifTool/GeoLang/fr.pm +3171 -0
- package/bin/lib/Image/ExifTool/GeoLang/it.pm +2750 -0
- package/bin/lib/Image/ExifTool/GeoLang/ja.pm +10256 -0
- package/bin/lib/Image/ExifTool/GeoLang/ko.pm +4499 -0
- package/bin/lib/Image/ExifTool/GeoLang/nl.pm +1270 -0
- package/bin/lib/Image/ExifTool/GeoLang/pl.pm +3019 -0
- package/bin/lib/Image/ExifTool/GeoLang/ru.pm +18220 -0
- package/bin/lib/Image/ExifTool/GeoLang/sk.pm +441 -0
- package/bin/lib/Image/ExifTool/GeoLang/sv.pm +714 -0
- package/bin/lib/Image/ExifTool/GeoLang/tr.pm +452 -0
- package/bin/lib/Image/ExifTool/GeoLang/zh_cn.pm +2225 -0
- package/bin/lib/Image/ExifTool/GeoLang/zh_tw.pm +72 -0
- package/bin/lib/Image/ExifTool/Geolocation.dat +0 -0
- package/bin/lib/Image/ExifTool/Geolocation.pm +867 -146
- package/bin/lib/Image/ExifTool/Geotag.pm +13 -1
- package/bin/lib/Image/ExifTool/JSON.pm +7 -2
- package/bin/lib/Image/ExifTool/M2TS.pm +32 -4
- package/bin/lib/Image/ExifTool/MakerNotes.pm +2 -2
- package/bin/lib/Image/ExifTool/Microsoft.pm +1 -1
- package/bin/lib/Image/ExifTool/Nikon.pm +331 -22
- package/bin/lib/Image/ExifTool/NikonCustom.pm +55 -1
- package/bin/lib/Image/ExifTool/Olympus.pm +1 -0
- package/bin/lib/Image/ExifTool/OpenEXR.pm +37 -19
- package/bin/lib/Image/ExifTool/PNG.pm +3 -3
- package/bin/lib/Image/ExifTool/QuickTime.pm +40 -24
- package/bin/lib/Image/ExifTool/QuickTimeStream.pl +61 -30
- package/bin/lib/Image/ExifTool/README +8 -5
- package/bin/lib/Image/ExifTool/Sony.pm +1 -1
- package/bin/lib/Image/ExifTool/TagLookup.pm +4820 -4750
- package/bin/lib/Image/ExifTool/TagNames.pod +1000 -615
- package/bin/lib/Image/ExifTool/WriteQuickTime.pl +31 -8
- package/bin/lib/Image/ExifTool/WriteXMP.pl +1 -1
- package/bin/lib/Image/ExifTool/Writer.pl +58 -2
- package/bin/lib/Image/ExifTool/XMP.pm +20 -3
- package/bin/lib/Image/ExifTool/XMP2.pl +64 -0
- package/bin/lib/Image/ExifTool.pm +210 -97
- package/bin/lib/Image/ExifTool.pod +44 -18
- package/bin/perl-Image-ExifTool.spec +1 -1
- package/bin/pp_build_exe.args +4 -4
- package/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exiftool-vendored.pl",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.82.0",
|
|
4
4
|
"description": "Vendored perl ExifTool for Node.js",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"homepage": "https://github.com/mceachen/exiftool-vendored.pl#readme",
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"mocha": "^10.
|
|
45
|
-
"npm-check-updates": "^16.14.
|
|
44
|
+
"mocha": "^10.4.0",
|
|
45
|
+
"npm-check-updates": "^16.14.18",
|
|
46
46
|
"prettier": "^3.2.5"
|
|
47
47
|
}
|
|
48
48
|
}
|