Skip to content

Commit 907d09c

Browse files
committed
29.6.4 release
1 parent e6e043a commit 907d09c

File tree

12 files changed

+164
-145
lines changed

12 files changed

+164
-145
lines changed

ChangeLog

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
18-MAR-2026: 29.6.4
2+
3+
- Tidies changelog
4+
- Add dev server launch configurations
5+
- Align custom paper size unit dropdown with other format panel elements
6+
- Removes exits from preprocessor
7+
- Fixes possible NPE in mxCellEditor.resize
8+
- Add noExitOnCancel option to template protocol action
9+
- Update InlineToolbar styles for improved dark mode support
10+
111
16-MAR-2026: 29.6.3
212

313
- Fixes NPE

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
29.6.3
1+
29.6.4

src/main/webapp/js/app.min.js

Lines changed: 32 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/js/diagramly/EditorUi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18331,8 +18331,8 @@
1833118331
{
1833218332
this.sidebar.hideTooltip();
1833318333
}
18334-
18335-
if (cancel)
18334+
18335+
if (cancel && !data.noExitOnCancel)
1833618336
{
1833718337
this.actions.get('exit').funct();
1833818338
}

src/main/webapp/js/grapheditor/Graph.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8225,11 +8225,11 @@ InlineToolbar.prototype.init = function()
82258225
this.toolbar.style.display = 'none';
82268226
this.toolbar.style.zIndex = 1;
82278227
this.toolbar.style.borderRadius = '3px';
8228-
this.toolbar.style.backgroundColor = 'rgba(255,255,255,0.9)';
8229-
this.toolbar.style.border = '1px solid #d0d0d0';
8228+
this.toolbar.style.backgroundColor = 'light-dark(white, var(--dark-color))';
8229+
this.toolbar.style.border = '1px solid light-dark(#d0d0d0, #505050)';
8230+
this.toolbar.style.opacity = '0.9';
82308231
this.toolbar.style.boxShadow = '0 1px 3px rgba(0,0,0,0.12)';
82318232
this.toolbar.style.whiteSpace = 'nowrap';
8232-
this.toolbar.className = 'geAdaptiveAsset';
82338233

82348234
var createButton = mxUtils.bind(this, function(title)
82358235
{
@@ -8243,6 +8243,7 @@ InlineToolbar.prototype.init = function()
82438243
btn.style.display = 'inline-block';
82448244
btn.style.verticalAlign = 'top';
82458245
btn.style.borderRadius = '2px';
8246+
btn.className = 'geAdaptiveAsset';
82468247
btn.setAttribute('title', title);
82478248

82488249
return btn;
@@ -8258,7 +8259,7 @@ InlineToolbar.prototype.init = function()
82588259
this.bendSep.style.verticalAlign = 'top';
82598260
this.bendSep.style.width = '1px';
82608261
this.bendSep.style.height = this.iconSize + 'px';
8261-
this.bendSep.style.backgroundColor = '#d0d0d0';
8262+
this.bendSep.style.backgroundColor = 'light-dark(#d0d0d0, #505050)';
82628263
this.toolbar.appendChild(this.bendSep);
82638264

82648265
// Bend style button (shows current bend, opens dropdown)

src/main/webapp/js/integrate.min.js

Lines changed: 20 additions & 19 deletions
Large diffs are not rendered by default.

src/main/webapp/js/viewer-static.min.js

Lines changed: 42 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/js/viewer.min.js

Lines changed: 42 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/mxgraph/mxClient.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/mxgraph/src/view/mxCellEditor.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,11 @@ mxCellEditor.prototype.installListeners = function(elt)
474474
this.resizeThread = window.setTimeout(mxUtils.bind(this, function()
475475
{
476476
this.resizeThread = null;
477-
this.resize();
477+
478+
if (document.body != null)
479+
{
480+
this.resize();
481+
}
478482
}), 0);
479483
}
480484
});

0 commit comments

Comments
 (0)