exiftool-vendored.pl 13.31.0 → 13.32.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 +16 -0
- package/bin/META.json +1 -1
- package/bin/META.yml +1 -1
- package/bin/README +2 -2
- package/bin/exiftool +16 -8
- package/bin/lib/Image/ExifTool/BuildTagLookup.pm +3 -3
- package/bin/lib/Image/ExifTool/Canon.pm +5 -1
- package/bin/lib/Image/ExifTool/Exif.pm +4 -2
- package/bin/lib/Image/ExifTool/Nikon.pm +4 -3
- package/bin/lib/Image/ExifTool/Olympus.pm +2 -1
- package/bin/lib/Image/ExifTool/Pentax.pm +174 -49
- package/bin/lib/Image/ExifTool/Sony.pm +2 -1
- package/bin/lib/Image/ExifTool/TagLookup.pm +3759 -3752
- package/bin/lib/Image/ExifTool/TagNames.pod +22 -4
- package/bin/lib/Image/ExifTool/Writer.pl +7 -3
- package/bin/lib/Image/ExifTool/XMPStruct.pl +1 -1
- package/bin/lib/Image/ExifTool.pm +1 -1
- package/bin/perl-Image-ExifTool.spec +1 -1
- package/bin/windows_exiftool.txt +3 -3
- package/package.json +6 -4
|
@@ -34,7 +34,7 @@ use Image::ExifTool qw(:DataAccess :Utils);
|
|
|
34
34
|
use Image::ExifTool::Exif;
|
|
35
35
|
use Image::ExifTool::Minolta;
|
|
36
36
|
|
|
37
|
-
$VERSION = '3.
|
|
37
|
+
$VERSION = '3.74';
|
|
38
38
|
|
|
39
39
|
sub ProcessSRF($$$);
|
|
40
40
|
sub ProcessSR2($$$);
|
|
@@ -176,6 +176,7 @@ sub PrintInvLensSpec($;$$);
|
|
|
176
176
|
32888 => 'Sony FE 85mm F1.4 GM II', #JR
|
|
177
177
|
32889 => 'Sony FE 28-70mm F2 GM',
|
|
178
178
|
32890 => 'Sony FE 400-800mm F6.3-8 G OSS', #JR
|
|
179
|
+
32891 => 'Sony FE 50-150mm F2 GM', #github335
|
|
179
180
|
|
|
180
181
|
# (comment this out so LensID will report the LensModel, which is more useful)
|
|
181
182
|
# 32952 => 'Metabones Canon EF Speed Booster Ultra', #JR (corresponds to 184, but 'Advanced' mode, LensMount reported as E-mount)
|