bump version, write doc, write changelog

This commit is contained in:
Carl Chenet 2019-08-22 00:41:51 +02:00
parent 64f33ecfac
commit 4048bd9abd
7 changed files with 28 additions and 13 deletions

View file

@ -54,9 +54,9 @@ copyright = '2015-2019, Carl Chenet <chaica@ohmytux.com>'
# built documents.
#
# The short X.Y version.
version = '0.10'
version = '0.11'
# The full version, including alpha/beta/rc tags.
release = '0.10'
release = '0.11'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View file

@ -33,6 +33,10 @@ In order to configure Feed2toot, you need to create a feed2toot.ini file (or any
cachefile=/var/lib/feed2toot/feed2toot.db
cache_limit=10000
[lock]
lock_file=/var/lock/feed2toot.lock
lock_timeout=3600
[rss]
uri=https://www.journalduhacker.net/rss
uri_list=/etc/feed2toot//rsslist.txt
@ -67,6 +71,11 @@ For the [cache] section:
- cachefile: the path to the cache file storing ids of already tooted links. Absolute path is mandatory. This file should always use the .db extension.
- cache_limit: length of the cache queue. defaults to 100.
For the [lock] section (starting from version 0.11):
- lock_file: lock to stop any other feed2toot instance to run at the same time. Default is ~/.config/feed2toot.lock
- lock_timeout: automatically remove the lock if the datetime in the lock file is greater than n seconds. Default is 3600 seconds.
For the [rss] section:
- uri: the url of the rss feed to parse

View file

@ -25,7 +25,7 @@ Alternatively, Setuptools may be installed to a user-local path::
* Untar the tarball and go to the source directory with the following commands::
$ tar zxvf feed2toot-0.10.tar.gz
$ tar zxvf feed2toot-0.11.tar.gz
$ cd feed2toot
* Next, to install Feed2toot on your computer, type the following command with the root user::