diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 234dbbd3f..e8dd9a914 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,4 @@ -== Version 2.6.4 Work in progress (not released -- this is a draft) == +== Version 2.6.4 == Users side : ------------ @@ -8,7 +8,7 @@ # Some escaping issues have been fixed. # Apps : * Opportunities : - - In the blocks for related Invoices, Quotes & Sales Orders, + - In the blocks for related Invoices, Quotes & Sales Orders : - The color of the statuses were not displayed. - The multi-inner-edition have been added. @@ -18,15 +18,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.6.3 == diff --git a/creme/__init__.py b/creme/__init__.py index 57399fb6e..77b0b186b 100644 --- a/creme/__init__.py +++ b/creme/__init__.py @@ -1,4 +1,4 @@ -__version__ = '2.6.3' +__version__ = '2.6.4' def get_version(): diff --git a/docker/README.md b/docker/README.md index 997aef3cd..44159e4c4 100644 --- a/docker/README.md +++ b/docker/README.md @@ -23,7 +23,7 @@ Please note that this is **not a production ready image**, as it would require a Starting an instance is simple: ```commandline -docker run --detach --rm --name creme_demo --publish 8001:80 --volume creme_data:/srv/creme/data cremecrm/cremecrm-demo:2.6.3 +docker run --detach --rm --name creme_demo --publish 8001:80 --volume creme_data:/srv/creme/data cremecrm/cremecrm-demo:2.6.4 ``` This command will run a docker container in daemon mode, named `creme_demo`: