Add documentation
This commit is contained in:
parent
aef9313bb8
commit
28027940a1
4 changed files with 12 additions and 4 deletions
|
@ -3,6 +3,12 @@
|
|||
History
|
||||
-------
|
||||
|
||||
0.3.0 (Unreleased)
|
||||
++++++++++++++++++
|
||||
|
||||
* Multisite support
|
||||
*
|
||||
|
||||
0.2.0 (2014-09-24)
|
||||
++++++++++++++++++
|
||||
|
||||
|
|
|
@ -142,6 +142,7 @@ Features
|
|||
* Multilingual support using django-parler
|
||||
* Support for Twitter cards, Open Graph and Google+ snippets meta tags
|
||||
* Optional support for simpler TextField-based content editing
|
||||
* Multisite support (posts can be visible in one or more Django sites on the same project)
|
||||
|
||||
Import from Wordpress
|
||||
+++++++++++++++++++++
|
||||
|
@ -164,9 +165,10 @@ Settings
|
|||
* BLOG_IMAGE_FULL_SIZE: Size of the main image when shown on the post detail;
|
||||
it's a dictionary with `size`, `crop` and `upscale` keys;
|
||||
(default: `{'size': '640x120', 'crop': True,'upscale': False}`)
|
||||
* BLOG_PAGINATION: Number of post per page; (defaul: 10)
|
||||
* BLOG_LATEST_POSTS: Default number of post in the **Latest post** plugin; (defaul: 5)
|
||||
* BLOG_PAGINATION: Number of post per page; (default: 10)
|
||||
* BLOG_LATEST_POSTS: Default number of post in the **Latest post** plugin; (default: 5)
|
||||
* BLOG_POSTS_LIST_TRUNCWORDS_COUNT: Default number of words shown for abstract in the post list; (default: 100)
|
||||
* BLOG_MULTISITE: Add support for multisite setup
|
||||
|
||||
Social media tags settings
|
||||
++++++++++++++++++++++++++
|
||||
|
|
|
@ -1 +1 @@
|
|||
__version__ = '0.2'
|
||||
__version__ = '0.3.a1'
|
||||
|
|
2
setup.py
2
setup.py
|
@ -36,7 +36,7 @@ setup(
|
|||
],
|
||||
include_package_data=True,
|
||||
install_requires=[
|
||||
'django-parler>=1.0',
|
||||
'django-parler>=1.1',
|
||||
'django-cms>=3.0',
|
||||
'django-taggit',
|
||||
'django-filer',
|
||||
|
|
Loading…
Reference in a new issue