From 28027940a1f6ac756b4b1c80258321a5aa4f362c Mon Sep 17 00:00:00 2001 From: Iacopo Spalletti Date: Sat, 4 Oct 2014 19:27:53 +0200 Subject: [PATCH] Add documentation --- HISTORY.rst | 6 ++++++ README.rst | 6 ++++-- djangocms_blog/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index a802356..4a1b3ef 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ History ------- +0.3.0 (Unreleased) +++++++++++++++++++ + +* Multisite support +* + 0.2.0 (2014-09-24) ++++++++++++++++++ diff --git a/README.rst b/README.rst index c7db3b2..69147f7 100644 --- a/README.rst +++ b/README.rst @@ -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 ++++++++++++++++++++++++++ diff --git a/djangocms_blog/__init__.py b/djangocms_blog/__init__.py index b650ceb..d374742 100644 --- a/djangocms_blog/__init__.py +++ b/djangocms_blog/__init__.py @@ -1 +1 @@ -__version__ = '0.2' +__version__ = '0.3.a1' diff --git a/setup.py b/setup.py index 11d8dd2..1a8e536 100755 --- a/setup.py +++ b/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',