Skip to content

Commit

Permalink
0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rksm committed Aug 16, 2019
1 parent 52fc510 commit e14b7da
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.3.2
## bugfixes
- Fix regexp to match non-english timestamps (Thanks @hso!)

# 0.3.1
## minor changes
- toggle between selecting all days and none with ctrl-a
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION := 0.3.1
VERSION := 0.3.2

CLJ_FILES := $(shell find . -type f \
\( -path "./test/*" -o -path "./dev/*" -o -path "./src/*" \) \
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ and run it! (double click or from command line, see below). It will open a new b

*2019-08-13: MELPA package is pending, see [the melpa pull request](https://github.com/melpa/melpa/pull/6365).*

For the time being, emacs support can be enabled by downloading the [emacs package](https://github.com/rksm/clj-org-analyzer/releases/download/0.3.1/org-analyzer-for-emacs-0.3.1.tar.gz) directly, extracting it and adding it to your load path and require it:
For the time being, emacs support can be enabled by downloading the [emacs package](https://github.com/rksm/clj-org-analyzer/releases/download/0.3.2/org-analyzer-for-emacs-0.3.2.tar.gz) directly, extracting it and adding it to your load path and require it:

```elisp
(add-to-list 'load-path "/path/to/org-analyzer-0.3.1/")
(add-to-list 'load-path "/path/to/org-analyzer-0.3.2/")
(require 'org-analyzer)
```

Expand All @@ -64,12 +64,12 @@ Afterwards, you can start the tool via `M-x org-analyzer-start`.

## Commandline

Download the latest jar as described above and start it with `java -jar org-analyzer-0.3.1.jar`.
Download the latest jar as described above and start it with `java -jar org-analyzer-0.3.2.jar`.

The following command line options are available, as per `java -jar org-analyzer-0.3.1.jar --help`:
The following command line options are available, as per `java -jar org-analyzer-0.3.2.jar --help`:

```
Usage: java -jar org-analyzer-0.3.1.jar [opt*] [org-file-or-dir*]
Usage: java -jar org-analyzer-0.3.2.jar [opt*] [org-file-or-dir*]
Interactive visualization of timetracking data (org clocks).
Expand Down
2 changes: 1 addition & 1 deletion org-analyzer-el/org-analyzer-pkg.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(define-package
"org-analyzer"
"0.3.1"
"0.3.2"
"org-analyzer is a tool that extracts time tracking data from org files.")
4 changes: 2 additions & 2 deletions org-analyzer-el/org-analyzer.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
;; Author: Robert Krahn <[email protected]>
;; URL: https://github.com/rksm/clj-org-analyzer
;; Keywords: calendar
;; Version: 0.3.1
;; Version: 0.3.2
;; Package-Requires: ((emacs "24"))

;; Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down Expand Up @@ -44,7 +44,7 @@
(defvar org-analyzer-process-buffer nil
"The buffer for running the jar.")

(defvar org-analyzer-version "0.3.1"
(defvar org-analyzer-version "0.3.2"
"Version to sync with jar.")

(defvar org-analyzer-jar-file-name "org-analyzer.jar"
Expand Down
Binary file modified org-analyzer-el/org-analyzer.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>org.rksm</groupId>
<artifactId>org-analyzer</artifactId>
<packaging>jar</packaging>
<version>0.3.1</version>
<version>0.3.2</version>
<name>org-analyzer</name>
<description>An app that creates an interactive visualization of org-mode time-tracking data (org clockin).</description>
<url>http://github.com/rksm/clj-org-analyzer</url>
Expand Down

0 comments on commit e14b7da

Please sign in to comment.