From 7d2734ec81aa6e00fb8af0b161c883a877a1adf3 Mon Sep 17 00:00:00 2001 From: Guillaume Englert Date: Mon, 2 Dec 2024 11:46:03 +0100 Subject: [PATCH] Version is now "2.5.16". --- CHANGELOG.txt | 18 ++++++++++-------- creme/__init__.py | 2 +- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index c0d575dc4..eab9f80a4 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,4 @@ -== Version 2.5.16 Work in progress (not released -- this is a draft) == +== Version 2.5.16 == Users side : ------------ @@ -16,15 +16,17 @@ Non breaking changes : ---------------------- # The method 'CremeUser.has_perm()' works now correctly for link permission on models. - # Javascript: - * Dialog: - - Add option 'propagateEvent':. - - When enabled, a copy of the event prefixed by 'dialog-' is triggered to allow the usage of external handlers (the dialog element if opened or the window.document). + # Javascript : + - Dialog : + - An option 'propagateEvent' has been added : + - When enabled, a copy of the event prefixed by 'dialog-' is triggered to allow the usage of external handlers + (the dialog element if opened or the window.document). It can be used with the new id option to listen a specific popup. e.g: $(document).on('dialog-open', '#my-popup', function() { ... }); - - Add option 'id' to identify the dialog DOM element. - - Add 'fitToFrameSize' & 'resize' methods to 'ui.dialog' widget. - - Add 'cremeInstance' method to 'ui.dialog' widget : returns the creme.dialog.Dialog instance + - An option 'id' has been added to identify the dialog DOM element. + - The methods 'fitToFrameSize()' & 'resize()' has been added to the widget 'ui.dialog'. + - A method 'cremeInstance()' has been added to the widget 'ui.dialog'; + it returns the 'creme.dialog.Dialog' instance. == Version 2.5.14 & 2.5.15 == diff --git a/creme/__init__.py b/creme/__init__.py index f5c112376..f7f454a11 100644 --- a/creme/__init__.py +++ b/creme/__init__.py @@ -1,4 +1,4 @@ -__version__ = '2.5.15' +__version__ = '2.5.16' def get_version():