exiftool_vendored 11.68.0 → 11.69.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of exiftool_vendored might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/bin/Changes +5 -0
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/README +2 -2
- data/bin/exiftool +2 -2
- data/bin/lib/Image/ExifTool.pm +1 -1
- data/bin/lib/Image/ExifTool/BuildTagLookup.pm +2 -2
- data/bin/lib/Image/ExifTool/TagNames.pod +2 -2
- data/bin/lib/Image/ExifTool/WriteQuickTime.pl +2 -2
- data/bin/perl-Image-ExifTool.spec +1 -1
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ea39081a30f1851114ef9949045a7650418f1347
|
4
|
+
data.tar.gz: 3c8964dbcd6b93e20c44f009dace3dac33555658
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0941ec0ddebab6a0b9690d46a752e831c9ded4923dd86f7a13cb001f2deb41a6ae9c96c8c9ad1cad187aad08f7208a3a70d741bd31f9ba1a9d80e68247b91e80'
|
7
|
+
data.tar.gz: fcc84333736485e86b37961b89fa9ab9e8368f2517f36f0f1b36242c0e5faf9ef4eb029b03ea78a50378dafc8b93f0f47b98cd81237f978c233cd0c938f2054b
|
data/bin/Changes
CHANGED
@@ -7,6 +7,11 @@ RSS feed: http://owl.phy.queensu.ca/~phil/exiftool/rss.xml
|
|
7
7
|
Note: The most recent production release is Version 11.50. (Other versions are
|
8
8
|
considered development releases, and are not uploaded to CPAN.)
|
9
9
|
|
10
|
+
Oct. 2, 2019 - Version 11.69
|
11
|
+
|
12
|
+
- Fixed bug where signed coordinates between -1 and 0 were written as positive
|
13
|
+
values when writing QuickTime:GPSCoordinates
|
14
|
+
|
10
15
|
Oct. 1, 2019 - Version 11.68
|
11
16
|
|
12
17
|
- Added read support for yet another type of streaming GPS in MP4 videos
|
data/bin/META.json
CHANGED
data/bin/META.yml
CHANGED
data/bin/README
CHANGED
@@ -104,8 +104,8 @@ your home directory, then you would type the following commands in a
|
|
104
104
|
terminal window to extract and run ExifTool:
|
105
105
|
|
106
106
|
cd ~/Desktop
|
107
|
-
gzip -dc Image-ExifTool-11.
|
108
|
-
cd Image-ExifTool-11.
|
107
|
+
gzip -dc Image-ExifTool-11.69.tar.gz | tar -xf -
|
108
|
+
cd Image-ExifTool-11.69
|
109
109
|
./exiftool t/images/ExifTool.jpg
|
110
110
|
|
111
111
|
Note: These commands extract meta information from one of the test images.
|
data/bin/exiftool
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
use strict;
|
11
11
|
require 5.004;
|
12
12
|
|
13
|
-
my $version = '11.
|
13
|
+
my $version = '11.69';
|
14
14
|
|
15
15
|
# add our 'lib' directory to the include list BEFORE 'use Image::ExifTool'
|
16
16
|
my $exeDir;
|
@@ -5173,7 +5173,7 @@ with this command:
|
|
5173
5173
|
|
5174
5174
|
produces output like this:
|
5175
5175
|
|
5176
|
-
-- Generated by ExifTool 11.
|
5176
|
+
-- Generated by ExifTool 11.69 --
|
5177
5177
|
File: a.jpg - 2003:10:31 15:44:19
|
5178
5178
|
(f/5.6, 1/60s, ISO 100)
|
5179
5179
|
File: b.jpg - 2006:05:23 11:57:38
|
data/bin/lib/Image/ExifTool.pm
CHANGED
@@ -27,7 +27,7 @@ use vars qw($VERSION $RELEASE @ISA @EXPORT_OK %EXPORT_TAGS $AUTOLOAD @fileTypes
|
|
27
27
|
%mimeType $swapBytes $swapWords $currentByteOrder %unpackStd
|
28
28
|
%jpegMarker %specialTags %fileTypeLookup);
|
29
29
|
|
30
|
-
$VERSION = '11.
|
30
|
+
$VERSION = '11.69';
|
31
31
|
$RELEASE = '';
|
32
32
|
@ISA = qw(Exporter);
|
33
33
|
%EXPORT_TAGS = (
|
@@ -213,8 +213,8 @@ writable directly, but is written automatically by ExifTool (often when a
|
|
213
213
|
corresponding L<Composite|Image::ExifTool::TagNames/Composite Tags> or
|
214
214
|
L<Extra|Image::ExifTool::TagNames/Extra Tags> tag is written). A colon
|
215
215
|
(C<:>) indicates a I<Mandatory> tag which may be added automatically when
|
216
|
-
writing. Normally
|
217
|
-
caret (C<^>) indicates a I<Deletable>
|
216
|
+
writing. Normally MakerNotes tags may not be deleted individually, but a
|
217
|
+
caret (C<^>) indicates a I<Deletable> MakerNotes tag.
|
218
218
|
|
219
219
|
The HTML version of these tables also lists possible B<Values> for
|
220
220
|
discrete-valued tags, as well as B<Notes> for some tags. The B<Values> are
|
@@ -62,8 +62,8 @@ writable directly, but is written automatically by ExifTool (often when a
|
|
62
62
|
corresponding L<Composite|Image::ExifTool::TagNames/Composite Tags> or
|
63
63
|
L<Extra|Image::ExifTool::TagNames/Extra Tags> tag is written). A colon
|
64
64
|
(C<:>) indicates a I<Mandatory> tag which may be added automatically when
|
65
|
-
writing. Normally
|
66
|
-
caret (C<^>) indicates a I<Deletable>
|
65
|
+
writing. Normally MakerNotes tags may not be deleted individually, but a
|
66
|
+
caret (C<^>) indicates a I<Deletable> MakerNotes tag.
|
67
67
|
|
68
68
|
The HTML version of these tables also lists possible B<Values> for
|
69
69
|
discrete-valued tags, as well as B<Notes> for some tags. The B<Values> are
|
@@ -158,10 +158,10 @@ sub ConvInvISO6709($)
|
|
158
158
|
if (@a == 2 or @a == 3) {
|
159
159
|
# latitude must have 2 digits before the decimal, and longitude 3,
|
160
160
|
# and all values must start with a "+" or "-"
|
161
|
-
my @fmt = ('
|
161
|
+
my @fmt = ('%s%02d','%s%03d','%s%d');
|
162
162
|
foreach (@a) {
|
163
163
|
return undef unless Image::ExifTool::IsFloat($_);
|
164
|
-
$_ =~ s/^([-+]
|
164
|
+
$_ =~ s/^([-+]?)(\d+)/sprintf(shift(@fmt), $1 || '+', $2)/e;
|
165
165
|
}
|
166
166
|
return join '', @a;
|
167
167
|
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: exiftool_vendored
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 11.
|
4
|
+
version: 11.69.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matthew McEachen
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2019-10-
|
12
|
+
date: 2019-10-02 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: exiftool
|