Skip to content

Commit

Permalink
22.1.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjgraph committed Nov 29, 2023
1 parent 5dd61cf commit 4776522
Show file tree
Hide file tree
Showing 21 changed files with 3,647 additions and 3,130 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
29-NOV-2023: 22.1.5

- Fixes forwards refs for undo of replaceDiagramData
- Adds defaultGridSize config option [DID-10031]
- Fixes custom fonts while editing label [DID-10031]

24-NOV-2023: 22.1.4

- [conf cloud] Fixes diagram list editing older versions and not refreshing [DID-10113]
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.1.4
22.1.5
6 changes: 6 additions & 0 deletions src/main/mxgraph/io/mxCellCodec.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,12 @@ mxCodecRegistry.register(function()
var decoder = mxCodecRegistry.codecs[element.nodeName] || this;
object = decoder.decode(dec, element);
}
else if (window.console != null)
{
console.error('mxCellCodec.beforeDecode: ' +
this.idrefs[i] + ' ' + ref + ' not found' +
' for cell ' + obj.getId());
}
}

obj[attr] = object;
Expand Down
1 change: 1 addition & 0 deletions src/main/mxgraph/view/mxGraph.js
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,7 @@
* (code)
* var enc = new mxCodec(mxUtils.createXmlDocument());
* var node = enc.encode(graph.getModel());
* enc.document.appendChild(node);
* (end)
*
* This will produce an XML node than can be handled using the DOM API or
Expand Down
3,471 changes: 1,742 additions & 1,729 deletions src/main/webapp/js/app.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit 4776522

Please sign in to comment.