Browse Source

7.9.5 release

Gaudenz Alder 7 years ago
parent
commit
55db129bae
8 changed files with 13 additions and 18 deletions
  1. 4 0
      ChangeLog
  2. 1 1
      VERSION
  3. 1 1
      war/cache.manifest
  4. 1 1
      war/js/app.min.js
  5. 1 1
      war/js/atlas.min.js
  6. 3 12
      war/js/diagramly/ElectronApp.js
  7. 1 1
      war/js/embed-static.min.js
  8. 1 1
      war/js/reader.min.js

+ 4 - 0
ChangeLog

@@ -1,3 +1,7 @@
+04-JAN-2018: 7.9.5
+
+- Fixes bug with current desktop app launcher
+
 04-JAN-2018: 7.9.4
 
 - Adds Extras, Plugins in desktop app

+ 1 - 1
VERSION

@@ -1 +1 @@
-7.9.4
+7.9.5

+ 1 - 1
war/cache.manifest

@@ -1,7 +1,7 @@
 CACHE MANIFEST
 
 # THIS FILE WAS GENERATED. DO NOT MODIFY!
-# 01/04/2018 07:34 PM
+# 01/04/2018 10:49 PM
 
 app.html
 index.html?offline=1

File diff suppressed because it is too large
+ 1 - 1
war/js/app.min.js


File diff suppressed because it is too large
+ 1 - 1
war/js/atlas.min.js


+ 3 - 12
war/js/diagramly/ElectronApp.js

@@ -353,9 +353,12 @@ FeedbackDialog.feedbackUrl = 'https://log.draw.io/email';
 			});
 		});
 	}
+	
+	var appLoad = App.prototype.load;
 
 	App.prototype.load = function()
 	{
+		appLoad.apply(this, arguments);
 		const {ipcRenderer} = require('electron');
 		
 		ipcRenderer.on('args-obj', (event, argsObj) =>
@@ -378,8 +381,6 @@ FeedbackDialog.feedbackUrl = 'https://log.draw.io/email';
 				var file = new LocalFile(this, data, '');
 				file.fileObject = fileEntry;
 				this.fileLoaded(file);
-				
-				this.start();
 			});
 			
 			var error = mxUtils.bind(this, function(e)
@@ -396,12 +397,9 @@ FeedbackDialog.feedbackUrl = 'https://log.draw.io/email';
 					file.fileObject.type = 'utf-8';
 					this.fileCreated(file, null, null, null);					
 					this.saveFile();
-					
-					this.start();
 				}
 				else
 				{
-					this.start();
 					this.handleError(e);
 				}
 				
@@ -417,13 +415,6 @@ FeedbackDialog.feedbackUrl = 'https://log.draw.io/email';
 			var data = this.emptyDiagramXml;
 			var file = new LocalFile(this, data, title, null);
 			this.fileCreated(file, null, null, null);
-			
-			this.start();
-		}
-		// If no args are passed 
-		else
-		{
-			this.start();
 		}		
 	}
 

File diff suppressed because it is too large
+ 1 - 1
war/js/embed-static.min.js


File diff suppressed because it is too large
+ 1 - 1
war/js/reader.min.js