exiftool_vendored 10.65.0 → 11.41.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.
- checksums.yaml +4 -4
- data/bin/Changes +818 -19
- data/bin/MANIFEST +38 -0
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/README +48 -44
- data/bin/arg_files/exif2xmp.args +4 -1
- data/bin/arg_files/gps2xmp.args +4 -1
- data/bin/arg_files/iptcCore.args +8 -0
- data/bin/arg_files/xmp2exif.args +4 -1
- data/bin/arg_files/xmp2gps.args +4 -1
- data/bin/config_files/dji.config +131 -0
- data/bin/config_files/example.config +6 -2
- data/bin/config_files/gps2utm.config +256 -256
- data/bin/config_files/nksc.config +146 -0
- data/bin/config_files/picasa_faces.config +382 -382
- data/bin/exiftool +688 -408
- data/bin/fmt_files/gpx.fmt +10 -6
- data/bin/fmt_files/gpx_wpt.fmt +10 -6
- data/bin/fmt_files/kml.fmt +8 -5
- data/bin/lib/File/RandomAccess.pm +48 -8
- data/bin/lib/File/RandomAccess.pod +21 -2
- data/bin/lib/Image/ExifTool.pm +645 -256
- data/bin/lib/Image/ExifTool.pod +219 -164
- data/bin/lib/Image/ExifTool/AES.pm +1 -1
- data/bin/lib/Image/ExifTool/AFCP.pm +3 -8
- data/bin/lib/Image/ExifTool/AIFF.pm +12 -4
- data/bin/lib/Image/ExifTool/APE.pm +1 -1
- data/bin/lib/Image/ExifTool/APP12.pm +1 -1
- data/bin/lib/Image/ExifTool/ASF.pm +19 -6
- data/bin/lib/Image/ExifTool/Apple.pm +13 -5
- data/bin/lib/Image/ExifTool/Audible.pm +1 -1
- data/bin/lib/Image/ExifTool/BMP.pm +1 -1
- data/bin/lib/Image/ExifTool/BPG.pm +17 -15
- data/bin/lib/Image/ExifTool/BZZ.pm +1 -1
- data/bin/lib/Image/ExifTool/BigTIFF.pm +30 -15
- data/bin/lib/Image/ExifTool/BuildTagLookup.pm +103 -52
- data/bin/lib/Image/ExifTool/Canon.pm +684 -112
- data/bin/lib/Image/ExifTool/CanonCustom.pm +119 -9
- data/bin/lib/Image/ExifTool/CanonRaw.pm +1 -1
- data/bin/lib/Image/ExifTool/CanonVRD.pm +13 -26
- data/bin/lib/Image/ExifTool/CaptureOne.pm +1 -1
- data/bin/lib/Image/ExifTool/Casio.pm +1 -1
- data/bin/lib/Image/ExifTool/Charset.pm +1 -1
- data/bin/lib/Image/ExifTool/DICOM.pm +12 -5
- data/bin/lib/Image/ExifTool/DJI.pm +51 -3
- data/bin/lib/Image/ExifTool/DNG.pm +15 -8
- data/bin/lib/Image/ExifTool/DPX.pm +1 -1
- data/bin/lib/Image/ExifTool/DV.pm +1 -1
- data/bin/lib/Image/ExifTool/DarwinCore.pm +63 -23
- data/bin/lib/Image/ExifTool/DjVu.pm +4 -2
- data/bin/lib/Image/ExifTool/EXE.pm +30 -6
- data/bin/lib/Image/ExifTool/Exif.pm +351 -109
- data/bin/lib/Image/ExifTool/FITS.pm +148 -0
- data/bin/lib/Image/ExifTool/FLAC.pm +2 -2
- data/bin/lib/Image/ExifTool/FLIF.pm +1 -1
- data/bin/lib/Image/ExifTool/FLIR.pm +109 -13
- data/bin/lib/Image/ExifTool/Fixup.pm +1 -1
- data/bin/lib/Image/ExifTool/Flash.pm +3 -3
- data/bin/lib/Image/ExifTool/FlashPix.pm +433 -9
- data/bin/lib/Image/ExifTool/Font.pm +2 -2
- data/bin/lib/Image/ExifTool/FotoStation.pm +1 -1
- data/bin/lib/Image/ExifTool/FujiFilm.pm +336 -16
- data/bin/lib/Image/ExifTool/GE.pm +1 -1
- data/bin/lib/Image/ExifTool/GIF.pm +5 -7
- data/bin/lib/Image/ExifTool/GIMP.pm +39 -3
- data/bin/lib/Image/ExifTool/GPS.pm +48 -22
- data/bin/lib/Image/ExifTool/GeoTiff.pm +23 -23
- data/bin/lib/Image/ExifTool/Geotag.pm +80 -45
- data/bin/lib/Image/ExifTool/GoPro.pm +709 -0
- data/bin/lib/Image/ExifTool/H264.pm +40 -18
- data/bin/lib/Image/ExifTool/HP.pm +1 -1
- data/bin/lib/Image/ExifTool/HTML.pm +19 -12
- data/bin/lib/Image/ExifTool/HtmlDump.pm +37 -26
- data/bin/lib/Image/ExifTool/ICC_Profile.pm +297 -23
- data/bin/lib/Image/ExifTool/ID3.pm +12 -7
- data/bin/lib/Image/ExifTool/IPTC.pm +48 -19
- data/bin/lib/Image/ExifTool/ISO.pm +1 -1
- data/bin/lib/Image/ExifTool/ITC.pm +1 -1
- data/bin/lib/Image/ExifTool/Import.pm +13 -9
- data/bin/lib/Image/ExifTool/InDesign.pm +3 -5
- data/bin/lib/Image/ExifTool/JPEG.pm +22 -11
- data/bin/lib/Image/ExifTool/JPEGDigest.pm +1 -1
- data/bin/lib/Image/ExifTool/JSON.pm +3 -3
- data/bin/lib/Image/ExifTool/JVC.pm +1 -1
- data/bin/lib/Image/ExifTool/Jpeg2000.pm +2 -2
- data/bin/lib/Image/ExifTool/Kodak.pm +1233 -58
- data/bin/lib/Image/ExifTool/KyoceraRaw.pm +1 -1
- data/bin/lib/Image/ExifTool/LNK.pm +1 -1
- data/bin/lib/Image/ExifTool/Lang/cs.pm +1 -1
- data/bin/lib/Image/ExifTool/Lang/de.pm +33 -24
- data/bin/lib/Image/ExifTool/Lang/en_ca.pm +64 -2
- data/bin/lib/Image/ExifTool/Lang/en_gb.pm +64 -2
- data/bin/lib/Image/ExifTool/Lang/es.pm +8 -4
- data/bin/lib/Image/ExifTool/Lang/fi.pm +46 -4
- data/bin/lib/Image/ExifTool/Lang/fr.pm +5 -3
- data/bin/lib/Image/ExifTool/Lang/it.pm +6 -3
- data/bin/lib/Image/ExifTool/Lang/ja.pm +15 -3
- data/bin/lib/Image/ExifTool/Lang/ko.pm +5 -2
- data/bin/lib/Image/ExifTool/Lang/nl.pm +6 -3
- data/bin/lib/Image/ExifTool/Lang/pl.pm +2 -2
- data/bin/lib/Image/ExifTool/Lang/ru.pm +1 -1
- data/bin/lib/Image/ExifTool/Lang/sv.pm +1 -1
- data/bin/lib/Image/ExifTool/Lang/tr.pm +4 -2
- data/bin/lib/Image/ExifTool/Lang/zh_cn.pm +1 -1
- data/bin/lib/Image/ExifTool/Lang/zh_tw.pm +1 -1
- data/bin/lib/Image/ExifTool/Leaf.pm +1 -1
- data/bin/lib/Image/ExifTool/Lytro.pm +4 -8
- data/bin/lib/Image/ExifTool/M2TS.pm +10 -9
- data/bin/lib/Image/ExifTool/MIE.pm +12 -8
- data/bin/lib/Image/ExifTool/MIEUnits.pod +1 -1
- data/bin/lib/Image/ExifTool/MIFF.pm +1 -1
- data/bin/lib/Image/ExifTool/MNG.pm +1 -1
- data/bin/lib/Image/ExifTool/MOI.pm +1 -1
- data/bin/lib/Image/ExifTool/MPC.pm +1 -1
- data/bin/lib/Image/ExifTool/MPEG.pm +2 -3
- data/bin/lib/Image/ExifTool/MPF.pm +6 -6
- data/bin/lib/Image/ExifTool/MWG.pm +4 -4
- data/bin/lib/Image/ExifTool/MXF.pm +2 -2
- data/bin/lib/Image/ExifTool/MacOS.pm +184 -34
- data/bin/lib/Image/ExifTool/MakerNotes.pm +101 -18
- data/bin/lib/Image/ExifTool/Matroska.pm +1 -1
- data/bin/lib/Image/ExifTool/Microsoft.pm +5 -3
- data/bin/lib/Image/ExifTool/Minolta.pm +89 -62
- data/bin/lib/Image/ExifTool/MinoltaRaw.pm +1 -1
- data/bin/lib/Image/ExifTool/Motorola.pm +1 -1
- data/bin/lib/Image/ExifTool/Nikon.pm +1511 -380
- data/bin/lib/Image/ExifTool/NikonCapture.pm +1 -1
- data/bin/lib/Image/ExifTool/NikonCustom.pm +2758 -2935
- data/bin/lib/Image/ExifTool/Nintendo.pm +1 -1
- data/bin/lib/Image/ExifTool/OOXML.pm +1 -1
- data/bin/lib/Image/ExifTool/Ogg.pm +1 -1
- data/bin/lib/Image/ExifTool/Olympus.pm +47 -8
- data/bin/lib/Image/ExifTool/OpenEXR.pm +1 -1
- data/bin/lib/Image/ExifTool/Opus.pm +1 -1
- data/bin/lib/Image/ExifTool/PCX.pm +138 -0
- data/bin/lib/Image/ExifTool/PDF.pm +58 -42
- data/bin/lib/Image/ExifTool/PGF.pm +1 -1
- data/bin/lib/Image/ExifTool/PICT.pm +1 -1
- data/bin/lib/Image/ExifTool/PLIST.pm +12 -5
- data/bin/lib/Image/ExifTool/PLUS.pm +1 -1
- data/bin/lib/Image/ExifTool/PNG.pm +108 -10
- data/bin/lib/Image/ExifTool/PPM.pm +3 -3
- data/bin/lib/Image/ExifTool/PSP.pm +1 -1
- data/bin/lib/Image/ExifTool/Palm.pm +1 -1
- data/bin/lib/Image/ExifTool/Panasonic.pm +299 -31
- data/bin/lib/Image/ExifTool/PanasonicRaw.pm +201 -19
- data/bin/lib/Image/ExifTool/Pentax.pm +164 -143
- data/bin/lib/Image/ExifTool/PhaseOne.pm +12 -5
- data/bin/lib/Image/ExifTool/PhotoCD.pm +9 -10
- data/bin/lib/Image/ExifTool/PhotoMechanic.pm +1 -1
- data/bin/lib/Image/ExifTool/Photoshop.pm +230 -60
- data/bin/lib/Image/ExifTool/PostScript.pm +29 -4
- data/bin/lib/Image/ExifTool/PrintIM.pm +1 -1
- data/bin/lib/Image/ExifTool/Qualcomm.pm +2 -2
- data/bin/lib/Image/ExifTool/QuickTime.pm +1539 -279
- data/bin/lib/Image/ExifTool/QuickTimeStream.pl +1857 -0
- data/bin/lib/Image/ExifTool/README +84 -46
- data/bin/lib/Image/ExifTool/RIFF.pm +116 -23
- data/bin/lib/Image/ExifTool/RSRC.pm +1 -1
- data/bin/lib/Image/ExifTool/RTF.pm +6 -4
- data/bin/lib/Image/ExifTool/Radiance.pm +1 -1
- data/bin/lib/Image/ExifTool/Rawzor.pm +3 -2
- data/bin/lib/Image/ExifTool/Real.pm +1 -1
- data/bin/lib/Image/ExifTool/Reconyx.pm +261 -7
- data/bin/lib/Image/ExifTool/Red.pm +325 -0
- data/bin/lib/Image/ExifTool/Ricoh.pm +3 -7
- data/bin/lib/Image/ExifTool/Samsung.pm +95 -25
- data/bin/lib/Image/ExifTool/Sanyo.pm +1 -1
- data/bin/lib/Image/ExifTool/Scalado.pm +1 -1
- data/bin/lib/Image/ExifTool/Shift.pl +26 -12
- data/bin/lib/Image/ExifTool/Shortcuts.pm +9 -2
- data/bin/lib/Image/ExifTool/Sigma.pm +36 -30
- data/bin/lib/Image/ExifTool/SigmaRaw.pm +3 -8
- data/bin/lib/Image/ExifTool/Sony.pm +531 -177
- data/bin/lib/Image/ExifTool/SonyIDC.pm +63 -3
- data/bin/lib/Image/ExifTool/Stim.pm +2 -2
- data/bin/lib/Image/ExifTool/TagInfoXML.pm +23 -23
- data/bin/lib/Image/ExifTool/TagLookup.pm +6352 -5062
- data/bin/lib/Image/ExifTool/TagNames.pod +3024 -565
- data/bin/lib/Image/ExifTool/Theora.pm +1 -1
- data/bin/lib/Image/ExifTool/Torrent.pm +2 -2
- data/bin/lib/Image/ExifTool/Unknown.pm +1 -1
- data/bin/lib/Image/ExifTool/VCard.pm +47 -9
- data/bin/lib/Image/ExifTool/Validate.pm +391 -99
- data/bin/lib/Image/ExifTool/Vorbis.pm +1 -1
- data/bin/lib/Image/ExifTool/WTV.pm +319 -0
- data/bin/lib/Image/ExifTool/WriteCanonRaw.pl +1 -1
- data/bin/lib/Image/ExifTool/WriteExif.pl +91 -18
- data/bin/lib/Image/ExifTool/WriteIPTC.pl +6 -6
- data/bin/lib/Image/ExifTool/WritePDF.pl +13 -12
- data/bin/lib/Image/ExifTool/WritePNG.pl +1 -1
- data/bin/lib/Image/ExifTool/WritePhotoshop.pl +1 -1
- data/bin/lib/Image/ExifTool/WritePostScript.pl +2 -2
- data/bin/lib/Image/ExifTool/WriteQuickTime.pl +764 -121
- data/bin/lib/Image/ExifTool/WriteXMP.pl +176 -67
- data/bin/lib/Image/ExifTool/Writer.pl +490 -246
- data/bin/lib/Image/ExifTool/XMP.pm +216 -76
- data/bin/lib/Image/ExifTool/XMP2.pl +54 -10
- data/bin/lib/Image/ExifTool/XMPStruct.pl +14 -11
- data/bin/lib/Image/ExifTool/ZIP.pm +60 -15
- data/bin/lib/Image/ExifTool/iWork.pm +12 -5
- data/bin/perl-Image-ExifTool.spec +46 -44
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +14 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0755f2509103600610d12ec4bf7d41750fca0fd2
|
|
4
|
+
data.tar.gz: 278c5c1411720dc8c61d229567910563ccef4d3f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f37f7a56f38c9d9577e913523c838a43d1f2ad3845492657cba9b45b6d477b5b5f0b3a842b13d2a142aa4bbba4d4ab1abc29d9c071692ca604d89109dc807a18
|
|
7
|
+
data.tar.gz: d39c2848b7df47178072ade8108aafe69506053c73df9bbb29eb82cf1d2c09e1e8ecb52101086aa734afe853bbc86a1294259d09b3de95fb2c114f8f237eb94f
|
data/bin/Changes
CHANGED
|
@@ -4,9 +4,807 @@ ExifTool Version History
|
|
|
4
4
|
|
|
5
5
|
RSS feed: http://owl.phy.queensu.ca/~phil/exiftool/rss.xml
|
|
6
6
|
|
|
7
|
-
Note: The most recent production release is Version
|
|
7
|
+
Note: The most recent production release is Version 11.30. (Other versions are
|
|
8
8
|
considered development releases, and are not uploaded to CPAN.)
|
|
9
9
|
|
|
10
|
+
May 9, 2019 - Version 11.41
|
|
11
|
+
|
|
12
|
+
- Added write support and improved language handling for 3GP QuickTime tags
|
|
13
|
+
- Fixed some language translations (thanks Herbert Kauer)
|
|
14
|
+
- Fixed format problems writing some binary values to QuickTime tags
|
|
15
|
+
|
|
16
|
+
May 7, 2019 - Version 11.40
|
|
17
|
+
|
|
18
|
+
- Added a new Canon LensType
|
|
19
|
+
- Added a new value for EXIF:SceneCaptureType used by some Samsung cameras
|
|
20
|
+
- Fixed QuickTime writing to preserve existing same-named default-language
|
|
21
|
+
tags in other groups when writing a default language tag
|
|
22
|
+
|
|
23
|
+
May 3, 2019 - Version 11.39
|
|
24
|
+
|
|
25
|
+
- Added ability to create new QuickTime tags in MOV/MP4 videos
|
|
26
|
+
- Added two new Canon LensTypes and a new CanonModelID (thanks LibRaw)
|
|
27
|
+
- Added a few new Sony/Minolta LensType values (thanks Jos Roost)
|
|
28
|
+
- Added a number of new QuickTime GenreID values
|
|
29
|
+
- Added range check on date/time values when writing
|
|
30
|
+
- Decode Canon EOS D60 black levels
|
|
31
|
+
- Split off some QuickTime tags into different family 1 groups
|
|
32
|
+
- Fixed "Chunk offset outside movie data" error when writing some HEIC files
|
|
33
|
+
- Fixed decoding of Pentax AutoBracketing for K-1 and K-5
|
|
34
|
+
- Fixed some QuickTime family 2 group names
|
|
35
|
+
- Fixed bug introduced in 11.38 that broke extraction of thumbnail images from
|
|
36
|
+
Canon MOV videos
|
|
37
|
+
|
|
38
|
+
Apr. 24, 2019 - Version 11.38
|
|
39
|
+
|
|
40
|
+
- Added Extra JPEGImageLength tag
|
|
41
|
+
- Added nksc.config to the sample config files
|
|
42
|
+
- Added a couple more Sony/Minolta LensTypes (thanks Jos Roost)
|
|
43
|
+
- Added a couple of new Sigma LensType values
|
|
44
|
+
- Decode a couple more tags from Pittasoft dashcam videos
|
|
45
|
+
- Decode two new FLIR tags (thanks Corinne Berthier)
|
|
46
|
+
- Decode a new ERF tag, and fix wrong format for some others (thanks LibRaw)
|
|
47
|
+
- Improved decoding of Sigma maker notes for some models
|
|
48
|
+
- Enhanced Composite tag logic to allow a scalar Inhibit entry
|
|
49
|
+
- Enhanced XMP processing to support readable subdirectories embedded in a tag
|
|
50
|
+
- Updated some language translations
|
|
51
|
+
- Patched Composite GPS reference direction tags to prevent them from being
|
|
52
|
+
created if these tags already exist
|
|
53
|
+
- Fixed problem reading some odd PDF files
|
|
54
|
+
|
|
55
|
+
Apr. 17, 2019 - Version 11.37
|
|
56
|
+
|
|
57
|
+
- Added a new Sony AFAreaMode (thanks Jos Roost)
|
|
58
|
+
- Decode GPS and other tags from Pittasoft Blackvue dashcam videos
|
|
59
|
+
- Improved decoding of FujiFilm FlickerReduction
|
|
60
|
+
- Ignore any garbage before an NMEA sentence when geotagging
|
|
61
|
+
- Fixed bug which could result in loss of timed GPS metadata when writing MP4
|
|
62
|
+
videos
|
|
63
|
+
|
|
64
|
+
Apr. 15, 2019 - Version 11.36
|
|
65
|
+
|
|
66
|
+
- Added a number of new MacOS tags
|
|
67
|
+
- Added a new CanonModelID (thanks Laurent Clevy)
|
|
68
|
+
- Added some new Canon EasyMode and AFAreaMode values
|
|
69
|
+
- Added two new Canon AspectRatio values (thanks LibRaw)
|
|
70
|
+
- Decode a new Nikon tag (thanks LibRaw)
|
|
71
|
+
- Decode some new FujiFilm tags
|
|
72
|
+
- Updated Sony maker notes for the DSC-RX0M2 (thanks Jos Roost)
|
|
73
|
+
- Hide the Nikon ShotInfo offset tags
|
|
74
|
+
- Fixed problem decoding NikonCustom settings for some D810 firmware versions
|
|
75
|
+
- Fixed typo in a warning message (thanks Hayo Baan)
|
|
76
|
+
|
|
77
|
+
Apr. 9, 2019 - Version 11.35
|
|
78
|
+
|
|
79
|
+
- Added print conversion for MDItemFSLabel
|
|
80
|
+
- Added a new Sony LensType (thanks Jos Roost)
|
|
81
|
+
- Added an additional -validate check for PNG images
|
|
82
|
+
- Decode a few more FujiFilm RAF tags (thanks LibRaw)
|
|
83
|
+
- Decode a couple more QuickTime tags
|
|
84
|
+
- Allow "Copy0" to be specified as a group name for the copy number of the
|
|
85
|
+
primary tag when extracting information
|
|
86
|
+
- Improved the Composite ImageSize tag to report the RawImageCroppedSize for
|
|
87
|
+
FujiFilm RAF images
|
|
88
|
+
- Changed Composite ImageSize tag to use a space instead of "x" as a separator
|
|
89
|
+
when the -n option is used
|
|
90
|
+
- Fixed problem writing user-defined PhaseOne SensorCalibration tags
|
|
91
|
+
- Fixed problem where a List-type tag may not be split into individual items
|
|
92
|
+
with the -sep option when using the advanced-formatting "@" feature
|
|
93
|
+
- API Changes:
|
|
94
|
+
- Patched a potential pitfall if calling code used both the old List and
|
|
95
|
+
ListSep options at the same time as the new ListJoin option
|
|
96
|
+
|
|
97
|
+
Apr. 4, 2019 - Version 11.34
|
|
98
|
+
|
|
99
|
+
- Added a couple of new Canon LensType values (thanks LibRaw for one)
|
|
100
|
+
- Added a new CanonExposureMode value (thanks Arnold van Oostrum)
|
|
101
|
+
- Added support for FujiFilm X-H1 Ver2.01 RAF images
|
|
102
|
+
- Decode a couple of new Sony tags (thanks LibRaw)
|
|
103
|
+
- Improved decoding of Sony Shutter tag (thanks Jos Roost)
|
|
104
|
+
- Improved identification of some Sony lenses (thanks Jos Roost)
|
|
105
|
+
- Improved parsing of streamed metadata from TomTom Bandit videos
|
|
106
|
+
- Improved warning for truncated QuickTime atom
|
|
107
|
+
- Accept wider range of formats when writing QuickTime:GPSCoordinates
|
|
108
|
+
- API Changes:
|
|
109
|
+
- Changed SetFileName() 'Link' option name to 'HardLink' (but still allow
|
|
110
|
+
'Link' for backward compatibility)
|
|
111
|
+
|
|
112
|
+
Mar. 28, 2019 - Version 11.33
|
|
113
|
+
|
|
114
|
+
- Added write support for HEIC/HEIF files
|
|
115
|
+
- Added new write-only SymLink tag for creating symbolic links
|
|
116
|
+
- Made EXIF GDALMetadata and GDALNoData writable
|
|
117
|
+
- Enhanced writing capabilities for MOV/MP4 videos
|
|
118
|
+
- Enhanced -validate option to add more IPTC checks
|
|
119
|
+
- Updated decoding of Sony ILCE-9 maker notes for firmware version 5.00
|
|
120
|
+
(thanks Jos Roost)
|
|
121
|
+
- Fixed problem reading streamed metadata from some TomTom Bandit videos
|
|
122
|
+
- API Changes:
|
|
123
|
+
- Added SymLink option to SetFileName()
|
|
124
|
+
|
|
125
|
+
Mar. 14, 2019 - Version 11.32
|
|
126
|
+
|
|
127
|
+
- Added a new Nikon LensID (thanks Kenneth Cochran)
|
|
128
|
+
- Added a couple of new QuickTime HandlerType values
|
|
129
|
+
- Decode streamed metadata from DuDuBell M1 and VSYS M6L dashcam videos
|
|
130
|
+
- Attempt to improve Nikon lens identification
|
|
131
|
+
- API Changes:
|
|
132
|
+
- Added new single-argument version of ShiftTime()
|
|
133
|
+
|
|
134
|
+
Mar. 7, 2019 - Version 11.31
|
|
135
|
+
|
|
136
|
+
- Added read support for FITS images
|
|
137
|
+
- Another try at removing spaces from some DICOM values (github issues #10/12)
|
|
138
|
+
|
|
139
|
+
Mar. 6, 2019 - Version 11.30 (production release)
|
|
140
|
+
|
|
141
|
+
- Added a new Sony/Minolta LensType (thanks Jos Roost)
|
|
142
|
+
- Decode streaming metadata from TomTom Bandit Action Cam MP4 videos
|
|
143
|
+
- Decode Reconyx HF2 PRO maker notes
|
|
144
|
+
- Decode ColorData for some new Canon models (thanks LibRaw)
|
|
145
|
+
- Enhanced -geotag feature to set AmbientTemperature if available
|
|
146
|
+
- Remove non-significant spaces from some DICOM values (github issues #10/12)
|
|
147
|
+
- Fixed possible "'x' outside of string" error when reading corrupted EXIF
|
|
148
|
+
- Fixed incorrect write group for GeoTIFF tags added in version 11.24
|
|
149
|
+
|
|
150
|
+
Feb. 28, 2019 - Version 11.29
|
|
151
|
+
|
|
152
|
+
- Added support for Ricoh GR III maker notes
|
|
153
|
+
- Added a new Canon LensType (thanks Claude Jolicoeur)
|
|
154
|
+
- Added a new XMP-crs tag (github issue #8)
|
|
155
|
+
- Enhanced -csv option to output base64-encoded binary data when combined with
|
|
156
|
+
-b or when the -charset option is used and the text has invalid characters
|
|
157
|
+
(github issue #11)
|
|
158
|
+
- Remove trailing space from even-length DICOM values (github issue #9)
|
|
159
|
+
- Patched to avoid "Hexadecimal number > 0xffffffff non-portable" warning
|
|
160
|
+
(github issue #6)
|
|
161
|
+
- Fixed meta charset attribute in -htmlDump output
|
|
162
|
+
|
|
163
|
+
Feb. 21, 2019 - Version 11.28
|
|
164
|
+
|
|
165
|
+
- Added support for reading INSV video and decode streaming GPS
|
|
166
|
+
- Added a new Pentax LensType (thanks Louis Granboulan)
|
|
167
|
+
- Added a new FujiFilm ImageStabilization value
|
|
168
|
+
- Allow exiftool to be run via a symbolic link on Mac/Linux
|
|
169
|
+
- Reverted INDD patch of version 11.27 (ie. raise error again on incorrectly
|
|
170
|
+
terminated INDD object list)
|
|
171
|
+
- Changed handling of temporary documentation file in Windows version
|
|
172
|
+
|
|
173
|
+
Feb. 14, 2019 - Version 11.27
|
|
174
|
+
|
|
175
|
+
- Added support for more XMP-dji-drone tags
|
|
176
|
+
- Added new Olympus CameraType and LensType values (thanks LibRaw)
|
|
177
|
+
- Added a new Canon LensType (thanks LibRaw)
|
|
178
|
+
- Added a new CanonModelID
|
|
179
|
+
- Decode yet another type of GPS from DashCam videos
|
|
180
|
+
- Allow FileName to be written when only case is changed on case-insensitive
|
|
181
|
+
filesystems
|
|
182
|
+
- Improved identification of some iWork file types
|
|
183
|
+
- Recognize the LRV file extension
|
|
184
|
+
- Changed Windows version to use the parent folder of PAR_GLOBAL_TEMP for the
|
|
185
|
+
temporary documentation file
|
|
186
|
+
- Don't raise an error if an INDD object list is terminated by spaces instead
|
|
187
|
+
of nulls
|
|
188
|
+
- Fixed some problems with new -htmldump IFD highlighting feature
|
|
189
|
+
- Fixed bug introduced in 11.24 with "-o -.EXT" feature
|
|
190
|
+
|
|
191
|
+
Jan. 21, 2019 - Version 11.26
|
|
192
|
+
|
|
193
|
+
- Added a new Nikon LensID (thanks LibRaw)
|
|
194
|
+
- Decode more tags for the Sony ICLE-6400 (thanks Jos Roost and LibRaw)
|
|
195
|
+
- Enhanced -htmldump feature to highlight IFD when mousing over IFD offset
|
|
196
|
+
|
|
197
|
+
Jan. 15, 2019 - Version 11.25
|
|
198
|
+
|
|
199
|
+
- Added a new Sony/Minolta LensType (thanks LibRaw)
|
|
200
|
+
- Added a new Nikon LensID
|
|
201
|
+
- Decode Leica D-Lux7 maker notes
|
|
202
|
+
- Decode more Nikon AF tags for newer models
|
|
203
|
+
- Decode Samsung Type2 maker notes with lower case Make
|
|
204
|
+
- Decode another Sony tag (thanks Jos Roost)
|
|
205
|
+
- Improved decoding of Nikon LensType
|
|
206
|
+
- Improved time shift feature to fix some incorrectly formatted date/time
|
|
207
|
+
values
|
|
208
|
+
- Renamed some Sony ImageCount tags to ShutterCount (thanks Jos Roost)
|
|
209
|
+
- Fixed problem reading back metadata written to some odd PDF files
|
|
210
|
+
|
|
211
|
+
Jan. 8, 2019 - Version 11.24
|
|
212
|
+
|
|
213
|
+
- Compatibility Notice: Changed the meaning of '-' and '+' modifiers for %C
|
|
214
|
+
formatting code (does not affect lower-case %c code)
|
|
215
|
+
- Decode a number of new Nikon tags (thanks Michael Tapes for samples)
|
|
216
|
+
- Added new Olympus FlashType and FlashModel values (thanks Per)
|
|
217
|
+
- Added a new Canon LensType
|
|
218
|
+
- Added a new Nikon LensID
|
|
219
|
+
- Made more GeoTIFF tags writable
|
|
220
|
+
- Handle XMP rdf:value when reading
|
|
221
|
+
- Improved warning when trying to read a file with a zero-length name
|
|
222
|
+
- Fixed decoding of PictureControl tags for Nikon Z-7
|
|
223
|
+
- Fixed problem writing date/time values with " DST" designator at end of
|
|
224
|
+
date/time string
|
|
225
|
+
- Fixed problem in Windows which could cause ExifTool to abort due to a
|
|
226
|
+
Win32::FindFile error if a file name contained surrogate Unicode characters
|
|
227
|
+
|
|
228
|
+
Dec. 21, 2018 - Version 11.23
|
|
229
|
+
|
|
230
|
+
- Recognize DWG and DWF files
|
|
231
|
+
- Minor improvement to some -validate warnings
|
|
232
|
+
- Tolerate leading UTF-8 byte order mark (BOM) at start of JSON files
|
|
233
|
+
- Fixed problem recognizing some streaming camm metadata in QuickTime videos
|
|
234
|
+
|
|
235
|
+
Dec. 13, 2018 - Version 11.22
|
|
236
|
+
|
|
237
|
+
- Added read support for PC Paintbrush (PCX) files
|
|
238
|
+
- Added two new Sony/Minolta LensTypes (thanks Jos Roost and LibRaw)
|
|
239
|
+
- Decode LensData tags for some newer Nikon models
|
|
240
|
+
- Decode ColorData for the Canon EOS R (thanks LibRaw)
|
|
241
|
+
- Recognize DCX files
|
|
242
|
+
|
|
243
|
+
Dec. 7, 2018 - Version 11.21
|
|
244
|
+
|
|
245
|
+
- Added a new Sony/Minolta LensType (thanks Jos Roost)
|
|
246
|
+
- Added a new Olympus FlashModel (thanks Michael Meissner)
|
|
247
|
+
- Improved decoding of FujiFilm InternalSerialNumber (thanks LibRaw)
|
|
248
|
+
- Minor improvements to decoding of GPS from some dashcam videos
|
|
249
|
+
- Made XMP-getty:Personality a List-type tag
|
|
250
|
+
- Made it an error to use the -o option or write FileName or Directory tags
|
|
251
|
+
when using the TestName dry-run feature
|
|
252
|
+
- Fixed problem using -E with other character sets when writing
|
|
253
|
+
|
|
254
|
+
Nov. 20, 2018 - Version 11.20
|
|
255
|
+
|
|
256
|
+
- Added a new Panasonic WhiteBalance value
|
|
257
|
+
- Added a new Nikon LensID (thanks LibRaw)
|
|
258
|
+
- Decode streaming GPS from MOV videos for another dashcam model
|
|
259
|
+
- Improved -E option to support character sets other than UTF-8
|
|
260
|
+
|
|
261
|
+
Nov. 14, 2018 - Version 11.19
|
|
262
|
+
|
|
263
|
+
- Added -fast4 option
|
|
264
|
+
- Enhanced -if option to allow arbitrary Perl expressions instead of just
|
|
265
|
+
logic expressions
|
|
266
|
+
- API Changes:
|
|
267
|
+
- Enhanced FastScan option to add a setting of 4
|
|
268
|
+
|
|
269
|
+
Nov. 12, 2018 - Version 11.18
|
|
270
|
+
|
|
271
|
+
- Decode a new Nikon tag (thanks Richard Butler)
|
|
272
|
+
- Decode a new FujiFilm tag
|
|
273
|
+
- Updated decoding of Sony maker notes for newer models (thanks Jos Roost)
|
|
274
|
+
- Enhanced -if option to allow fast processing pass to evaluate the condition
|
|
275
|
+
- Improved warning for unknown JPEG APP segment
|
|
276
|
+
|
|
277
|
+
Nov. 4, 2018 - Version 11.17
|
|
278
|
+
|
|
279
|
+
- Added a new Canon LensType (thanks Norbert Wasser)
|
|
280
|
+
- Added a new Sony/Minolta LensType and a new SonyModelID (thanks LibRaw)
|
|
281
|
+
- Decode GPS from Garmin Dashcam videos
|
|
282
|
+
- Changed type of J2C files from a JPEG 2000 image to a JPEG 2000 codestream
|
|
283
|
+
|
|
284
|
+
Oct. 26, 2018 - Version 11.16
|
|
285
|
+
|
|
286
|
+
- Decode FLIR GPS information
|
|
287
|
+
- Decode 3D image from RED Hydrogen smartphone
|
|
288
|
+
- Minor improvements to decoding of new FujiFilm tags
|
|
289
|
+
- Fixed problem where writing Shortcut tags with the -E option would double
|
|
290
|
+
unescape the HTML entities
|
|
291
|
+
|
|
292
|
+
Oct. 25, 2018 - Version 11.15
|
|
293
|
+
|
|
294
|
+
- Added a couple of new Canon LensType values (thanks LibRaw and Andrew Shieh)
|
|
295
|
+
- Added a new Nikon LensID
|
|
296
|
+
- Added definitions for a few more VCard tags
|
|
297
|
+
- Added a new FujiFilm ShutterType value
|
|
298
|
+
- Decode some new FujiFilm tags (thanks Richard Butler)
|
|
299
|
+
- Store XMP GPS coordinates with two extra digits of precision and trim
|
|
300
|
+
trailing zeros
|
|
301
|
+
- Improved technique for handling rounding errors in times and GPS seconds
|
|
302
|
+
- Removed "Undersized IFD0 StripByteCounts" minor warning when writing ORF
|
|
303
|
+
files since this is a "feature" of most Olympus models
|
|
304
|
+
- Warn about undefined EXIF values with -validate option
|
|
305
|
+
- Changed the way Mask-ed values are decoded (do bit shift automatically)
|
|
306
|
+
- Changed FujiFilm HighISONoiseReduction tag to just "NoiseReduction", and
|
|
307
|
+
avoid extracting historic NoiseReduction tag if value is "n/a"
|
|
308
|
+
- Fixed potential problem reading GeoTiff tags with multiple SHORT values
|
|
309
|
+
- API Changes:
|
|
310
|
+
- Added GeoSpeedRef option
|
|
311
|
+
|
|
312
|
+
Oct. 16, 2018 - Version 11.14
|
|
313
|
+
|
|
314
|
+
- Added more TIFF Compression values
|
|
315
|
+
- Added more AIFF CompressionType values
|
|
316
|
+
- Added more Nikon NEFCompression values (thanks LibRaw)
|
|
317
|
+
- Added a new Canon RecordMode
|
|
318
|
+
- Decode some new Canon custom functions
|
|
319
|
+
- Patched "Invalid VignettingCorrUnknown2 data" warning for EOS R CR3 images
|
|
320
|
+
- Fixed bug were any argument beginning with "-progress" on the command line
|
|
321
|
+
was interpreted as the -progress option
|
|
322
|
+
|
|
323
|
+
Oct. 9, 2018 - Version 11.13
|
|
324
|
+
|
|
325
|
+
- Decode GPS from NextBase 512G dashcam MOV videos (different than 512GW)
|
|
326
|
+
- Added a new Canon LensType (thanks LibRaw)
|
|
327
|
+
- Minor improvements to verbose dump of streaming GPS metadata
|
|
328
|
+
- Reverted change of version 10.71 which resulted in Windows not recognizing
|
|
329
|
+
PNG CreationTime as written by ExifTool (added this feature to the
|
|
330
|
+
StrictDate API option instead)
|
|
331
|
+
- Improved decoding of Nikon CropHiSpeed (thanks LibRaw)
|
|
332
|
+
- Improved -fast option to reduce memory usage when reading JPG, PNG,
|
|
333
|
+
QuickTime-based and RIFF-based files via a sequential stream
|
|
334
|
+
- Fixed DOF calculation to use ApproximateFocusDistance if available
|
|
335
|
+
- API Changes:
|
|
336
|
+
- Enhanced StrictDate option to reformat PNG CreateTime according to PNG
|
|
337
|
+
specification
|
|
338
|
+
|
|
339
|
+
Oct. 2, 2018 - Version 11.12
|
|
340
|
+
|
|
341
|
+
- Added a new Sony/Minolta LensType (thanks LibRaw and Jos Roost)
|
|
342
|
+
- Added a new Nikon LensID
|
|
343
|
+
- Decode a few new Sony SRF2 tags (thanks LibRaw)
|
|
344
|
+
- Decode GPS from NextBase 512GW dashcam MOV videos
|
|
345
|
+
- Validate MS-DOC FIB before extracting contained tags
|
|
346
|
+
- Fixed bug extracting GPSSpeed for some dashcam models
|
|
347
|
+
|
|
348
|
+
Sept. 27, 2018 - Version 11.11 (production release)
|
|
349
|
+
|
|
350
|
+
- Added ARQ to the list of supported file types
|
|
351
|
+
- Added support for GIMP XCF version 4 and later
|
|
352
|
+
- Added a new QuickTime HandlerType value
|
|
353
|
+
- Added read support for Apple AAE files
|
|
354
|
+
- Added a new CanonModelID and some new Canon LensType values (thanks LibRaw)
|
|
355
|
+
- Added a number of new Nikon LensID values (thanks Robert Rottmerhusen)
|
|
356
|
+
- Added a new Sony/Minolta LensType (thanks LibRaw)
|
|
357
|
+
- Decode more Sony IDC tags (thanks Jos Roost)
|
|
358
|
+
- Decode some new Panasonic tags (thanks Klaus Homeister)
|
|
359
|
+
- Decode more tags from Nikon MOV videos
|
|
360
|
+
- Decode a new Nikon tag (thanks LibRaw)
|
|
361
|
+
- Decode a large number of new Kodak IFD tags (thanks Jim McGarvey)
|
|
362
|
+
- Decode streaming GPS from videos of more dashcam and drone models
|
|
363
|
+
- Decode more tags from Microsoft Word DOC files
|
|
364
|
+
- Updated arg_files/iptcCore.args for IPTC Extension version 1.4
|
|
365
|
+
- Patched to read corrupted MakN data written by buggy Adobe Camera Raw
|
|
366
|
+
- Downgraded "Undersized StripByteCounts" error for some RAW file types
|
|
367
|
+
- Fixed incorrect decoding of embedded GPS in Rexing V1P dashcam videos
|
|
368
|
+
- Fixed incorrect format for DNGPrivateData
|
|
369
|
+
- Fixed potential error when deleting maker notes from some images
|
|
370
|
+
- Fixed problem decoding Apple PLIST information from some files
|
|
371
|
+
- Fixed bug in Windows with CR/LF sequences in list values of the -X output
|
|
372
|
+
- Fixed some inconsistencies in detecting file name conflicts when writing the
|
|
373
|
+
TestName tag
|
|
374
|
+
|
|
375
|
+
Aug. 17, 2018 - Version 11.10
|
|
376
|
+
|
|
377
|
+
- Added support for Canon 1DX firmware 2.1.0
|
|
378
|
+
- Added a new Canon LensType (thanks LibRaw)
|
|
379
|
+
- Added a new Nikon LensID (thanks LibRaw)
|
|
380
|
+
- Added a new CanonModelID
|
|
381
|
+
- Decode more tags for newer Sony DSC models (thanks Jos Roost)
|
|
382
|
+
- Decode some new SonyIDC tags (thanks Jos Roost)
|
|
383
|
+
- Decode a number of new Panasonic tags (thanks Klaus Homeister)
|
|
384
|
+
- Improved validation of XMP namespaces
|
|
385
|
+
- Changed "File not found" messages to "Error: File not found"
|
|
386
|
+
- Fixed problem editing tags in Canon DR4 directory
|
|
387
|
+
|
|
388
|
+
Aug. 13, 2018 - Version 11.09
|
|
389
|
+
|
|
390
|
+
- Added new Pentax and Canon LensType values
|
|
391
|
+
- Decode Google Camera Motion metadata from MP4 videos
|
|
392
|
+
- Decode more PanasonicRaw tags (thanks Klaus Homeister)
|
|
393
|
+
- Removed warning when multiple Word document LastSavedBy tags exist and the
|
|
394
|
+
Duplicates option wasn't enabled (added Note in tag name docs instead)
|
|
395
|
+
|
|
396
|
+
Aug. 1, 2018 - Version 11.08
|
|
397
|
+
|
|
398
|
+
- Decode more tags from Microsoft Word documents, including LastSavedBy
|
|
399
|
+
- Decode image file characteristics from Windows EXE files
|
|
400
|
+
- Decode more PanasonicRaw tags (thanks Klaus Homeister)
|
|
401
|
+
- Changed names of new Samsung trailer tags
|
|
402
|
+
- Fixed potential problems converting C-style escaped strings
|
|
403
|
+
- Fixed new "#[CSTR]" feature to work with -stay_open option
|
|
404
|
+
|
|
405
|
+
July 27, 2018 - Version 11.07
|
|
406
|
+
|
|
407
|
+
- Added "#[CSTR]" feature to -@ argfile
|
|
408
|
+
- Added some new Sony LensType values (thanks Jos Roost)
|
|
409
|
+
- Decode more tags from Samsung trailer
|
|
410
|
+
- Decode an undocumented DNG tag
|
|
411
|
+
- Decode some new Panasonic tags (thanks Klaus Homeister)
|
|
412
|
+
- Improved/fixed a few Validate warnings
|
|
413
|
+
- Made MakerNote "Bad SubDirectory start" warnings minor
|
|
414
|
+
- Fixed NoDups() function to work with special characters as list separators
|
|
415
|
+
|
|
416
|
+
July 6, 2018 - Version 11.06
|
|
417
|
+
|
|
418
|
+
- Fixed "undefined value" bug when reading ImageSourceData from a JPEG file
|
|
419
|
+
|
|
420
|
+
July 5, 2018 - Version 11.05
|
|
421
|
+
|
|
422
|
+
- Added a number of new Nikon LensID's (thanks Robert Rottmerhusen)
|
|
423
|
+
- Fixed out-of-memory problem when writing some large TIFF images in Windows
|
|
424
|
+
|
|
425
|
+
July 4, 2018 - Version 11.04
|
|
426
|
+
|
|
427
|
+
- Added a check on TIFF image data size when writing or using Validate option
|
|
428
|
+
- Added a few new Sony lenses (thanks LibRaw)
|
|
429
|
+
- Added a new Nikon LensType
|
|
430
|
+
- Improved validation of XMP with Validate option
|
|
431
|
+
- Drop PhaseOne tags larger than 8 kB when copying PhaseOne maker notes to
|
|
432
|
+
another file
|
|
433
|
+
- Fixed out-of-memory problem when reading some large TIFF images in Windows
|
|
434
|
+
|
|
435
|
+
June 21, 2018 - Version 11.03
|
|
436
|
+
|
|
437
|
+
- Added support for new Exif 2.31 for XMP tags
|
|
438
|
+
- Added support for another FujiFilm X-T1 firmware version
|
|
439
|
+
- Decode more Panasonic tags (thanks Klaus Homeister)
|
|
440
|
+
|
|
441
|
+
June 13, 2018 - Version 11.02
|
|
442
|
+
|
|
443
|
+
- Added support for a different format of Apple iWorks files
|
|
444
|
+
- Added undocumented FixCorruptedMOV API option to allow fixing MOV videos
|
|
445
|
+
with multiple 'mdat' atoms which were corrupted by ExifTool
|
|
446
|
+
- Decode more QuickTime tags
|
|
447
|
+
- Decode more PanasonicRaw tags (thanks Klaus Homeister)
|
|
448
|
+
- Improved decoding of makernotes in ARW images from Hasselblad cameras
|
|
449
|
+
(thanks LibRaw)
|
|
450
|
+
- Fixed some problems writing multi-segment EXIF in JPEG images
|
|
451
|
+
|
|
452
|
+
June 11, 2018 - Version 11.01 (production release)
|
|
453
|
+
|
|
454
|
+
- Added a new ProfileCMMType (thanks Neal Krawetz)
|
|
455
|
+
- Added a Validate warning about non-standard EXIF or XMP in PNG images
|
|
456
|
+
- Added a new Canon LensType
|
|
457
|
+
- Decode a couple more PanasonicRaw tags (thanks Klaus Homeister)
|
|
458
|
+
- Patched to avoid adding tags to QuickTime videos with multiple 'mdat' atoms
|
|
459
|
+
--> avoids potential corruption of these videos!
|
|
460
|
+
|
|
461
|
+
June 7, 2018 - Version 11.00 (production release)
|
|
462
|
+
|
|
463
|
+
- Added read support for WTV and DVR-MS videos
|
|
464
|
+
- Added print conversions for some ASF date/time tags
|
|
465
|
+
- Added a new SonyModelID (thanks LibRaw)
|
|
466
|
+
- Decode a new PanasonicRaw tag (thanks Klaus Homeister)
|
|
467
|
+
- Decode some new Sony RX100 VI tags (thanks LibRaw and Jos Roost)
|
|
468
|
+
- Made Padding and OffsetSchema tags "unsafe" so they aren't copied by default
|
|
469
|
+
|
|
470
|
+
May 29, 2018 - Version 10.99
|
|
471
|
+
|
|
472
|
+
- Decode layer information from Photoshop ImageSourceData in TIFF images
|
|
473
|
+
- Updated to the IPTC video metadata 1.2 specification
|
|
474
|
+
- Patched DateFmt() utility function to apply GlobalTimeShift if used
|
|
475
|
+
- Improved error message when trying to write a file with a wrong extension
|
|
476
|
+
- Fixed unnecessary warning when setting FileCreateDate in Windows
|
|
477
|
+
|
|
478
|
+
May 22, 2018 - Version 10.98
|
|
479
|
+
|
|
480
|
+
- Added additional Validate checks for JPEG thumbnail tags
|
|
481
|
+
- Added a new Canon LensType (thanks LibRaw)
|
|
482
|
+
- Decode a number of new Nikon ColorBalance tags (thanks LibRaw)
|
|
483
|
+
- Disable extraction of Nikon D850 PhotoShootingMenuBank from NEF images
|
|
484
|
+
(apparently not valid in this type of file)
|
|
485
|
+
- Fixed problem with writable user-defined Composite tags introduced in 10.16
|
|
486
|
+
- Fixed unnecessary Validate warning about missing GPSVersionID
|
|
487
|
+
- Fixed incorrect "wrong IFD" Validate warnings in CR3 images
|
|
488
|
+
|
|
489
|
+
May 17, 2018 - Version 10.97 - "Multi-segment EXIF"
|
|
490
|
+
|
|
491
|
+
- Added read/write support for multi-segment EXIF in JPEG images
|
|
492
|
+
- Added a number of new Canon LensType values (thanks LibRaw)
|
|
493
|
+
- Added support for Panasonic DC-FT7 makernotes and metadata in MP4 videos
|
|
494
|
+
- Decode a number of new Nikon WB tags (thanks LibRaw)
|
|
495
|
+
- Improved warning message when attempting to write to an invalid tag name
|
|
496
|
+
- Enhanced Validate feature to perform more tests on TIFF and JPEG images
|
|
497
|
+
[The Validate feature is no longer considered experimental]
|
|
498
|
+
|
|
499
|
+
May 9, 2018 - Version 10.96
|
|
500
|
+
|
|
501
|
+
- Added a new Sony LensType (thanks Jos Roost)
|
|
502
|
+
- Added a few new Panasonic lenses (thanks LibRaw)
|
|
503
|
+
- Added Composite tags for GPSDestLatitudeRef and GPSDestLongitudeRef
|
|
504
|
+
- Decode maker notes from Kodak PixPro AZ901
|
|
505
|
+
- Extract Preview images from iWork files
|
|
506
|
+
- Improved identification of Apple iWork files
|
|
507
|
+
- Fixed arg_files to handle GPS destination reference directions
|
|
508
|
+
|
|
509
|
+
May 4, 2018 - Version 10.95
|
|
510
|
+
|
|
511
|
+
- Added new Nikon LensID's (thanks Warren Hatch, LibRaw and Jami Bradley)
|
|
512
|
+
- Added a new Sony LensType (thanks Jos Roost)
|
|
513
|
+
- Decode a new Samsung tag (thanks LibRaw)
|
|
514
|
+
- Decode Photoshop Lr16 layer information
|
|
515
|
+
- Decode more Leica tags (thanks LibRaw)
|
|
516
|
+
- Updated DarwinCore tags to current specification
|
|
517
|
+
- Improved validation of JPEG files
|
|
518
|
+
- Disabled writing of buggy Samsung EK-GN120 SRW files
|
|
519
|
+
- Fixed conversion for Nikon D850 ExposureDelayMode (thanks Jami Bradley)
|
|
520
|
+
- Fixed "x outside string" error when reading a truncated zip file
|
|
521
|
+
- Fixed "uninitialized value" error when writing a corrupted JPEG image
|
|
522
|
+
|
|
523
|
+
Apr. 19, 2018 - Version 10.94
|
|
524
|
+
|
|
525
|
+
- Added read/write support for Canon CRM files
|
|
526
|
+
- Added a new Sony LensType (thanks Jos Roost)
|
|
527
|
+
- Added a new CanonModelID
|
|
528
|
+
- Decode a new Samsung tag (thanks LibRaw)
|
|
529
|
+
- Fixed AIColorModel conversion
|
|
530
|
+
|
|
531
|
+
Apr. 13, 2018 - Version 10.93
|
|
532
|
+
|
|
533
|
+
- Added a new Canon Quality value (thanks Norbert Wasser)
|
|
534
|
+
- Added a new Pentax Quality value (thanks LibRaw)
|
|
535
|
+
- Decode some new Sony ARW tags (thanks Jos Roost)
|
|
536
|
+
- Decode some AI-specific tags from PDF and PostScript files
|
|
537
|
+
- Decode a new QuickTime tag
|
|
538
|
+
- Enhanced -geotag option to support NMEA from GLONASS and other systems
|
|
539
|
+
- Fixed bug decoding seconds of ZIP file timestamps (thanks Lars Wallenborn)
|
|
540
|
+
|
|
541
|
+
Apr. 19, 2018 - Version 10.92
|
|
542
|
+
|
|
543
|
+
- Decode GPS from videos of more camera models
|
|
544
|
+
- Tolerate white space before header in PDF files
|
|
545
|
+
|
|
546
|
+
Apr. 9, 2018 - Version 10.91
|
|
547
|
+
|
|
548
|
+
- Added read/write support for MacOS FileCreateDate (writing this is the same
|
|
549
|
+
as MDItemFSCreationDate, but reading uses a different mechanism which
|
|
550
|
+
doesn't have the delayed-update issue of MDItemFSCreationDate)
|
|
551
|
+
- Added ability to write MacOS MDItemUserTags (requires "tag" utility)
|
|
552
|
+
- Decode a new Sony tag (thanks LibRaw)
|
|
553
|
+
- Properly un-escape quotes in extracted MacOS MDItem values
|
|
554
|
+
- Fixed another subtle order-of-operations anomaly
|
|
555
|
+
- API Changes:
|
|
556
|
+
- Enhanced GetValue() to accept a tag name with group prefix(es)
|
|
557
|
+
|
|
558
|
+
Apr. 5, 2018 - Version 10.90
|
|
559
|
+
|
|
560
|
+
- Improved decoding of Sony PictureProfile (thanks Jos Roost)
|
|
561
|
+
- Fixed problem introduced in 10.61 with order of command-line operations when
|
|
562
|
+
mixing copied values with assigned values
|
|
563
|
+
|
|
564
|
+
Apr. 2, 2018 - Version 10.89
|
|
565
|
+
|
|
566
|
+
- Added ability to rotate MP4/MOV videos by writing Rotation angle
|
|
567
|
+
- Added two new Sony PictureProfile values (thanks Albert Shan)
|
|
568
|
+
- Decode more Nikon tags
|
|
569
|
+
- Updated some values of the QuickTime MediaType tag
|
|
570
|
+
|
|
571
|
+
Mar. 27, 2018 - Version 10.88
|
|
572
|
+
|
|
573
|
+
- Added example config file (dji.config) to generate Composite GPS and other
|
|
574
|
+
tags from Text metadata embedded in DJI drone videos
|
|
575
|
+
- Added a new PentaxModelID
|
|
576
|
+
- Documented new advanced-formatting "@" feature which has existed since
|
|
577
|
+
version 10.53 but not fully functional until 10.87
|
|
578
|
+
- Decode a new Sony tag (thanks LibRaw)
|
|
579
|
+
- User-defined Composite tags now show up in the -list output
|
|
580
|
+
- Improved speed for generating Composite SubDoc tags with -ee option
|
|
581
|
+
- Fixed problem creating writable UserDefined Composite tags
|
|
582
|
+
- Fixed an incorrect PRISM tag name
|
|
583
|
+
|
|
584
|
+
Mar. 20, 2018 - Version 10.87
|
|
585
|
+
|
|
586
|
+
- Added a new FujiFilm ShutterType value (thanks Albert Shan)
|
|
587
|
+
- Decode more timed metadata from CR3 images
|
|
588
|
+
- Decode Samsung DualShot depth map
|
|
589
|
+
- Decode a new Canon tag
|
|
590
|
+
- Improved decoding of some Canon color information (thanks LibRaw)
|
|
591
|
+
- Fixed print conversion of ID3v2 Genre values with multiple genres
|
|
592
|
+
|
|
593
|
+
Mar. 15, 2018 - Version 10.86
|
|
594
|
+
|
|
595
|
+
- Decode timed GPS and accelerometer data from BikeBro AVI videos
|
|
596
|
+
- Decode a new Sony tag and add a new value to another tag (thanks Jos Roost)
|
|
597
|
+
- Decode GPSAltitude from some videos with the -ee option
|
|
598
|
+
- Decode some new tags from Kodak PixPro 4KVR360 JPEG images and MP4 videos
|
|
599
|
+
- Decode GPS information from CR3 images
|
|
600
|
+
- Fixed unnecessary warnings when Validate option used on CR3 images
|
|
601
|
+
|
|
602
|
+
Mar. 14, 2018 - Version 10.85
|
|
603
|
+
|
|
604
|
+
- Decode GPSTrack from MOV videos of more dashcam models
|
|
605
|
+
- Decode a few new CanonVRD tags for DPP 4.8.20
|
|
606
|
+
- Decode a new Sony tag (thanks Jos Roost)
|
|
607
|
+
- Decode a few more Canon tags (thanks LibRaw)
|
|
608
|
+
- Improved processing speed when using the -ee option on some video files
|
|
609
|
+
- Fixed incorrect names for a couple of CanonVRD HSL tags
|
|
610
|
+
- Fixed problem where UTF-8 validation missed some invalid sequences
|
|
611
|
+
- Fixed bug introduced in 10.84 with GPSPosition when -n option is used
|
|
612
|
+
|
|
613
|
+
Mar. 12, 2018 - Version 10.84
|
|
614
|
+
|
|
615
|
+
- Decode GPS from MOV videos of more dashcam models with -ee option
|
|
616
|
+
- Decode a new Sony tag (thanks Jos Roost)
|
|
617
|
+
- Convert GPS speeds extracted from MOV videos with the -ee option to km/h
|
|
618
|
+
- Avoid converting empty GPS coordinates to 0.000000
|
|
619
|
+
- Fixed some bugs extracting Novatek GPS from MP4 videos
|
|
620
|
+
|
|
621
|
+
Mar. 7, 2018 - Version 10.83
|
|
622
|
+
|
|
623
|
+
- Added read support for Sketch design files
|
|
624
|
+
- Added Light LRI files to the list of recognized file types
|
|
625
|
+
- Added a new Canon LensType (thanks LibRaw)
|
|
626
|
+
- Decode a couple of new Sony tags (thanks Jos Roost)
|
|
627
|
+
- Extract JpgFromRaw image from CR3 images
|
|
628
|
+
- Improved warning message when attempting to write a tag in a specific group
|
|
629
|
+
that isn't writable
|
|
630
|
+
- Changed group name of JSON tags from "File" to "JSON"
|
|
631
|
+
- Fixed some incorrect offsets in -v3 output for CR3 images
|
|
632
|
+
|
|
633
|
+
Mar. 1, 2018 - Version 10.82
|
|
634
|
+
|
|
635
|
+
- Added support for Canon's new CR3 raw file format
|
|
636
|
+
- Added a few new CanonModelID/SonyModelID values (thanks LibRaw)
|
|
637
|
+
- Added support for the Sony ILCE-7M3 (thanks Jos Roost)
|
|
638
|
+
- Decode timed GPS information from Insta360 MP4 videos with the -ee option
|
|
639
|
+
- Write XMP before idat in MOV/MP4/CR3 files if possible
|
|
640
|
+
- Fixed "'x' outside of string" runtime error when reading some Sony images
|
|
641
|
+
- Fixed problem with some hex dumps going to the console when -v3 was combined
|
|
642
|
+
with the -w option
|
|
643
|
+
|
|
644
|
+
Feb. 26, 2018 - Version 10.81
|
|
645
|
+
|
|
646
|
+
- Added new values for a few Panasonic tags (thanks Bernd-Michael Kemper)
|
|
647
|
+
- Added a new Canon, Olympus and Sony LensTypes (thanks LibRaw)
|
|
648
|
+
- Added a new PanasonicRaw Compression type (thanks LibRaw)
|
|
649
|
+
- Added definitions for a number of new MacOS tags
|
|
650
|
+
- Decode CameraInfo for Canon 5DmkIII firmware 1.3.5
|
|
651
|
+
- Removed INX from list of writable files (-listwf option output)
|
|
652
|
+
- Fixed problem introduced in version 10.16 that could cause a "Can't create"
|
|
653
|
+
error when using the -o option to write certain types of files
|
|
654
|
+
- Fixed problem introduced in version 10.34 resulting in a "Can't delete all
|
|
655
|
+
meta information" error when writing .PS files
|
|
656
|
+
|
|
657
|
+
Feb. 22, 2018 - Version 10.80 (production release)
|
|
658
|
+
|
|
659
|
+
- Added read/write support for Reconyx UltraFire maker notes
|
|
660
|
+
- Added a new Sony/Minolta lens (thanks Jos Roost)
|
|
661
|
+
- Decode a new PanasonicRaw tag (thanks LibRaw)
|
|
662
|
+
- Extract ImageWidth/Height for main image of an HEIC file
|
|
663
|
+
- Internal changes:
|
|
664
|
+
- Changed TimeNow() make ExifTool object optional
|
|
665
|
+
|
|
666
|
+
Feb. 11, 2018 - Version 10.79
|
|
667
|
+
|
|
668
|
+
- Added a new Olympus CameraType (thanks LibRaw)
|
|
669
|
+
- Added a new XMP-microsoft tag (thanks Jose Oliver-Didier)
|
|
670
|
+
- Decode a new GoPro QuickTime tag
|
|
671
|
+
- Convert nulls IPTC:DocumentHistory to newlines
|
|
672
|
+
- Removed all null terminators from JSON and PHP output
|
|
673
|
+
- Fixed writing of GPSDateStamp and GPSTimeStamp to be able to set to "now"
|
|
674
|
+
- Internal changes:
|
|
675
|
+
- Changed TimeNow() to require ExifTool object as first argument
|
|
676
|
+
|
|
677
|
+
Jan. 31, 2018 - Version 10.78
|
|
678
|
+
|
|
679
|
+
- Added a few new values for some Olympus tags (thanks John)
|
|
680
|
+
- Decode GoPro APP6 metadata in JPEG images and more GoPro MP4 tags
|
|
681
|
+
- Decode more Red tags, and improved decoding of others
|
|
682
|
+
- Decode face detection information from timed metadata with the -ee option
|
|
683
|
+
- Fixed problem writing shorthand XMP containing CDATA sections
|
|
684
|
+
- Fixed problem copying XMP-acdsee:Snapshots
|
|
685
|
+
- Fixed decoding of a few Panasonic RAW tags (thanks Klaus Homeister)
|
|
686
|
+
|
|
687
|
+
Jan. 26, 2018 - Version 10.77
|
|
688
|
+
|
|
689
|
+
- Added read support for Redcode R3D RAW videos
|
|
690
|
+
- Enhanced -sep option to specify separator and terminator for binary output
|
|
691
|
+
- Removed null terminator from JSON output of ICC_Profile:CharTarget
|
|
692
|
+
- Improved error messages to help diagnosing some types of corrupted files
|
|
693
|
+
- Return an exit status of 2 instead of 1 if all files fail the -if condition
|
|
694
|
+
- Fixed decoding of QuickTime chapter names
|
|
695
|
+
- Fixed incorrect MimeType for RMD files
|
|
696
|
+
- Fixed problem where exit status of 1 was returned when writing with a -if
|
|
697
|
+
condition if any of the files failed the condition
|
|
698
|
+
|
|
699
|
+
Jan. 22, 2018 - Version 10.76
|
|
700
|
+
|
|
701
|
+
- Added ability to write shorthand XMP with the -z option
|
|
702
|
+
- Added write support for Google XMP GFocus tags
|
|
703
|
+
- Improved decoding of GoPro timed metadata
|
|
704
|
+
- Renamed ASF PlayDuration to Duration
|
|
705
|
+
- Fixed problem where fractional seconds were ignored when geotagging from an
|
|
706
|
+
NMEA track log with no date stamps
|
|
707
|
+
- Fixed runtime warning when reading XMP with an empty structure in a list
|
|
708
|
+
- API Changes:
|
|
709
|
+
- Added XMPShorthand option
|
|
710
|
+
- Enhanced Compact option so a setting of 2 avoids XMP indentation
|
|
711
|
+
|
|
712
|
+
Jan. 12, 2018 - Version 10.75
|
|
713
|
+
|
|
714
|
+
- Added another Sony/Minolta lens (thanks Jos Roost)
|
|
715
|
+
- Decode more QuickTime tags
|
|
716
|
+
- Decode a number of new tags from GoPro Hero6 MP4 videos
|
|
717
|
+
- Enhanded "Unknown file type" error to indicate if "File is empty" or "File
|
|
718
|
+
header is all binary zeros"
|
|
719
|
+
- Improved decoding of some Sony tags (thanks Jos Roost)
|
|
720
|
+
- Improved decoding of QuickTime timed metadata
|
|
721
|
+
- Marked ArtworkCircaDateCreated as "unsafe" for writing to avoid it being
|
|
722
|
+
added when attempting to shift all date/time tags
|
|
723
|
+
- Fixed bug which could cause runtime error when reading some old Sony maker
|
|
724
|
+
notes (thanks Tamas Lovag)
|
|
725
|
+
|
|
726
|
+
Jan. 8, 2018 - Version 10.74
|
|
727
|
+
|
|
728
|
+
- Added a new Sony/Minolta lens (thanks Jos Roost)
|
|
729
|
+
- Added print conversion for ICC_Profile DeviceManufacturer and ProfileCreator
|
|
730
|
+
- Added informational warning when the ExtractEmbedded option may be useful
|
|
731
|
+
- Improved experimental Validate feature for RAW files
|
|
732
|
+
- Fixed bug in experimental Validate feature that could cause out-of-memory
|
|
733
|
+
error when combined with "-use mwg"
|
|
734
|
+
|
|
735
|
+
Jan. 5, 2018 - Version 10.73
|
|
736
|
+
|
|
737
|
+
- Added read/write support for GoPro RAW (GPR) files
|
|
738
|
+
- Added a new Sony/Minolta lens (thanks Sylvain)
|
|
739
|
+
- Improved conversions for GPS tags extracted from video streams
|
|
740
|
+
|
|
741
|
+
Jan. 4, 2018 - Version 10.72
|
|
742
|
+
|
|
743
|
+
- Added IF feature to -p option
|
|
744
|
+
- Decode streamed GPS position and other streamed metadata from MP4 videos
|
|
745
|
+
when the -ee option is used
|
|
746
|
+
- Fixed problem geotagging GPSAltitude from some GPX files
|
|
747
|
+
|
|
748
|
+
Jan. 2, 2018 - Version 10.71
|
|
749
|
+
|
|
750
|
+
- Decode some more ICC_Profile tags (thanks Eef Vreeland)
|
|
751
|
+
- Decode MechanicalShutterCount for Nikon D850 (thanks Xavier Jubier)
|
|
752
|
+
- Convert PNG:CreationTime values to/from standard date format
|
|
753
|
+
- Fixed problem loading default config file from application directory
|
|
754
|
+
- Fixed problem reading XMP where a namespace is defined after an attribute
|
|
755
|
+
which uses the namespace
|
|
756
|
+
|
|
757
|
+
Dec. 27, 2017 - Version 10.70
|
|
758
|
+
|
|
759
|
+
- Search application directory for -config file
|
|
760
|
+
- Improved robustness of JSON import
|
|
761
|
+
- Enhancements to experimental Validate feature
|
|
762
|
+
- Fixed bug introduced in 10.69 which could result in hang when writing
|
|
763
|
+
multi-segment JPEG metadata
|
|
764
|
+
|
|
765
|
+
Dec. 18, 2017 - Version 10.69
|
|
766
|
+
|
|
767
|
+
- Added "OK" UserParam for use in -if conditions
|
|
768
|
+
- Allow writing an empty JPEG Comment
|
|
769
|
+
- Check for proper location of Photoshop metadata with -validate or -use mwg
|
|
770
|
+
- Exit status now set to 1 if command was aborted due to invalid arguments
|
|
771
|
+
- Translate "UTF8" to appropriate escape sequence when writing
|
|
772
|
+
IPTC:CodedCharacterSet with the -n option
|
|
773
|
+
- Improved "Not a valid TIFF" error message to be more specific about the file
|
|
774
|
+
type for TIFF-based formats
|
|
775
|
+
- Fixed problem parsing Honeywell PTNTHPR NMEA sentences from some GPS devices
|
|
776
|
+
|
|
777
|
+
Dec. 5, 2017 - Version 10.68
|
|
778
|
+
|
|
779
|
+
- Added ability to set tag values and API options to an empty string using
|
|
780
|
+
"^=" on the command line
|
|
781
|
+
- Added a new Sony LensType (thanks Jos Roost)
|
|
782
|
+
- Added a new Nikon LensID
|
|
783
|
+
- Decode more tags from some newer Leica models
|
|
784
|
+
- Decode a new Apple tag
|
|
785
|
+
- Fixed indeterminate order of extracted XMP structures
|
|
786
|
+
|
|
787
|
+
Nov. 16, 2017 - Version 10.67
|
|
788
|
+
|
|
789
|
+
- Fixed problem introduced in 10.66 with -execute not returning the command
|
|
790
|
+
number in the "{ready}" message when -stay_open was used
|
|
791
|
+
- API Changes:
|
|
792
|
+
- Added TimeZone option
|
|
793
|
+
|
|
794
|
+
Nov. 14, 2017 - Version 10.66
|
|
795
|
+
|
|
796
|
+
- Added a new Canon LensType (thanks Norbert Wasser)
|
|
797
|
+
- Updated en-ca and en-gb language translations
|
|
798
|
+
- Minor format change to experimental Validate feature return value
|
|
799
|
+
- Prevent JFIF from being added to a JPEG containing Adobe APP14
|
|
800
|
+
- Changed a number of Canon LensType strings to add "USM" to L model names
|
|
801
|
+
- Patched for compatibility with Time::Piece version 1.29_04 and later, and
|
|
802
|
+
improved error handling when writing formatted date/time values
|
|
803
|
+
- Fixed bug in Composite MWG CreateDate and DateTimeOriginal tags which could
|
|
804
|
+
cause existing tags to be hidden when not using the -a option
|
|
805
|
+
- Fixed problem using '#' suffix not properly fixed in 10.65
|
|
806
|
+
- Fixed problem decoding Nikon D810 MultiExposure tags
|
|
807
|
+
|
|
10
808
|
Oct. 31, 2017 - Version 10.65
|
|
11
809
|
|
|
12
810
|
- Added support for DOSLatinUS (cp437) and DOSLatin1 (cp850) character sets
|
|
@@ -93,7 +891,7 @@ July 7, 2017 - Version 10.59
|
|
|
93
891
|
|
|
94
892
|
- Added a new Canon LensType (thanks LibRaw)
|
|
95
893
|
- Added a new Nikon LensID
|
|
96
|
-
- Added "wrong extension" warning to experimental
|
|
894
|
+
- Added "wrong extension" warning to experimental Validate feature
|
|
97
895
|
- Decode Pentax maker notes in Q-S1 AVI videos
|
|
98
896
|
- Updated iptc2exif.args and exif2iptc.args to support new EXIF OffsetTime
|
|
99
897
|
tags (thanks Herb)
|
|
@@ -132,8 +930,7 @@ June 20, 2017 - Version 10.57
|
|
|
132
930
|
images with an unknown header
|
|
133
931
|
- Relaxed case requirement for "SourceFile" header in CSV and JSON import
|
|
134
932
|
- Fixed decoding of Pentax ExposureCompensation for newer Ricoh models
|
|
135
|
-
- Fixed some incorrect "Wrong IFD" messages with experimental
|
|
136
|
-
feature
|
|
933
|
+
- Fixed some incorrect "Wrong IFD" messages with experimental Validate feature
|
|
137
934
|
- Fixed a couple of Sony/Minolta lens names (thanks Jos Roost)
|
|
138
935
|
- Fixed "Error reading PreviewImage" warning for some Sony models
|
|
139
936
|
|
|
@@ -164,7 +961,7 @@ May 26, 2017 - Version 10.54
|
|
|
164
961
|
- Added a two new Sony lenses and decode more ILCE-9 tags (thanks Jos Roost)
|
|
165
962
|
- Added new values to some Pentax tags (thanks Andras Salamon)
|
|
166
963
|
- Added a new Canon LensType
|
|
167
|
-
- Added an additional checks to the experimental
|
|
964
|
+
- Added an additional checks to the experimental Validate feature
|
|
168
965
|
- Improved user-defined FileTypes feature to provide more flexibility
|
|
169
966
|
- Enhanced -ext option to allow specific files extensions to be processed
|
|
170
967
|
along with supported files
|
|
@@ -501,7 +1298,7 @@ Sept. 15, 2016 - Version 10.26
|
|
|
501
1298
|
- Added two new Canon LensType's (thanks Norbert Wasser)
|
|
502
1299
|
- Decode a number of Nikon D610 custom settings (thanks Tor)
|
|
503
1300
|
- Removed a questionable Samsung tag
|
|
504
|
-
- Marked TestName tag as "
|
|
1301
|
+
- Marked TestName tag as "unsafe" for writing
|
|
505
1302
|
- Enhanced -progress option with ability to set console window title
|
|
506
1303
|
- Changed behaviour of %C to increment for each processed file as documented
|
|
507
1304
|
(was incrementing for each output file created)
|
|
@@ -4128,7 +4925,7 @@ Feb. 26, 2009 - Version 7.70
|
|
|
4128
4925
|
- Added xml:lang attribute to -X output (when used with -t, -H or -D) to
|
|
4129
4926
|
identify alternate language entries for XMP lang-alt tags
|
|
4130
4927
|
- Decode Canon ImageUniqueID and added a new EasyMode value
|
|
4131
|
-
- Created "
|
|
4928
|
+
- Created "unsafe" shortcut used when rebuilding JPEG EXIF metadata from
|
|
4132
4929
|
scratch
|
|
4133
4930
|
- Changed Olympus lens "pre-release" designation to "release 1"
|
|
4134
4931
|
- Changed exiftool to continue after encountering "Error opening directory"
|
|
@@ -5402,7 +6199,7 @@ Feb. 20, 2007 - Version 6.77 - "XML/HTML special characters"
|
|
|
5402
6199
|
- Translate all non-ASCII characters to HTML character entities with -h or -E
|
|
5403
6200
|
- Added full UTF-8 translation support when run with Perl pre-5.6.1
|
|
5404
6201
|
- Decode a few new Sigma SD14 tags
|
|
5405
|
-
- Decode a couple more Nikon tags
|
|
6202
|
+
- Decode a couple more Nikon tags (thanks Greg Troxel)
|
|
5406
6203
|
|
|
5407
6204
|
Feb. 16, 2007 - Version 6.76 (production release)
|
|
5408
6205
|
|
|
@@ -5956,7 +6753,8 @@ May 24, 2006 - Version 6.20
|
|
|
5956
6753
|
- Fixed bug where IgnoreMinorErrors option could get set when writing images
|
|
5957
6754
|
with NikonCapture information
|
|
5958
6755
|
- Fixed two ID3 tag names which contained spaces
|
|
5959
|
-
- Fixed problem parsing DateTimeOriginal in Casio EX-Z30 AVI files
|
|
6756
|
+
- Fixed problem parsing DateTimeOriginal in Casio EX-Z30 AVI files (thanks
|
|
6757
|
+
Joachim Loehr)
|
|
5960
6758
|
- Fixed problem with apostrophes in HTML documentation for some browsers
|
|
5961
6759
|
- API Changes:
|
|
5962
6760
|
- Can now call Options() with undefined value to set option value to undef
|
|
@@ -6928,7 +7726,7 @@ Apr. 2, 2005 - Version 4.93 (production release)
|
|
|
6928
7726
|
Mar. 31, 2005 - Version 4.92
|
|
6929
7727
|
|
|
6930
7728
|
- Added support for Kodak and Ricoh cameras
|
|
6931
|
-
- Decode still more Olympus E-1/E-300 tags
|
|
7729
|
+
- Decode still more Olympus E-1/E-300 tags (thanks Markku Hanninen)
|
|
6932
7730
|
- Added 'Directory' tag
|
|
6933
7731
|
- Decode a few more Pentax tags (thanks to John Francis)
|
|
6934
7732
|
- Allow newlines in tag values on command line when writing
|
|
@@ -6936,13 +7734,13 @@ Mar. 31, 2005 - Version 4.92
|
|
|
6936
7734
|
|
|
6937
7735
|
Mar. 28, 2005 - Version 4.91
|
|
6938
7736
|
|
|
6939
|
-
- Decode yet more Olympus E-1/E-300 tags
|
|
7737
|
+
- Decode yet more Olympus E-1/E-300 tags (thanks Markku Hanninen)
|
|
6940
7738
|
- Changed decoding of Olympus E-300 Quality tag
|
|
6941
7739
|
- Patched bug in Olympus maker notes that was causing ExifTool to report an
|
|
6942
7740
|
error when reading ORF files
|
|
6943
7741
|
- Fixed problem where strings weren't being properly truncated at the null
|
|
6944
7742
|
terminator if there was a newline after the terminator
|
|
6945
|
-
- Improved decoding for some Nikon tags (
|
|
7743
|
+
- Improved decoding for some Nikon tags (thanks Tom Christiansen)
|
|
6946
7744
|
- Added Nikon shortcut
|
|
6947
7745
|
- Added composite SubSecDateTimeOriginal tag
|
|
6948
7746
|
- Fixed problem where CRW file without file extension wasn't being identified
|
|
@@ -7350,7 +8148,7 @@ Jan. 7, 2005 - Version 4.10
|
|
|
7350
8148
|
|
|
7351
8149
|
Dec. 15, 2004 - Version 4.05
|
|
7352
8150
|
|
|
7353
|
-
- Added a couple of Nikon tags
|
|
8151
|
+
- Added a couple of Nikon tags (thanks Brian Ristuccia)
|
|
7354
8152
|
- Now preserves original file by renaming to "NAME_original" when writing
|
|
7355
8153
|
information
|
|
7356
8154
|
- Don't preserve file time by default when writing. Added -P option to do
|
|
@@ -7368,7 +8166,7 @@ Dec. 6, 2004 - Version 4.03
|
|
|
7368
8166
|
- Major overhaul of verbose message output
|
|
7369
8167
|
- Change -v option to allow verbose level to be specified (eg. -v3 = very very
|
|
7370
8168
|
verbose)
|
|
7371
|
-
- Added a new Nikon tag (
|
|
8169
|
+
- Added a new Nikon tag (thanks Thomas Walter)
|
|
7372
8170
|
- Count images which were unchanged when writing tags
|
|
7373
8171
|
- Changed FileType 'JPG' to 'JPEG'
|
|
7374
8172
|
|
|
@@ -7769,7 +8567,7 @@ Feb. 17, 2004 - Version 3.03
|
|
|
7769
8567
|
|
|
7770
8568
|
- Fixed RandomAccessFile package name (should have been
|
|
7771
8569
|
File::RandomAccessFile)
|
|
7772
|
-
- Added IxusAFPoint tag to Canon maker notes
|
|
8570
|
+
- Added IxusAFPoint tag to Canon maker notes (thanks Michael Rommel)
|
|
7773
8571
|
- Avoid scanning past end of Canon binary data blocks
|
|
7774
8572
|
- API Changes:
|
|
7775
8573
|
- GetFoundTags() and GetRequestedTags() now return list instead of list
|
|
@@ -7826,7 +8624,7 @@ Feb. 11, 2004 - Version 2.70
|
|
|
7826
8624
|
Feb. 10, 2004 - Version 2.62
|
|
7827
8625
|
|
|
7828
8626
|
- Added -u option to allow display of unknown tags
|
|
7829
|
-
- Major changes to Pentax maker notes (still needs work)
|
|
8627
|
+
- Major changes to Pentax maker notes (still needs work) (thanks Wayne Smith)
|
|
7830
8628
|
|
|
7831
8629
|
Feb. 09, 2004 - Version 2.61
|
|
7832
8630
|
|
|
@@ -7856,7 +8654,7 @@ Jan. 30, 2004 - Version 2.51
|
|
|
7856
8654
|
Jan. 29, 2004 - Version 2.50
|
|
7857
8655
|
|
|
7858
8656
|
- Changed API to return binary data as SCALAR reference and
|
|
7859
|
-
list of values as ARRAY reference
|
|
8657
|
+
list of values as ARRAY reference (thanks Dan Heller for the suggestions)
|
|
7860
8658
|
- Attempt to make case of tag descriptions more consistent
|
|
7861
8659
|
|
|
7862
8660
|
Jan. 28, 2004 - Version 2.41
|
|
@@ -7905,7 +8703,8 @@ Jan. 6, 2004 - Version 2.25
|
|
|
7905
8703
|
|
|
7906
8704
|
- Fixed problem with ImageInfo() function prototype
|
|
7907
8705
|
- Fixed printout of JpgFromRaw message (doesn't affect JPG extraction)
|
|
7908
|
-
- Set output files to binmode (including STDOUT) if -b option used
|
|
8706
|
+
- Set output files to binmode (including STDOUT) if -b option used (thanks
|
|
8707
|
+
David Anson)
|
|
7909
8708
|
|
|
7910
8709
|
Jan. 1, 2004 - Version 2.24
|
|
7911
8710
|
|
|
@@ -7983,7 +8782,7 @@ Nov. 26, 2003 - Version 1.40
|
|
|
7983
8782
|
|
|
7984
8783
|
Nov. 25, 2003 - Version 1.30
|
|
7985
8784
|
|
|
7986
|
-
- Added experimental Canon RAW (CRW) file support
|
|
8785
|
+
- Added experimental Canon RAW (CRW) file support
|
|
7987
8786
|
|
|
7988
8787
|
Nov. 22, 2003 - Version 1.20
|
|
7989
8788
|
|