wagtail-modeltranslation/CHANGELOG.txt

151 lines
4.1 KiB
Text
Raw Permalink Normal View History

2019-03-21 17:10:58 +00:00
v0.6.0rc2:
- added RichTextFieldPanel to the default list of patched panels
- added settings to allow the patching of custom panels
- slug auto-population is now made the same way as wagtail (no changes in live pages)
- Fixed: When adding a page link in a translated RichTextField the link was always to the default language version of that page
- Fixed: Copy content of streamfield fails with 414 Request-URI Too Long
- Fixed: Panel patching failed with the error "AttributeError: 'list' object has no attribute 'children'"
2017-03-06 17:27:39 +00:00
v0.6.0rc1:
- django-modeltranslation is now a dependency.
- added compatibility with Python 3 (3.3, 3.4, 3.5).
- dropped support for wagtail versions prior to 1.4.
- Fixed: sometimes the required fields weren't marked as so, raising an Exception not caught on the form.
- Fixed: Patch of panels when a custom edit_handler is defined.
- Fixed: set_url_method which caused to child of a page not being updated when the parent path changed.
- Fixed: Validation of duplicated slugs.
v0.5.0a1:
- Added patching for BaseSetting subclasses
v0.5.0a:
- Wagtail 1.4.x compatibility (#67)
- ElasticSearch integration (#66)
- Validation of slug uniqueness (#37)
- Patching of inline-panels (#70)
- Deprecated TranslationMixin and SnippetsMixin (#69)
v0.4.4:
- Fix issue related to Django 1.9.x
v0.4.3:
- Fixed bug when editing a page and parent url path of some language is None.
v0.4.2:
- Fixed issue with stream fields (#39).
v0.4.1:
- Fixed issue related to displaying wrong panels on model creation;
v0.4:
- Fixed issue related to set_url_path override on parent page;
v0.3.6:
- Fixed data migrations
- Fixed move page to set url_path for all languages
- Added support for django 1.9
- Some pep8 fixes
- Fix #44
v0.3.5:
- Fixed URL property return None
v0.3.4:
- Fixed update_translation_fields: added support to foreign keys (#42)
v0.3.3:
- Added ImageChooserPanel compability (#34)
- use build_localized_fieldname insetead using "%s_%s" only (#40)
v0.3.2:
- Fixed route() method issue causing invalid field lookup;
v0.3.1:
- Add support to snippets, using SnippetsTranslationMixin
v0.3:
- Fix conflicts in migrations with wagtailcore migrations. Now translated fields lives only on Page child classes tables;
v0.2.4:
- Fix missing Site class import;
- Fix missing reverse function import;
v0.2.3:
- Add workaround for InlinePanel AttributeError (#31);
- Added support to widget declarations on FieldPanel;
- Fixed missing templatetags folder on pypi package;
v0.2.2:
- Added duplicate content buttons to translated StreamFieldPanels;
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)