瀏覽代碼

13.3.7 release

Gaudenz Alder 5 年之前
父節點
當前提交
051eed3638

+ 5 - 0
ChangeLog

@@ -1,3 +1,8 @@
+02-JUL-2020: 13.3.7
+
+- Fixes image export with sketch style
+- Uses mxGraph 4.2.1 beta 3
+
 01-JUL-2020: 13.3.6
 
 - Fixes transparent background event handling for sketch style

+ 1 - 1
VERSION

@@ -1 +1 @@
-13.3.6
+13.3.7

File diff suppressed because it is too large
+ 41 - 0
etc/header-conf/header.js


File diff suppressed because it is too large
+ 3 - 3
etc/mxgraph/mxClient.js


+ 1 - 1
src/main/webapp/connect/confluence/admin.js

@@ -427,7 +427,7 @@ var GliffyMassImporter = function(logDiv, doneFn)
 		{
 			AP.request({
 				url:  "/download/attachments/" + pageId + "/"
-					+ encodeURIComponent(attName),
+					+ encodeURIComponent(attName.trim()), //Conf removes spaces from attachments file names
 				success: function(resp) 
 				{
 					var blob = new Blob([resp], {type : 'application/json'});

File diff suppressed because it is too large
+ 35 - 34
src/main/webapp/js/app.min.js


+ 11 - 4
src/main/webapp/js/diagramly/Dialogs.js

@@ -999,11 +999,18 @@ var EmbedDialog = function(editorUi, result, timeout, ignoreSize, previewFn, tit
 						{
 							window.setTimeout(mxUtils.bind(this, function()
 							{
-								if (win != null && win.location.href != null &&
-									win.location.href.substring(0, 8) != value.substring(0, 8))
+								try
 								{
-									win.close();
-									editorUi.handleError({message: mxResources.get('drawingTooLarge')});
+									if (win != null && win.location.href != null &&
+										win.location.href.substring(0, 8) != value.substring(0, 8))
+									{
+										win.close();
+										editorUi.handleError({message: mxResources.get('drawingTooLarge')});
+									}
+								}
+								catch (e)
+								{
+									// ignore
 								}
 							}), timeout || 500);
 						}

File diff suppressed because it is too large
+ 28 - 22
src/main/webapp/js/diagramly/sidebar/Sidebar-ER.js


File diff suppressed because it is too large
+ 3 - 3
src/main/webapp/js/viewer-static.min.js


File diff suppressed because it is too large
+ 3 - 3
src/main/webapp/js/viewer.min.js


+ 1 - 1
src/main/webapp/service-worker.js

@@ -6,7 +6,7 @@ if (workbox)
 	workbox.precaching.precacheAndRoute([
   {
     "url": "js/app.min.js",
-    "revision": "5404dc53bac8864ff05b1e520a6aed6a"
+    "revision": "08f0ac76a3b5bf3aecdbccc500a87612"
   },
   {
     "url": "js/extensions.min.js",

+ 1 - 1
src/main/webapp/templates/index.xml

@@ -51,7 +51,7 @@
 <template url="basic/erd.xml" title="entityRelationshipDiagram" libs="general;er"/>
 <template url="basic/sequence.xml" title="Sequence Diagram"/>
 <template url="basic/kanban.xml" title="Simple Kanban Board"/>
-<template url="basic/cross.xml" title="Cross-Functional Swimlane"/>
+<template url="basic/cross.xml" title="Cross-Functional Flowchart"/>
 <template url="business/accd.xml" libs="general"/>
 <template url="business/archimate.xml" libs="general;archimate3"/>
 <template url="business/bpmn.xml" libs="general;bpmn"/>