Skip to content

Commit 4e308f7

Browse files
committed
26.1.0 release
1 parent e684c4d commit 4e308f7

11 files changed

+6252
-6269
lines changed

ChangeLog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
05-MAR-2025: 26.1.0
2+
3+
- Tenant for OneDrive fix [jgraph/drawio#4905]
4+
- Fixes print to PDF export dialog size and button title
5+
- Fixed images in vsdx export with multiple pages and also image scale [DID-14515]
6+
- Removes vsdx export functionality
7+
18
21-FEB-2025: 26.0.16
29

310
- Fixes colors in vsdx export [DID-14515]

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
26.0.16
1+
26.1.0

src/main/java/com/mxgraph/online/MSGraphAuth.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2006-2019, JGraph Ltd
2+
* Copyright (c) 2006-2025, JGraph Ltd, draw.io AG
33
*/
44
package com.mxgraph.online;
55

@@ -75,4 +75,4 @@ protected String processAuthResponse(String authRes, boolean jsonResponse)
7575

7676
return res.toString();
7777
}
78-
}
78+
}

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

+1,441-1,441
Large diffs are not rendered by default.

src/main/webapp/js/diagramly/ElectronApp.js

-28
Original file line numberDiff line numberDiff line change
@@ -823,34 +823,6 @@ mxStencilRegistry.allowEval = false;
823823
this.loadArgs(argsObj)
824824
})
825825

826-
var editorUi = this;
827-
828-
electron.registerMsgListener('export-vsdx', (argsObj) =>
829-
{
830-
var file = new LocalFile(editorUi, argsObj.xml, '');
831-
832-
editorUi.fileLoaded(file);
833-
834-
try
835-
{
836-
editorUi.saveData = function(filename, format, data, mimeType, base64Encoded)
837-
{
838-
electron.sendMessage('export-vsdx-finished', data);
839-
};
840-
841-
var expSuccess = new VsdxExport(editorUi).exportCurrentDiagrams();
842-
843-
if (!expSuccess)
844-
{
845-
electron.sendMessage('export-vsdx-finished', null);
846-
}
847-
}
848-
catch (e)
849-
{
850-
electron.sendMessage('export-vsdx-finished', null);
851-
}
852-
})
853-
854826
//We do some async stuff during app loading so we need to know exactly when loading is finished (it is not when onload is finished)
855827
electron.sendMessage('app-load-finished', null);
856828

src/main/webapp/js/extensions.min.js

+670-670
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

+1,593-1,593
Large diffs are not rendered by default.

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

+1,268-1,266
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

+1,268-1,266
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/service-worker.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/service-worker.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)