Skip to content

Commit 3e8cb37

Browse files
committed
30.0.1 release
1 parent be57ac3 commit 3e8cb37

11 files changed

Lines changed: 237 additions & 228 deletions

File tree

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
11-MAY-2026: 30.0.1
2+
3+
- Corrects rounded of Archimate Techonology Functions shape [jgraph/drawio#5571]
4+
- ci: fix MCP index trigger tag pattern
5+
- Shows up to 4 matching pages in omnisearch dropdown
6+
17
09-MAY-2026: 30.0.0
28

39
- Uses cached sanitized label for SVG support detection

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
30.0.0
1+
30.0.1

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

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

src/main/webapp/js/diagramly/sidebar/Sidebar-ArchiMate3.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@
498498
w * 150, h * 75, 'Communication Network', 'Communication Network', null, null, this.getTagsForStencil(gn, '', dt + 'communication network').join(' ')),
499499
this.createVertexTemplateEntry(am + 'network;',
500500
w * 65, h * 50, '', 'Communication Network', null, null, this.getTagsForStencil(gn, '', dt + 'communication network').join(' ')),
501-
this.createVertexTemplateEntry(am + 'application;appType=func;archiType=square;',
501+
this.createVertexTemplateEntry(am + 'application;appType=func;archiType=rounded;',
502502
w * 150, h * 75, 'Technology Function', 'Technology Function', null, null, this.getTagsForStencil(gn, '', dt + 'function').join(' ')),
503503
this.createVertexTemplateEntry(am + 'function;',
504504
w * 60, h * 40, '', 'Function', null, null, this.getTagsForStencil(gn, '', dt + 'function').join(' ')),

src/main/webapp/js/grapheditor/Sidebar.js

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1622,9 +1622,9 @@ Sidebar.prototype.addSearchPalette = function(expand)
16221622
});
16231623
}
16241624

1625-
if (matchingPages.length > 0)
1625+
for (var i = 0; i < Math.min(4, matchingPages.length); i++)
16261626
{
1627-
(function(page)
1627+
(function(page, isFirst)
16281628
{
16291629
var fn = function()
16301630
{
@@ -1637,13 +1637,16 @@ Sidebar.prototype.addSearchPalette = function(expand)
16371637
' (' + mxResources.get('page') + ')',
16381638
null, fn, parent);
16391639

1640-
if (enterAction == null)
1640+
if (isFirst)
16411641
{
1642-
setEnterAction(item, fn);
1643-
}
1642+
if (enterAction == null)
1643+
{
1644+
setEnterAction(item, fn);
1645+
}
16441646

1645-
setCtrlEnterAction(item, fn);
1646-
})(matchingPages[0]);
1647+
setCtrlEnterAction(item, fn);
1648+
}
1649+
})(matchingPages[i], i == 0);
16471650
}
16481651
}
16491652

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

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

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

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

0 commit comments

Comments
 (0)