aboutsummaryrefslogtreecommitdiff
path: root/exiftool.el
AgeCommit message (Collapse)Author
2019-05-20Declare exiftool-command for the byte compiler.Arun Isaac
* exiftool.el (exiftool-command): Declare function.
2019-05-16Bump version.v0.3.2Arun Isaac
* exiftool.el: Bump to version 0.3.2.
2019-05-16Change buffer name of exiftool process to *exiftool*.Arun Isaac
* exiftool.el (exiftool-run): Change buffer name of exiftool process to *exiftool*.
2019-05-16Specify exiftool executable in a variable.Arun Isaac
* exiftool.el (exiftool-executable): New variable. (exiftool-run): Invoke command specified in exiftool-executable.
2019-02-04Bump version.v0.3.1Arun Isaac
* exiftool.el: Bump to version 0.3.1.
2019-02-04Signal a file-missing error when file is not found.Arun Isaac
* exiftool.el (exiftool--assert-file-exists): New function. (exiftool-read, exiftool-copy, exiftool-write): Assert that file arguments exist before operating on them. * tests/exiftool-tests.el (read-file-not-found-test, copy-file-not-found-test, write-file-not-found-test): New tests.
2017-08-23Ignore minor errors while copying tags.Arun Isaac
* exiftool.el (exiftool-copy): Call exiftool with the "-m" flag.
2017-06-14Bump version.v0.3Arun Isaac
* exiftool.el: Bump to version 0.3.
2017-06-14Do not print out messages.Arun Isaac
* exiftool.el (exiftool-copy): Remove message.
2017-06-14Handle literal "-" tag values.Arun Isaac
* 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 "-".
2017-06-14Use regexp to extract tag and value.Arun Isaac
* 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 ":".
2017-06-14Copy only provided tags.Arun Isaac
* exiftool.el (exiftool-copy): Append "-all:all" to exiftool command only when no tags are provided.
2017-03-01Rename library to exiftool.el.Arun Isaac