Browse Source

9.2.7 release

Gaudenz Alder 6 years ago
parent
commit
3bd45e564c

+ 4 - 0
ChangeLog

@@ -1,3 +1,7 @@
+15-OCT-2018: 9.2.7
+
+- Fixes local templates path
+
 14-OCT-2018: 9.2.6
 
 - Fixes possible NPE during delayed loading of plugins

+ 1 - 1
VERSION

@@ -1 +1 @@
-9.2.6
+9.2.7

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

@@ -1,7 +1,7 @@
 CACHE MANIFEST
 
 # THIS FILE WAS GENERATED. DO NOT MODIFY!
-# 10/14/2018 06:11 PM
+# 10/15/2018 09:22 AM
 
 app.html
 index.html?offline=1

File diff suppressed because it is too large
+ 64 - 64
src/main/webapp/js/app.min.js


File diff suppressed because it is too large
+ 64 - 64
src/main/webapp/js/atlas.min.js


+ 5 - 1
src/main/webapp/js/diagramly/Dialogs.js

@@ -3077,6 +3077,10 @@ var NewDialog = function(editorUi, compact, showName, callback, createOnly, canc
 				{
 					realUrl = PROXY_URL + '?url=' + encodeURIComponent(realUrl);
 				}
+				else
+				{
+					realUrl = TEMPLATE_PATH + '/' + realUrl;
+				}
 				
 				mxUtils.get(realUrl, mxUtils.bind(this, function(req)
 				{
@@ -8621,7 +8625,7 @@ TemplatesDialog.prototype.init = function(editorUi, callback, cancelCallback,
 		templateFile, newDiagramCatsFile, username, recentDocsCallback, searchDocsCallback,
 		openExtDocCallback, linkToDiagramCallback)
 {
-	templateFile = (templateFile != null) ? templateFile : TEMPLATE_PATH + '/index.xml';
+	templateFile = (templateFile != null) ? templateFile : (TEMPLATE_PATH + '/index.xml');
 	newDiagramCatsFile = (newDiagramCatsFile != null) ? newDiagramCatsFile : NEW_DIAGRAM_CATS_PATH + '/index.xml';
 
 	var dlgDiv = this.container;

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


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