瀏覽代碼

8.7.10 release

Gaudenz Alder 7 年之前
父節點
當前提交
b0386d0c87

+ 4 - 0
ChangeLog

@@ -1,3 +1,7 @@
+13-JUN-2018: 8.7.10
+
+- Fixes possible NPE in Electron
+
 13-JUN-2018: 8.7.9
 
 - Fixes possible NPE

+ 1 - 1
VERSION

@@ -1 +1 @@
-8.7.9
+8.7.10

+ 1 - 1
src/main/webapp/cache.manifest

@@ -1,7 +1,7 @@
 CACHE MANIFEST
 
 # THIS FILE WAS GENERATED. DO NOT MODIFY!
-# 06/13/2018 03:15 PM
+# 06/13/2018 03:46 PM
 
 app.html
 index.html?offline=1

文件差異過大導致無法顯示
+ 1 - 1
src/main/webapp/js/app.min.js


文件差異過大導致無法顯示
+ 1 - 1
src/main/webapp/js/atlas.min.js


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

@@ -118,7 +118,7 @@ FeedbackDialog.feedbackUrl = 'https://log.draw.io/email';
 	{
 		var a = graphCreateLinkForHint.call(this, href, label);
 		
-		if (!this.isCustomLink(href))
+		if (href != null && !this.isCustomLink(href))
 		{
 			// KNOWN: Event with gesture handler mouseUp the middle click opens a framed window
 			mxEvent.addListener(a, 'click', mxUtils.bind(this, function(evt)

文件差異過大導致無法顯示
+ 1 - 1
src/main/webapp/js/embed-static.min.js


文件差異過大導致無法顯示
+ 1 - 1
src/main/webapp/js/reader.min.js