Browse Source

7.2.7 release

Former-commit-id: 0a82326bf6ce1f9c357d889daadfdac5a7f802d5
Gaudenz Alder 8 years ago
parent
commit
f6993b98ab
10 changed files with 339 additions and 335 deletions
  1. 4 0
      ChangeLog
  2. 1 1
      VERSION
  3. 1 1
      war/cache.manifest
  4. 79 79
      war/js/app.min.js
  5. 78 78
      war/js/atlas-viewer.min.js
  6. 79 79
      war/js/atlas.min.js
  7. 17 17
      war/js/diagramly/EditorUi.js
  8. 1 1
      war/js/embed-static.min.js
  9. 1 1
      war/js/reader.min.js
  10. 78 78
      war/js/viewer.min.js

+ 4 - 0
ChangeLog

@@ -1,3 +1,7 @@
+24-AUG-2017: 7.2.7
+
+- Fixes file usage stats
+
 24-AUG-2017: 7.2.6
 
 - Improvements for Lucidchart import

+ 1 - 1
VERSION

@@ -1 +1 @@
-7.2.6
+7.2.7

+ 1 - 1
war/cache.manifest

@@ -1,7 +1,7 @@
 CACHE MANIFEST
 
 # THIS FILE WAS GENERATED. DO NOT MODIFY!
-# 08/24/2017 05:07 PM
+# 08/24/2017 05:26 PM
 
 app.html
 index.html?offline=1

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


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


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


+ 17 - 17
war/js/diagramly/EditorUi.js

@@ -1309,8 +1309,8 @@
 				
 				this.editor.fireEvent(new mxEventObject('fileLoaded'));
 				result = true;
-				
-				if (this.enableLogging && !this.isOffline() && file.getMode() != null)
+
+				if (EditorUi.enableLogging && !this.isOffline() && file.getMode() != null)
 				{
 			        	try
 			        	{
@@ -1355,21 +1355,21 @@
 					console.log('error in fileLoaded:', file, e);
 				}
 				
-				if (this.enableLogging && !this.isOffline())
-				{
-		        	try
-		        	{
-						var img = new Image();
-						var logDomain = window.DRAWIO_LOG_URL != null ? window.DRAWIO_LOG_URL : '';
-			    		img.src = logDomain + '/log?v=' + encodeURIComponent(EditorUi.VERSION) +
-			    			'&msg=errorInFileLoaded:url:' + encodeURIComponent(window.location.href) +
-		    				((e != null && e.message != null) ? ':err:' + encodeURIComponent(e.message) : '') +
-		    				((e != null && e.stack != null) ? '&stack=' + encodeURIComponent(e.stack) : '');
-		        	}
-		        	catch (e)
-		        	{
-		        		// ignore
-		        	}
+				if (EditorUi.enableLogging && !this.isOffline())
+				{
+			        	try
+			        	{
+							var img = new Image();
+							var logDomain = window.DRAWIO_LOG_URL != null ? window.DRAWIO_LOG_URL : '';
+				    		img.src = logDomain + '/log?v=' + encodeURIComponent(EditorUi.VERSION) +
+				    			'&msg=errorInFileLoaded:url:' + encodeURIComponent(window.location.href) +
+			    				((e != null && e.message != null) ? ':err:' + encodeURIComponent(e.message) : '') +
+			    				((e != null && e.stack != null) ? '&stack=' + encodeURIComponent(e.stack) : '');
+			        	}
+			        	catch (e)
+			        	{
+			        		// ignore
+			        	}
 				}
 				
 				// Asynchronous handling of errors

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
+ 78 - 78
war/js/viewer.min.js