From e81e38869647444f753bb6cce9467f0036042eb1 Mon Sep 17 00:00:00 2001 From: Manuel Ebert Date: Sun, 20 Oct 2013 13:30:27 -0700 Subject: [PATCH] Updates readme --- README.md | 1 - jrnl/__init__.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 90f896d5..77ef006f 100644 --- a/README.md +++ b/README.md @@ -185,7 +185,6 @@ The configuration file is a simple JSON file with the following options. - `journals`: paths to your journal files - `editor`: if set, executes this command to launch an external editor for writing your entries, e.g. `vim` or `subl -w` (note the `-w` flag to make sure _jrnl_ waits for Sublime Text to close the file before writing into the journal). - `encrypt`: if `true`, encrypts your journal using AES. -- `password`: you may store the password you used to encrypt your journal in plaintext here. This is useful if your journal file lives in an unsecure space (ie. your Dropbox), but the config file itself is more or less safe. - `tagsymbols`: Symbols to be interpreted as tags. (__See note below__) - `default_hour` and `default_minute`: if you supply a date, such as `last thursday`, but no specific time, the entry will be created at this time - `timeformat`: how to format the timestamps in your journal, see the [python docs](http://docs.python.org/library/time.html#time.strftime) for reference diff --git a/jrnl/__init__.py b/jrnl/__init__.py index 6124d668..4d384eb8 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.6.0' +__version__ = '1.6.0-dev' __author__ = 'Manuel Ebert' __license__ = 'MIT License' __copyright__ = 'Copyright 2013 Manuel Ebert'