mirror of
https://github.com/Hopiu/wagtail-modeltranslation.git
synced 2026-05-19 12:41:14 +00:00
Bug #16: Template tags missing from pip install;
This commit is contained in:
parent
22561a1323
commit
63162776f0
4 changed files with 74 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
@ -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 *
|
||||
|
|
|
|||
2
PKG-INFO
2
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,
|
||||
|
|
|
|||
2
setup.py
2
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 '
|
||||
|
|
|
|||
Loading…
Reference in a new issue