Browse Source

6.5.1 release

Former-commit-id: d2fc25d4d9f1e0dd8490ab89333151426536ab9a
Gaudenz Alder 8 years ago
parent
commit
b15ba2af16

+ 4 - 0
ChangeLog

@@ -1,3 +1,7 @@
+13-APR-2017: 6.5.1
+
+- Fixes dependency on mxSettings in viewer.min.js
+
 13-APR-2017: 6.5.0
 
 - Fixes extension for exported files with dots

+ 1 - 1
VERSION

@@ -1 +1 @@
-6.5.0
+6.5.1

+ 1 - 1
war/cache.manifest

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

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


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


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


+ 10 - 0
war/js/diagramly/App.js

@@ -5039,3 +5039,13 @@ App.prototype.updateUserElement = function()
 		}
 	}
 };
+
+/**
+ * Override depends on mxSettings which is not defined in the minified viewer.
+ */
+var editorResetGraph = Editor.prototype.resetGraph;	
+Editor.prototype.resetGraph = function()
+{
+	// Overrides default with persisted value
+	this.graph.pageFormat = mxSettings.getPageFormat();
+};

+ 0 - 3
war/js/diagramly/Editor.js

@@ -401,9 +401,6 @@
 		this.graph.view.y0 = null;
 		mxClient.NO_FO = (this.graph.mathEnabled) ? true : this.originalNoForeignObject;
 		editorResetGraph.apply(this, arguments);
-		
-		// Overrides default with persisted value
-		this.graph.pageFormat = mxSettings.getPageFormat();
 	};
 
 	/**

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


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