From 63162776f014f1bc6341c7f72f283d7fc20ead70 Mon Sep 17 00:00:00 2001 From: Rui Manuel da Silva Martins Date: Mon, 10 Aug 2015 14:46:06 +0100 Subject: [PATCH] Bug #16: Template tags missing from pip install; --- CHANGELOG.txt | 70 +++++++++++++++++++++++++++++++++++++++++++++++++++ MANIFEST.in | 2 ++ PKG-INFO | 2 +- setup.py | 2 +- 4 files changed, 74 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index e69de29..34098f1 100755 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -0,0 +1,70 @@ +v0.2.1: +- Fixed missing templatetags folder on pypi package; + +v0.2: +- Support for StreamFields; +- No more django-modeltranslation dependency; + +v0.1.5 + +- Fixed required fields related bug + +v0.1.4 + +- Support for wagtailsearch and wagtailsnippets + +v0.1.3 + +- Support for translated inline panels #8: https://github.com/infoportugal/wagtail-modeltranslation/issues/8 + +v0.1.2 + +- Fixed Problem updating field with null value #6: https://github.com/infoportugal/wagtail-modeltranslation/issues/6 + +v0.1.1 + +- Fixed url_path issue caused by a browser with language different from settings.LANGUAGE_CODE + +v0.1 + +- Minor release working but lacks full test coverage. +- Last version had required fields validation problems, now fixed. + +v0.0.9 + +- Fixed issue that causes duplicated translation fields, preventing auto-slug from working properly. + +v0.0.8 + +- Fixed issue related to deleting a non existing key on PAGE_EDIT_HANDLER dict + +v0.0.7 + +- Fixed set_url_path() translatable model method + +v0.0.6 + +- Fixed js issue related to auto-generating slugs + +v0.0.5 + +- Now using django-modeltranslation 0.9.1; +- Fixed problem related to slug field fallbacks; + +v0.0.4 + +** IMPORTANT: ** make sure that TranslationMixin comes before Page class on model inheritance + +- Fix enhancement #1: url_path translation field +- Now includes a template tag that returns current page url to corresponding translated url +- New management command to update url_path translation fields - **set\_translation\_url\_paths** + +v0.0.3 + +- New methods; +- Now supports required fields; +- Fixed issue related to browser locale; + +v0.0.2 + +- Prepopulated fields now works for translated fields (title and slug) \ No newline at end of file diff --git a/MANIFEST.in b/MANIFEST.in index 9c99c08..9c52b28 100755 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,5 @@ include *.txt *.rst recursive-include docs *.rst conf.py Makefile make.bat recursive-include wagtail_modeltranslation/static * +recursive-include wagtail_modeltranslation/management * +recursive-include wagtail_modeltranslation/templatetags * diff --git a/PKG-INFO b/PKG-INFO index 0e12a5c..14ef76d 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: wagtail-modeltranslation -Version: 0.2.0 +Version: 0.2.1 Summary: Translates Wagtail CMS models using a registration approach. Home-page: https://github.com/infoportugal/wagtail-modeltranslation Author: Diogo Marques, diff --git a/setup.py b/setup.py index ef96a3c..293f389 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from distutils.core import setup setup( name='wagtail-modeltranslation', - version='0.2.0', + version='0.2.1', description='Translates Waghtail CMS models using a registration approach.', long_description=( 'The modeltranslation application can be used to translate dynamic '