Skip to content

Commit

Permalink
Version is now "2.6.4".
Browse files Browse the repository at this point in the history
  • Loading branch information
genglert committed Dec 2, 2024
1 parent 1b0e5c3 commit 6a70585
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
20 changes: 11 additions & 9 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
== Version 2.6.4 Work in progress (not released -- this is a draft) ==
== Version 2.6.4 ==

Users side :
------------
Expand All @@ -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.

Expand All @@ -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 ==
Expand Down
2 changes: 1 addition & 1 deletion creme/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '2.6.3'
__version__ = '2.6.4'


def get_version():
Expand Down
2 changes: 1 addition & 1 deletion docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down

0 comments on commit 6a70585

Please sign in to comment.