# HG changeset patch # User Bernhard Reiter # Date 1493824417 -7200 # Node ID cd990c7dc746c013ce42b20378fe6ade96768935 # Parent d6d9d319bd2eea43b123a991a2f28fd16df827d8 Version: Prepares for 2.0.post1 release. * Adds more documentation how to use getan. diff -r d6d9d319bd2e -r cd990c7dc746 README --- a/README Wed May 03 16:29:24 2017 +0200 +++ b/README Wed May 03 17:13:37 2017 +0200 @@ -11,9 +11,27 @@ and press enter to start the clock. See ``INTRODUCTION`` for more keyboard commands. -The time log entries will be saved in an sqlite database. +The time log entries will be saved in an sqlite database, +by default getan will create ``~/.getan/time.db``. The ``scripts/`` will help to generate reports from them. +Customization +------------- + +Use ``~/.getan/getanrc`` or the system-wide ``/etc/getanrc`` +to customize keys and colors. See ``getan/config.py`` for +the recognized options. Example:: + + [keybindings] + # changes the insert function to be activated by the `)` key + insert: ) + + [theme] + header: light green, dark green + body: light green, black + + + Installation ============ diff -r d6d9d319bd2e -r cd990c7dc746 getan/__init__.py --- a/getan/__init__.py Wed May 03 16:29:24 2017 +0200 +++ b/getan/__init__.py Wed May 03 17:13:37 2017 +0200 @@ -6,5 +6,5 @@ # This is Free Software licensed under the terms of GPLv3 or later. # For details see LICENSE coming with the source of 'getan'. -__version_info__ = ("2", "0", "dev0") +__version_info__ = ("2", "0", "post1") __version__ = '.'.join(__version_info__)