exiftool-vendored.exe 12.56.0 → 12.60.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.
Files changed (54) hide show
  1. package/bin/exiftool_files/Changes +80 -5
  2. package/bin/exiftool_files/README +2 -2
  3. package/bin/exiftool_files/config_files/example.config +1 -0
  4. package/bin/exiftool_files/config_files/rotate_regions.config +1 -1
  5. package/bin/exiftool_files/exiftool.pl +174 -99
  6. package/bin/exiftool_files/lib/Image/ExifTool/AIFF.pm +2 -2
  7. package/bin/exiftool_files/lib/Image/ExifTool/APE.pm +2 -2
  8. package/bin/exiftool_files/lib/Image/ExifTool/BuildTagLookup.pm +19 -15
  9. package/bin/exiftool_files/lib/Image/ExifTool/Canon.pm +26 -6
  10. package/bin/exiftool_files/lib/Image/ExifTool/CanonRaw.pm +5 -1
  11. package/bin/exiftool_files/lib/Image/ExifTool/DJI.pm +28 -2
  12. package/bin/exiftool_files/lib/Image/ExifTool/Exif.pm +77 -19
  13. package/bin/exiftool_files/lib/Image/ExifTool/FlashPix.pm +32 -10
  14. package/bin/exiftool_files/lib/Image/ExifTool/FujiFilm.pm +7 -3
  15. package/bin/exiftool_files/lib/Image/ExifTool/GPS.pm +7 -2
  16. package/bin/exiftool_files/lib/Image/ExifTool/Geotag.pm +30 -7
  17. package/bin/exiftool_files/lib/Image/ExifTool/JPEG.pm +14 -2
  18. package/bin/exiftool_files/lib/Image/ExifTool/Jpeg2000.pm +5 -5
  19. package/bin/exiftool_files/lib/Image/ExifTool/LIF.pm +10 -2
  20. package/bin/exiftool_files/lib/Image/ExifTool/LNK.pm +5 -4
  21. package/bin/exiftool_files/lib/Image/ExifTool/MIE.pm +3 -3
  22. package/bin/exiftool_files/lib/Image/ExifTool/MPEG.pm +2 -2
  23. package/bin/exiftool_files/lib/Image/ExifTool/MakerNotes.pm +3 -2
  24. package/bin/exiftool_files/lib/Image/ExifTool/Minolta.pm +6 -7
  25. package/bin/exiftool_files/lib/Image/ExifTool/MinoltaRaw.pm +2 -1
  26. package/bin/exiftool_files/lib/Image/ExifTool/Nikon.pm +1003 -907
  27. package/bin/exiftool_files/lib/Image/ExifTool/NikonCustom.pm +2 -2
  28. package/bin/exiftool_files/lib/Image/ExifTool/NikonSettings.pm +1 -1
  29. package/bin/exiftool_files/lib/Image/ExifTool/Olympus.pm +88 -6
  30. package/bin/exiftool_files/lib/Image/ExifTool/PNG.pm +10 -2
  31. package/bin/exiftool_files/lib/Image/ExifTool/PanasonicRaw.pm +27 -1
  32. package/bin/exiftool_files/lib/Image/ExifTool/Pentax.pm +8 -5
  33. package/bin/exiftool_files/lib/Image/ExifTool/PhaseOne.pm +14 -1
  34. package/bin/exiftool_files/lib/Image/ExifTool/Photoshop.pm +38 -7
  35. package/bin/exiftool_files/lib/Image/ExifTool/QuickTime.pm +44 -13
  36. package/bin/exiftool_files/lib/Image/ExifTool/QuickTimeStream.pl +40 -6
  37. package/bin/exiftool_files/lib/Image/ExifTool/README +19 -2
  38. package/bin/exiftool_files/lib/Image/ExifTool/RIFF.pm +34 -13
  39. package/bin/exiftool_files/lib/Image/ExifTool/Rawzor.pm +2 -2
  40. package/bin/exiftool_files/lib/Image/ExifTool/Ricoh.pm +2 -1
  41. package/bin/exiftool_files/lib/Image/ExifTool/Sigma.pm +5 -4
  42. package/bin/exiftool_files/lib/Image/ExifTool/SigmaRaw.pm +9 -3
  43. package/bin/exiftool_files/lib/Image/ExifTool/Sony.pm +24 -1
  44. package/bin/exiftool_files/lib/Image/ExifTool/TagLookup.pm +4678 -4628
  45. package/bin/exiftool_files/lib/Image/ExifTool/TagNames.pod +305 -113
  46. package/bin/exiftool_files/lib/Image/ExifTool/Validate.pm +5 -5
  47. package/bin/exiftool_files/lib/Image/ExifTool/WriteExif.pl +42 -0
  48. package/bin/exiftool_files/lib/Image/ExifTool/WriteXMP.pl +1 -1
  49. package/bin/exiftool_files/lib/Image/ExifTool/Writer.pl +150 -36
  50. package/bin/exiftool_files/lib/Image/ExifTool/XMP.pm +19 -4
  51. package/bin/exiftool_files/lib/Image/ExifTool/XMP2.pl +2 -1
  52. package/bin/exiftool_files/lib/Image/ExifTool.pm +195 -42
  53. package/bin/exiftool_files/lib/Image/ExifTool.pod +44 -9
  54. package/package.json +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exiftool-vendored.exe",
3
- "version": "12.56.0",
3
+ "version": "12.60.0",
4
4
  "description": "Vendored win32 ExifTool for Node.js",
5
5
  "main": "./index.js",
6
6
  "homepage": "https://github.com/mceachen/exiftool-vendored.exe#readme",
@@ -42,6 +42,6 @@
42
42
  },
43
43
  "devDependencies": {
44
44
  "mocha": "^10.2.0",
45
- "prettier": "^2.8.4"
45
+ "prettier": "^2.8.7"
46
46
  }
47
47
  }