Skip to content

Commit

Permalink
22.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjgraph committed Nov 14, 2023
1 parent 0031495 commit 757205e
Show file tree
Hide file tree
Showing 13 changed files with 305 additions and 315 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
13-NOV-2023: 21.1.1

- Reverts part of e6ea9f to restore child cell dragging behaviour [drawio-3967]

08-Nov-2023: 22.1.0

- [conf cloud] Added confluence-content parameter support [DFCC-64]
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.1.0
22.1.1
15 changes: 3 additions & 12 deletions src/main/mxgraph/handler/mxGraphHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -1082,22 +1082,13 @@ mxGraphHandler.prototype.mouseMove = function(sender, me)
this.delayedSelection = false;
this.cellWasClicked = true;

if (!this.graph.isCellSelected(this.cell) &&
!mxEvent.isAltDown(me.getEvent()))
if (!mxEvent.isAltDown(me.getEvent()))
{
if (this.graph.isToggleEvent(me.getEvent()))
{
graph.addSelectionCell(this.cell);
}
else
{
graph.setSelectionCell(this.cell);
}
graph.addSelectionCell(this.cell);
}

this.start(this.cell, this.mouseDownX, this.mouseDownY,
this.getCells(null, graph.getSelectionCells().
concat(me.getCell())));
graph.getMovableCells(graph.getSelectionCells()));
}

var delta = (this.first != null) ? this.getDelta(me) : null;
Expand Down
17 changes: 8 additions & 9 deletions src/main/webapp/js/app.min.js

Large diffs are not rendered by default.

17 changes: 8 additions & 9 deletions src/main/webapp/js/integrate.min.js

Large diffs are not rendered by default.

17 changes: 8 additions & 9 deletions src/main/webapp/js/viewer-static.min.js

Large diffs are not rendered by default.

17 changes: 8 additions & 9 deletions src/main/webapp/js/viewer.min.js

Large diffs are not rendered by default.

15 changes: 7 additions & 8 deletions 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/resources/dia_it.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1027,7 +1027,7 @@ millimeters=Millimetri
confEditDraftDelOrExt=Questo diagramma si trova in una pagina di bozza, viene eliminato dalla pagina o viene modificato esternamente. Sarà salvato come una nuova versione dell'allegato e potrebbe non essere riportato nella pagina.
confDiagEditedExt=Il diagramma è modificato in un'altra sessione. Sarà salvato come una nuova versione dell'allegato, ma la pagina mostrerà le modifiche di altre sessioni.
macroNotFound=Macro non trovata
confAInvalidPageIdsFormat=Formato file di ID page errato
confAInvalidPageIdsFormat=Formato file IDS di pagina errata
confACollectingCurPages=Raccolta delle pagine attuali
confABuildingPagesMap=Creazione della mappa delle pagine
confAProcessDrawDiag=Iniziata l'elaborazione dei diagrammi importati di draw.io
Expand Down
Loading

0 comments on commit 757205e

Please sign in to comment.