diff --git a/CHANGELOG.md b/CHANGELOG.md index cebd5e32..e5ec166f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,19 @@ Changelog ========= -### 1.5.2 +#### 1.5.4 + +* [New] DayOne journals can now handle tags + +#### 1.5.3 + +* [Fixed] DayOne integration with older DayOne Journals + +#### 1.5.2 * [Improved] Soft-deprecated `-to` for filtering by time and introduces `-until` instead. -### 1.5.1 +#### 1.5.1 * [Fixed] Fixed a bug introduced in 1.5.0 that caused the entire journal to be printed after composing an entry diff --git a/README.md b/README.md index e92ba029..52d65b52 100644 --- a/README.md +++ b/README.md @@ -204,11 +204,11 @@ The configuration file is a simple JSON file with the following options. ### DayOne Integration -Using your DayOne journal instead of a flat text file is dead simple - instead of pointing to a text file, set the `"journal"` key in your `.jrnl_conf` to point to your DayOne journal. This is a folder ending with `.dayone`, and it's located at +Using your DayOne journal instead of a flat text file is dead simple - instead of pointing to a text file, change your `.jrnl_conf` to point to your DayOne journal. This is a folder ending with `.dayone`, and it's located at - * `~/Library/Application Support/Day One/` by default - * `~/Dropbox/Apps/Day One/` if you're syncing with Dropbox and - * `~/Library/Mobile Documents/5U8NS4GX82~com~dayoneapp~dayone/Documents/` if you're syncing with iCloud. +* `~/Library/Application Support/Day One/` by default +* `~/Dropbox/Apps/Day One/` if you're syncing with Dropbox and +* `~/Library/Mobile Documents/5U8NS4GX82~com~dayoneapp~dayone/Documents/` if you're syncing with iCloud. Instead of all entries being in a single file, each entry will live in a separate `plist` file. You can also star entries when you write them: diff --git a/jrnl/__init__.py b/jrnl/__init__.py index 4ee7ee31..01168bec 100644 --- a/jrnl/__init__.py +++ b/jrnl/__init__.py @@ -7,7 +7,7 @@ jrnl is a simple journal application for your command line. """ __title__ = 'jrnl' -__version__ = '1.5.2' +__version__ = '1.5.4' __author__ = 'Manuel Ebert' __license__ = 'MIT License' __copyright__ = 'Copyright 2013 Manuel Ebert'