Skip to content

Commit

Permalink
Bumps to version 1.2 and updates the documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
atheriel committed Apr 18, 2019
1 parent 24501a9 commit e2fbaa1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,12 @@ your `load-path`.
## Usage in Interactive Mode

In interactive mode, calling `org-clock-csv` will open a buffer with the parsed
entries from the files in `org-agenda-files`. The function can also be called
from lisp code with a file list argument.
entries from the files in `org-agenda-files`, while `org-clock-csv-to-file` will
write this output to a file. Both functions take a prefix argument to read
entries from the current buffer instead.

Both functions can also be called from lisp code to specify an explicit file
list argument.

## Usage in Batch Mode

Expand Down
13 changes: 8 additions & 5 deletions org-clock-csv.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
;; Author: Aaron Jacobs <[email protected]>
;; URL: https://github.com/atheriel/org-clock-csv
;; Keywords: calendar, data, org
;; Version: 1.1
;; Version: 1.2
;; Package-Requires: ((org "8.3") (s "1.0"))

;; This file is NOT part of GNU Emacs.
Expand All @@ -30,10 +30,13 @@
;; intended to facilitate clocked time analysis in external programs.

;; In interactive mode, calling `org-clock-csv' will open a buffer
;; with the parsed entries from the files in `org-agenda-files'. The
;; function can also be called from Lisp code with a file list
;; argument, and there is an `org-clock-csv-batch-and-exit' that will
;; output the CSV content to standard output (for use in batch mode).
;; with the parsed entries from the files in `org-agenda-files', while
;; `org-clock-csv-to-file' will write this output to a file. Both
;; functions take a prefix argument to read entries from the current
;; buffer instead.

;; There is also an `org-clock-csv-batch-and-exit' that will output
;; the CSV content to standard output (for use in batch mode).

;;; Code:

Expand Down

0 comments on commit e2fbaa1

Please sign in to comment.