浏览代码

20.2.7 release

David Benson 3 年之前
父节点
当前提交
0e6f27fa4a

+ 8 - 0
ChangeLog

@@ -1,3 +1,11 @@
+22-AUG-2022: 20.2.7
+
+- Reduces cursor update frequency to reduce DO request count [DS-899]
+- Creates Github app specific to confluence cloud [DS-900]
+- Adds enumeration state in image export [2900]
+- Updates freehand library to fix security dependency issue
+- Fixes highlight for drag over AWS subnet [2966]
+
 21-AUG-2022: 20.2.6
 
 - Updates to latest GCP icon set [DS-898]

+ 1 - 1
VERSION

@@ -1 +1 @@
-20.2.6
+20.2.7

文件差异内容过多而无法显示
+ 108 - 433
src/main/webapp/js/app.min.js


+ 1 - 1
src/main/webapp/js/diagramly/P2PCollab.js

@@ -18,7 +18,7 @@ function P2PCollab(ui, sync, channelId)
 	var myClientId, newClients = {}, p2pClients = {}, useSocket = true, fileJoined = false, destroyed = false;
 	var INACTIVE_TIMEOUT = 120000; //2 min
 	var SELECTION_OPACITY = 70; //The default opacity of 30 is not visible enough with all colors
-	var cursorDelay = 200;
+	var cursorDelay = 300;
 	// TODO: Avoid negation, move to Editor.ENABLE_P2P and use p2p=1 URL parameter
 	// add to Editor.configure
 	var NO_P2P = urlParams['no-p2p'] != '0';

文件差异内容过多而无法显示
+ 1 - 326
src/main/webapp/js/freehand/perfect-freehand.js


+ 2 - 0
src/main/webapp/js/grapheditor/Graph.js

@@ -10387,7 +10387,9 @@ if (typeof mxVertexHandler !== 'undefined')
 					
 					if ((ignoreSelection && lookup == null) || selected)
 					{
+						graph.view.redrawEnumerationState(state);
 						imgExportDrawCellState.apply(this, arguments);
+						this.doDrawShape(state.secondLabel, canvas);
 					}
 				};
 	

文件差异内容过多而无法显示
+ 110 - 434
src/main/webapp/js/integrate.min.js


文件差异内容过多而无法显示
+ 4 - 3
src/main/webapp/js/shapes-14-6-5.min.js


文件差异内容过多而无法显示
+ 82 - 81
src/main/webapp/js/viewer-static.min.js


文件差异内容过多而无法显示
+ 78 - 78
src/main/webapp/js/viewer.min.js


文件差异内容过多而无法显示
+ 4 - 4
src/main/webapp/mxgraph/mxClient.js


+ 38 - 0
src/main/webapp/package.json

@@ -0,0 +1,38 @@
+{
+  "name": "draw.io",
+  "version": "20.0.4",
+  "description": "diagrams.net desktop",
+  "main": "electron.js",
+  "scripts": {
+    "start": "electron ."
+  },
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/jgraph/drawio.git"
+  },
+  "keywords": [
+    "draw.io",
+    "diagram",
+    "flowchart",
+    "UML"
+  ],
+  "author": "JGraph",
+  "license": "Apache-2.0",
+  "bugs": {
+    "url": "https://github.com/jgraph/drawio-desktop/issues"
+  },
+  "homepage": "https://github.com/jgraph/drawio",
+  "dependencies": {
+    "commander": "^9.4.0",
+    "compression": "^1.7.4",
+    "crc": "^4.1.1",
+    "electron-log": "^4.4.8",
+    "electron-progressbar": "^2.0.1",
+    "electron-store": "^8.1.0",
+    "electron-updater": "^5.2.1",
+    "pdf-lib": "^1.17.1"
+  },
+  "devDependencies": {
+    "electron": "^19.0.10"
+  }
+}

文件差异内容过多而无法显示
+ 1 - 1
src/main/webapp/service-worker.js


文件差异内容过多而无法显示
+ 1 - 1
src/main/webapp/service-worker.js.map


+ 2 - 2
src/main/webapp/shapes/mxAWS4.js

@@ -200,7 +200,7 @@ mxShapeAws4Group.prototype.paintVertexShape = function(c, x, y, w, h)
 	c.lineTo(0, h);
 	c.close();
 
-	if (grStroke == '1')
+	if (grStroke == '1' || this.outline)
 	{
 		c.fillAndStroke();
 	}
@@ -272,7 +272,7 @@ mxShapeAws4GroupCenter.prototype.paintVertexShape = function(c, x, y, w, h)
 	c.lineTo(0, h);
 	c.close();
 	
-	if (grStroke == '1')
+	if (grStroke == '1' || this.outline)
 	{
 		c.fillAndStroke();
 	}