exiftool-vendored.pl 12.60.0 → 12.62.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 +35 -0
- package/bin/LICENSE +674 -0
- package/bin/MANIFEST +7 -0
- package/bin/META.json +1 -1
- package/bin/META.yml +1 -1
- package/bin/README +45 -44
- package/bin/exiftool +100 -73
- package/bin/lib/Image/ExifTool/BMP.pm +0 -1
- package/bin/lib/Image/ExifTool/BuildTagLookup.pm +4 -4
- package/bin/lib/Image/ExifTool/FlashPix.pm +2 -1
- package/bin/lib/Image/ExifTool/Jpeg2000.pm +31 -6
- package/bin/lib/Image/ExifTool/MinoltaRaw.pm +2 -2
- package/bin/lib/Image/ExifTool/Nikon.pm +3 -3
- package/bin/lib/Image/ExifTool/PDF.pm +17 -8
- package/bin/lib/Image/ExifTool/QuickTime.pm +10 -7
- package/bin/lib/Image/ExifTool/QuickTimeStream.pl +51 -21
- package/bin/lib/Image/ExifTool/Sony.pm +16 -10
- package/bin/lib/Image/ExifTool/TagLookup.pm +9 -0
- package/bin/lib/Image/ExifTool/TagNames.pod +34 -5
- package/bin/lib/Image/ExifTool/WPG.pm +296 -0
- package/bin/lib/Image/ExifTool/WritePDF.pl +7 -8
- package/bin/lib/Image/ExifTool/Writer.pl +12 -4
- package/bin/lib/Image/ExifTool/XMP.pm +17 -5
- package/bin/lib/Image/ExifTool/ZIP.pm +159 -41
- package/bin/lib/Image/ExifTool.pm +118 -50
- package/bin/lib/Image/ExifTool.pod +51 -42
- package/bin/perl-Image-ExifTool.spec +44 -43
- package/bin/pp_build_exe.args +5 -4
- package/package.json +2 -2
package/bin/Changes
CHANGED
|
@@ -7,6 +7,41 @@ RSS feed: https://exiftool.org/rss.xml
|
|
|
7
7
|
Note: The most recent production release is Version 12.60. (Other versions are
|
|
8
8
|
considered development releases, and are not uploaded to MetaCPAN.)
|
|
9
9
|
|
|
10
|
+
May 3, 2023 - Version 12.62
|
|
11
|
+
|
|
12
|
+
- Added basic read support for WPG images
|
|
13
|
+
- Added ImageDataMD5 support for HEIC images
|
|
14
|
+
- Added support for RAR version 5.0 compressed files (thanks Amir Gooran)
|
|
15
|
+
- Added a few new XMP-aux tags (thanks John Ellis)
|
|
16
|
+
- Made Composite tags available for use in -fileNUM argument
|
|
17
|
+
- Better handling of FlashPix VT_EMPTY value
|
|
18
|
+
- Fixed "Can't write" error when specifying a .webp file for the -o option
|
|
19
|
+
- API Changes:
|
|
20
|
+
- Added NoWarning option
|
|
21
|
+
|
|
22
|
+
Apr. 24, 2023 - Version 12.61
|
|
23
|
+
|
|
24
|
+
- Added ImageDataMD5 support for J2C and JXL images
|
|
25
|
+
- Added support for PDF 2.0 (specification is finally freely available)
|
|
26
|
+
- Added ability to extract timed Accelerometer data from Azdome GS63H MP4
|
|
27
|
+
videos which don't contain GPS
|
|
28
|
+
- Added some new Sony lenses (thanks Jos Roost)
|
|
29
|
+
- Decode some new tags for the Sony ZV-E1 (thanks Jos Roost)
|
|
30
|
+
- Decode more tags for the Nikon Z30 (thanks Xavier)
|
|
31
|
+
- Enhanced -fileNUM option to allow tags from the main file to be used in the
|
|
32
|
+
file name string
|
|
33
|
+
- Validate sample offset and size when calculating ImageDataMD5 for MP4 videos
|
|
34
|
+
(note: may change ImageDataMD5 value for videos where audio data runs past
|
|
35
|
+
end of media data)
|
|
36
|
+
- Return error when attempting to write a fragmented JXL file
|
|
37
|
+
- Improved robustness for determining image size for corrupted JPEG
|
|
38
|
+
- Patched to allow Insta360 GPS records of unexpected length and tweaked
|
|
39
|
+
verification algorithm to determine validity of these records
|
|
40
|
+
- Fixed bug introduced in 12.57 where -progress:%f gave runtime warnings
|
|
41
|
+
- Fixed "--" option to ignore subsequent -common_args option
|
|
42
|
+
- Fixed incorrect ImageDataMD5 for Sony A100 ARW images
|
|
43
|
+
- Fixed problem reading new XMP-et:OriginalImageMD5 tag
|
|
44
|
+
|
|
10
45
|
Apr. 5, 2023 - Version 12.60 (production release)
|
|
11
46
|
|
|
12
47
|
- Added a new Sony FileFormat value
|