Age | Commit message (Collapse) | Author |
|
Earlier, the contact and license macros were defined in server-side
configuration. The README should be self-contained and independent of
server configuration.
* README.org (Contributing, License): New sections.
|
|
Earlier, the wikipedia link abbreviation was defined in server-side
configuration. The README should be self-contained and independent of
server configuration.
* README.org (wikipedia): New link abbreviation.
|
|
* README.org: Add title.
|
|
Prior to this change, the code that came before the feature
requirements errored out due to missing features.
* tests/exiftool-tests.el: Move feature requirements to the top of the
code.
|
|
* exiftool.el (exiftool-command): Declare function.
|
|
* .gitignore: New file.
|
|
* Makefile (build, clean): New targets.
|
|
* tests/Makefile: Delete file.
* Makefile: New file.
|
|
* exiftool.el: Bump to version 0.3.2.
|
|
* exiftool.el (exiftool-run): Change buffer name of exiftool process
to *exiftool*.
|
|
* exiftool.el (exiftool-executable): New variable.
(exiftool-run): Invoke command specified in exiftool-executable.
|
|
* exiftool.el: Bump to version 0.3.1.
|
|
* 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.
|
|
* exiftool.el (exiftool-copy): Call exiftool with the "-m" flag.
|
|
* tests/exiftool-tests.el (delete-test): Replace `car' invocations
with `nth 0'.
|
|
* tests/exiftool-tests.el (exiftool-tests--tags): New variable.
(read-write-test, copy-all-test, copy-some-test): Reference
exiftool-tests--tags.
|
|
* tests/exiftool-tests.el (with-temp-test-file): Fix indentation.
|
|
* exiftool.el: Bump to version 0.3.
|
|
* exiftool.el (exiftool-copy): Remove message.
|
|
* 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 "-".
|
|
* tests/exiftool-tests.el (exiftool-tests--tag-value): New test cases.
|
|
* tests/exiftool-tests.el (copy-test): Rename to `copy-all-test'.
(copy-some-test): New test.
|
|
* 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.
|
|
* 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 ":".
|
|
* exiftool.el (exiftool-copy): Append "-all:all" to exiftool command
only when no tags are provided.
|
|
* README.org: Add contact information.
|
|
* tests/Makefile (check): Remove explicit loading of package `ert'.
|
|
* README.org: Shorten tests command. "check" is default target of
Makefile. No need to explicitly mention it.
|
|
* README.org: Put tag names "Marked" and "Creator" within double quotes.
|
|
* README.org: Change tests source block from "bash" to "sh".
|
|
* README.org: Invoke the "license" macro.
|
|
* README.org: Add installation information.
|
|
* README.org: Rename library to exiftool.el.
|
|
|
|
* el-exiftool.el: Require `cl-lib' instead of `cl-macs'.
|
|
* el-exiftool.el (el-exiftool--tq-sync-query): Rename unused argument
`closure' to `_'.
According to the convention of the byte compiler, unused argument
names must start with an underscore.
|
|
* el-exiftool.el: Require `tq'.
|
|
* el-exiftool.el: Require `cl-macs' instead of `cl'.
|
|
* el-exiftool.el: Remove redundant comment indicator.
|
|
* el-exiftool.el: Put two spaces after period in Commentary section.
|
|
* el-exiftool.el: Add ((emacs "25")) to "Package-Requires" header.
|
|
* el-exiftool.el: Add "Version" header.
|
|
* README.org: Add "Running tests" section.
|
|
* README.org: Put function return values on their own line.
|
|
* README.org: Update function docstrings, example function calls, and
note on the ExifTool -stay_open process.
|
|
* el-exiftool.el: Comment on the ExifTool -stay_open process.
|
|
* el-exiftool.el: Capitalize occurrences of ExifTool as in its project website.
|
|
* el-exiftool.el (el-exiftool-read): Rewrite docstring in active voice.
|
|
* el-exiftool.el (el-exiftool-copy): Support copying specific tags
with the &rest `tags' argument.
|
|
* el-exiftool.el (el-exiftool--tq-sync-query): Add docstring.
(el-exiftool-run, el-exiftool-command, el-exiftool-read,
el-exiftool-write): Improve docstring.
|