Skip to content

Commit

Permalink
19.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjgraph committed Jun 6, 2022
1 parent e4b64b0 commit d92fd2c
Show file tree
Hide file tree
Showing 11 changed files with 304 additions and 297 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,3 +1,7 @@
06-JUN-2022: 19.0.1

- Fixes handling of cell ID in CSV import [DID-5225]

03-JUN-2022: 19.0.0

- Removes IE 11 support
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
19.0.0
19.0.1
2 changes: 0 additions & 2 deletions src/main/java/com/mxgraph/online/ConverterServlet.java
Expand Up @@ -267,8 +267,6 @@ else if ("jpg".equals(outputformat))
}

response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);

throw e;
}
}
}
Expand Down
146 changes: 73 additions & 73 deletions src/main/webapp/js/app.min.js

Large diffs are not rendered by default.

13 changes: 9 additions & 4 deletions src/main/webapp/js/diagramly/EditorUi.js
Expand Up @@ -13559,19 +13559,24 @@
var values = arrays[i];
var cell = null;
var id = (identityIndex != null) ? namespace + values[identityIndex] : null;
var ignoreCell = false;

if (id != null)
{
cell = graph.model.getCell(id);

// Bypasses update of cells inserted during this run
ignoreCell = cell == null || mxUtils.indexOf(
allCells, cell) >= 0;
}
var newCell = new mxCell(label, new mxGeometry(x0, y,
0, 0), style || 'whiteSpace=wrap;html=1;');
newCell.collapsed = collapsed;
newCell.vertex = true;
newCell.id = id;

if (cell != null)
if (cell != null && !ignoreCell)
{
graph.model.setCollapsed(cell, collapsed);
}
Expand All @@ -13580,7 +13585,7 @@
{
graph.setAttributeForCell(newCell, attribs[j], values[j]);

if (cell != null)
if (cell != null && !ignoreCell)
{
graph.setAttributeForCell(cell, attribs[j], values[j]);
}
Expand All @@ -13594,7 +13599,7 @@
{
graph.labelChanged(newCell, tempLabel);

if (cell != null)
if (cell != null && !ignoreCell)
{
graph.cellLabelChanged(cell, tempLabel);
}
Expand Down
12 changes: 6 additions & 6 deletions src/main/webapp/js/integrate.min.js

Large diffs are not rendered by default.

208 changes: 104 additions & 104 deletions src/main/webapp/js/viewer-static.min.js

Large diffs are not rendered by default.

208 changes: 104 additions & 104 deletions src/main/webapp/js/viewer.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/main/webapp/mxgraph/mxClient.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/main/webapp/service-worker.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/main/webapp/service-worker.js.map

Large diffs are not rendered by default.

0 comments on commit d92fd2c

Please sign in to comment.