mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
parent
800c89543f
commit
8cedf04b0a
3 changed files with 10 additions and 5 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,14 +1,18 @@
|
||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
### 1.0.4
|
#### 1.0.5
|
||||||
|
|
||||||
|
* Backwards compatibility with `parsedatetime` 0.8.7
|
||||||
|
|
||||||
|
#### 1.0.4
|
||||||
|
|
||||||
* [Improved] Python 2.6 compatibility
|
* [Improved] Python 2.6 compatibility
|
||||||
* [Improved] Better utf-8 support
|
* [Improved] Better utf-8 support
|
||||||
* [New] Python 3 compatibility
|
* [New] Python 3 compatibility
|
||||||
* [New] Respects the `XDG_CONFIG_HOME` environment variable for storing your configuration file (Thanks [evaryont](https://github.com/evaryont))
|
* [New] Respects the `XDG_CONFIG_HOME` environment variable for storing your configuration file (Thanks [evaryont](https://github.com/evaryont))
|
||||||
|
|
||||||
### 1.0.3 (April 17, 2013)
|
#### 1.0.3 (April 17, 2013)
|
||||||
|
|
||||||
* [Improved] Removed clint in favour of colorama
|
* [Improved] Removed clint in favour of colorama
|
||||||
* [Fixed] Fixed a bug where showing tags failed when no tags are defined.
|
* [Fixed] Fixed a bug where showing tags failed when no tags are defined.
|
||||||
|
@ -16,7 +20,7 @@ Changelog
|
||||||
* [Fixed] Fixes readline support on Windows
|
* [Fixed] Fixes readline support on Windows
|
||||||
* [Fixed] Smaller fixes and typos
|
* [Fixed] Smaller fixes and typos
|
||||||
|
|
||||||
### 1.0.1 (March 12, 2013)
|
#### 1.0.1 (March 12, 2013)
|
||||||
|
|
||||||
* [Fixed] Requires parsedatetime 1.1.2 or newer
|
* [Fixed] Requires parsedatetime 1.1.2 or newer
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,8 @@ try: from . import Entry
|
||||||
except (SystemError, ValueError): import Entry
|
except (SystemError, ValueError): import Entry
|
||||||
import codecs
|
import codecs
|
||||||
import os
|
import os
|
||||||
import parsedatetime.parsedatetime as pdt
|
try: import parsedatetime.parsedatetime_consts as pdt
|
||||||
|
except ImportError: import parsedatetime.parsedatetime as pdt
|
||||||
import re
|
import re
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
import time
|
import time
|
||||||
|
|
|
@ -7,7 +7,7 @@ jrnl is a simple journal application for your command line.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__title__ = 'jrnl'
|
__title__ = 'jrnl'
|
||||||
__version__ = '1.0.4'
|
__version__ = '1.0.5'
|
||||||
__author__ = 'Manuel Ebert'
|
__author__ = 'Manuel Ebert'
|
||||||
__license__ = 'MIT License'
|
__license__ = 'MIT License'
|
||||||
__copyright__ = 'Copyright 2013 Manuel Ebert'
|
__copyright__ = 'Copyright 2013 Manuel Ebert'
|
||||||
|
|
Loading…
Add table
Reference in a new issue