Skip to content

Commit

Permalink
25.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjgraph committed Nov 29, 2024
1 parent eb1418a commit 8ca5ef8
Show file tree
Hide file tree
Showing 15 changed files with 2,227 additions and 32 deletions.
20 changes: 20 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
29-NOV-2024: 25.0.0

- Restructures project files

28-NOV-2024: 24.9.3

- NPE fixes

27-NOV-2024: 24.9.2

- [conf cloud] Improving theme detection timing [DID-13083]

25-NOV-2024: 24.9.1

- Reverts DOMPurifty to 3.1.5 [DID-13161]

23-NOV-2024: 24.9.0

- Updates workbox to 7.3.0 in build docker image

22-NOV-2024: 24.8.9

- Forces service worker to reload Confluence and Jira html to fetch the new CSP header [DID-13083]
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.8.9
25.0.0
2 changes: 1 addition & 1 deletion etc/dependencies/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"mermaid": "11.2.0",
"pako": "2.1.0",
"crypto-js": "3.1.2",
"dompurify": "3.2.1",
"dompurify": "3.1.5",
"spin.js": "2.0.0",
"roughjs": "4.6.6",
"mathjax": "3.2.2",
Expand Down
16 changes: 8 additions & 8 deletions src/main/webapp/js/app.min.js

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions src/main/webapp/js/diagramly/DesktopLibrary.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// Copyright (c) 2006-2020, JGraph Ltd
/**
*
*/
DesktopLibrary = function(ui, data, fileObj)
{
LocalLibrary.call(this, ui, data, fileObj.name);
this.fileObj = fileObj;
};

//Extends LocalLibrary
mxUtils.extend(DesktopLibrary, LocalLibrary);

/**
*
*/
DesktopLibrary.prototype.getHash = function()
{
return 'S' + encodeURIComponent(this.fileObj.path);
};

/**
*
*/
DesktopLibrary.prototype.save = function(revision, success, error)
{
LocalFile.prototype.saveFile.apply(this, arguments);
};
Loading

0 comments on commit 8ca5ef8

Please sign in to comment.