From 25c4526a8a1c5284bd793175fbe2271f33aa5679 Mon Sep 17 00:00:00 2001 From: Hari Mahadevan Date: Mon, 16 Oct 2017 02:50:48 +0000 Subject: [PATCH] Prepare for Release 0.1.8 --- HISTORY.rst | 17 +++++++++++++++++ popupcrud/__init__.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 9a97f6a..c481e02 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -38,3 +38,20 @@ History ++++++++++++++++++ * Object detail view support + +0.1.8 (2017-10-16) +++++++++++++++++++ + +* Add PopupCrudViewSet.urls() -- a single method to return all the CRUD urls + that can be added to urlpatterns[]. +* When related object popup is activated on a multiselect select and it adds a + new object, the object is added to the existing list of selections. (old code + used to replace all the current selections with the newly added item) +* Insert all form media into ListView through ListView.media property. +* Fix broken support for django-select2 in modals by setting control's + dropdownParent to the modal (rather than parent window) +* Use the 'create-edit-modal' modal as the template for secondary modals + activated through related-model modal popups. This ensures consistent modal + look and feel if the user customized the modal template by overriding + popupcrud/modal.html template. +* Fix ALLOWED_HOSTS in settings - issue #1 diff --git a/popupcrud/__init__.py b/popupcrud/__init__.py index f1380ee..9cb17e7 100644 --- a/popupcrud/__init__.py +++ b/popupcrud/__init__.py @@ -1 +1 @@ -__version__ = "0.1.7" +__version__ = "0.1.8"