exiftool_vendored 12.56.0 → 12.58.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/Changes +35 -2
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/README +2 -2
- data/bin/config_files/rotate_regions.config +1 -1
- data/bin/exiftool +95 -47
- data/bin/lib/Image/ExifTool/AIFF.pm +2 -2
- data/bin/lib/Image/ExifTool/APE.pm +2 -2
- data/bin/lib/Image/ExifTool/BuildTagLookup.pm +19 -15
- data/bin/lib/Image/ExifTool/Canon.pm +26 -6
- data/bin/lib/Image/ExifTool/DJI.pm +28 -2
- data/bin/lib/Image/ExifTool/Exif.pm +24 -5
- data/bin/lib/Image/ExifTool/FlashPix.pm +6 -2
- data/bin/lib/Image/ExifTool/FujiFilm.pm +1 -0
- data/bin/lib/Image/ExifTool/GPS.pm +7 -2
- data/bin/lib/Image/ExifTool/JPEG.pm +14 -2
- data/bin/lib/Image/ExifTool/Jpeg2000.pm +5 -5
- data/bin/lib/Image/ExifTool/LNK.pm +5 -4
- data/bin/lib/Image/ExifTool/MIE.pm +3 -3
- data/bin/lib/Image/ExifTool/MPEG.pm +2 -2
- data/bin/lib/Image/ExifTool/MakerNotes.pm +2 -2
- data/bin/lib/Image/ExifTool/Minolta.pm +6 -7
- data/bin/lib/Image/ExifTool/Nikon.pm +998 -903
- data/bin/lib/Image/ExifTool/NikonCustom.pm +2 -2
- data/bin/lib/Image/ExifTool/NikonSettings.pm +1 -1
- data/bin/lib/Image/ExifTool/Olympus.pm +3 -1
- data/bin/lib/Image/ExifTool/Pentax.pm +8 -5
- data/bin/lib/Image/ExifTool/Photoshop.pm +38 -7
- data/bin/lib/Image/ExifTool/QuickTime.pm +23 -7
- data/bin/lib/Image/ExifTool/QuickTimeStream.pl +3 -1
- data/bin/lib/Image/ExifTool/README +19 -2
- data/bin/lib/Image/ExifTool/RIFF.pm +3 -3
- data/bin/lib/Image/ExifTool/Rawzor.pm +2 -2
- data/bin/lib/Image/ExifTool/Sigma.pm +5 -4
- data/bin/lib/Image/ExifTool/Sony.pm +23 -1
- data/bin/lib/Image/ExifTool/TagLookup.pm +4670 -4628
- data/bin/lib/Image/ExifTool/TagNames.pod +261 -89
- data/bin/lib/Image/ExifTool/Validate.pm +5 -5
- data/bin/lib/Image/ExifTool/WriteExif.pl +42 -0
- data/bin/lib/Image/ExifTool/Writer.pl +39 -17
- data/bin/lib/Image/ExifTool/XMP.pm +2 -2
- data/bin/lib/Image/ExifTool.pm +94 -33
- data/bin/lib/Image/ExifTool.pod +4 -4
- data/bin/perl-Image-ExifTool.spec +1 -1
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +2 -2
@@ -49,7 +49,7 @@ use vars qw($VERSION %minoltaLensTypes %minoltaTeleconverters %minoltaColorMode
|
|
49
49
|
use Image::ExifTool qw(:DataAccess :Utils);
|
50
50
|
use Image::ExifTool::Exif;
|
51
51
|
|
52
|
-
$VERSION = '2.
|
52
|
+
$VERSION = '2.88';
|
53
53
|
|
54
54
|
# Full list of product codes for Sony-compatible Minolta lenses
|
55
55
|
# (ref http://www.kb.sony.com/selfservice/documentLink.do?externalId=C1000570)
|
@@ -179,12 +179,9 @@ $VERSION = '2.87';
|
|
179
179
|
# ("New" and "II" appear in brackets if original version also has this LensType)
|
180
180
|
%minoltaLensTypes = (
|
181
181
|
Notes => q{
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
brackets if the original version of the lens has the same LensType. Special
|
186
|
-
logic is employed to identify the attached lens when a Metabones Canon EF
|
187
|
-
adapter is used.
|
182
|
+
"New" or "II" appear in brackets if the original version of the lens has the
|
183
|
+
same LensType. Special logic is employed to identify the attached lens when
|
184
|
+
a Metabones Canon EF adapter is used.
|
188
185
|
},
|
189
186
|
OTHER => sub {
|
190
187
|
my ($val, $inv) = @_;
|
@@ -898,6 +895,7 @@ my %offOn = ( 0 => 'Off', 1 => 'On' );
|
|
898
895
|
SeparateTable => 1,
|
899
896
|
ValueConvInv => 'int($val)', # (must truncate decimal part)
|
900
897
|
PrintConv => \%minoltaLensTypes,
|
898
|
+
PrintInt => 1,
|
901
899
|
},
|
902
900
|
# 0x010e - WhiteBalance according to ref #10
|
903
901
|
0x0111 => { #20
|
@@ -2708,6 +2706,7 @@ my %offOn = ( 0 => 'Off', 1 => 'On' );
|
|
2708
2706
|
SeparateTable => 1,
|
2709
2707
|
ValueConvInv => 'int($val)', # (must truncate decimal part)
|
2710
2708
|
PrintConv => \%minoltaLensTypes,
|
2709
|
+
PrintInt => 1,
|
2711
2710
|
},
|
2712
2711
|
0x49c0 => {
|
2713
2712
|
Name => 'ExposureCompensation', # (in exposure bracketing, this is the actual value used)
|