<feed xmlns='http://www.w3.org/2005/Atom'>
<title>exiftool.el, branch v0.3</title>
<subtitle>Elisp wrapper around ExifTool</subtitle>
<id>http://git.systemreboot.net/exiftool.el/atom?h=v0.3</id>
<link rel='self' href='http://git.systemreboot.net/exiftool.el/atom?h=v0.3'/>
<link rel='alternate' type='text/html' href='http://git.systemreboot.net/exiftool.el/'/>
<updated>2017-06-13T20:42:56+00:00</updated>
<entry>
<title>Bump version.</title>
<updated>2017-06-13T20:42:56+00:00</updated>
<author>
<name>Arun Isaac</name>
</author>
<published>2017-06-13T20:42:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.systemreboot.net/exiftool.el/commit/?id=8dd70ba5214a73960361a0c6220bb4aa72b9e478'/>
<id>urn:sha1:8dd70ba5214a73960361a0c6220bb4aa72b9e478</id>
<content type='text'>
* exiftool.el: Bump to version 0.3.
</content>
</entry>
<entry>
<title>Do not print out messages.</title>
<updated>2017-06-13T19:32:27+00:00</updated>
<author>
<name>Arun Isaac</name>
</author>
<published>2017-06-13T19:32:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.systemreboot.net/exiftool.el/commit/?id=2971f46432fa3b236a3fb2a98a8ab358f7a0fb0c'/>
<id>urn:sha1:2971f46432fa3b236a3fb2a98a8ab358f7a0fb0c</id>
<content type='text'>
* exiftool.el (exiftool-copy): Remove message.
</content>
</entry>
<entry>
<title>Handle literal "-" tag values.</title>
<updated>2017-06-13T19:30:10+00:00</updated>
<author>
<name>Arun Isaac</name>
</author>
<published>2017-06-13T19:30:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.systemreboot.net/exiftool.el/commit/?id=29ea037677bb5b9a2d0e4f50f275feca605bc516'/>
<id>urn:sha1:29ea037677bb5b9a2d0e4f50f275feca605bc516</id>
<content type='text'>
* exiftool.el (exiftool-read): If exiftool returns "-" as tag value
with the "-f" flag, call exiftool again without the "-f" flag to
ascertain whether the tag is absent or the value is a literal "-".
</content>
</entry>
<entry>
<title>Add new test cases.</title>
<updated>2017-06-13T19:03:28+00:00</updated>
<author>
<name>Arun Isaac</name>
</author>
<published>2017-06-13T19:03:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.systemreboot.net/exiftool.el/commit/?id=79444ebf1812ecb4914bde18ef2452c0506419d3'/>
<id>urn:sha1:79444ebf1812ecb4914bde18ef2452c0506419d3</id>
<content type='text'>
* tests/exiftool-tests.el (exiftool-tests--tag-value): New test cases.
</content>
</entry>
<entry>
<title>Test copying only specific tags.</title>
<updated>2017-06-13T19:02:55+00:00</updated>
<author>
<name>Arun Isaac</name>
</author>
<published>2017-06-13T19:00:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.systemreboot.net/exiftool.el/commit/?id=b18ba26ea2bf06f084c1b3afe4a34405eda9d703'/>
<id>urn:sha1:b18ba26ea2bf06f084c1b3afe4a34405eda9d703</id>
<content type='text'>
* tests/exiftool-tests.el (copy-test): Rename to `copy-all-test'.
(copy-some-test): New test.
</content>
</entry>
<entry>
<title>Use test files of the same format.</title>
<updated>2017-06-13T18:57:52+00:00</updated>
<author>
<name>Arun Isaac</name>
</author>
<published>2017-06-13T18:57:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.systemreboot.net/exiftool.el/commit/?id=6c695c4b48995a159595da0002afeaeb3862ab00'/>
<id>urn:sha1:6c695c4b48995a159595da0002afeaeb3862ab00</id>
<content type='text'>
* tests/test2.jpg: Convert to PNG format.
* tests/test2.png: New file.
* tests/exiftool-tests.el (copy-test): Make both test files of the
same format (PNG).

Some tags are not copied properly when the files are of different
formats.
</content>
</entry>
<entry>
<title>Use regexp to extract tag and value.</title>
<updated>2017-06-13T18:48:24+00:00</updated>
<author>
<name>Arun Isaac</name>
</author>
<published>2017-06-13T18:48:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.systemreboot.net/exiftool.el/commit/?id=5257d3b3f70a9d3580fd0ce81b73d9427ff45143'/>
<id>urn:sha1:5257d3b3f70a9d3580fd0ce81b73d9427ff45143</id>
<content type='text'>
* exiftool.el (exiftool-read): Use `string-match' with regexp to
extract tag and value.

Previous this change, `exiftool-read' failed to correctly handle tags
whose value contained a ":".
</content>
</entry>
<entry>
<title>Copy only provided tags.</title>
<updated>2017-06-13T18:44:28+00:00</updated>
<author>
<name>Arun Isaac</name>
</author>
<published>2017-06-13T18:44:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.systemreboot.net/exiftool.el/commit/?id=f0a2e91f49758f0e12310f9961386fe95fb579e4'/>
<id>urn:sha1:f0a2e91f49758f0e12310f9961386fe95fb579e4</id>
<content type='text'>
* exiftool.el (exiftool-copy): Append "-all:all" to exiftool command
only when no tags are provided.
</content>
</entry>
<entry>
<title>Update README.</title>
<updated>2017-04-27T17:49:35+00:00</updated>
<author>
<name>Arun Isaac</name>
</author>
<published>2017-04-27T17:49:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.systemreboot.net/exiftool.el/commit/?id=b678cffcac678ed0254c5f9e881dc4486816d3c8'/>
<id>urn:sha1:b678cffcac678ed0254c5f9e881dc4486816d3c8</id>
<content type='text'>
* README.org: Add contact information.
</content>
</entry>
<entry>
<title>Shorten `check' command.</title>
<updated>2017-03-10T05:10:21+00:00</updated>
<author>
<name>Arun Isaac</name>
</author>
<published>2017-03-10T05:10:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.systemreboot.net/exiftool.el/commit/?id=240ae7b829733d5da1d2e255a3e7f5638f83c745'/>
<id>urn:sha1:240ae7b829733d5da1d2e255a3e7f5638f83c745</id>
<content type='text'>
* tests/Makefile (check): Remove explicit loading of package `ert'.
</content>
</entry>
</feed>
