Ver código fonte

6.3.4 release

Former-commit-id: 4ba28cd89f97d132284ff73b17e33513ae48dd63
Gaudenz Alder 8 anos atrás
pai
commit
7926da7222

+ 4 - 0
ChangeLog

@@ -1,3 +1,7 @@
+15-MAR-2017: 6.3.4
+
+- Fixes NPE in FF
+
 14-MAR-2017: 6.3.3
 
 - Fixes use of undefined variable in DriveClient

+ 1 - 1
VERSION

@@ -1 +1 @@
-6.3.3
+6.3.4

+ 1 - 1
war/cache.manifest

@@ -1,7 +1,7 @@
 CACHE MANIFEST
 
 # THIS FILE WAS GENERATED. DO NOT MODIFY!
-# 03/14/2017 07:00 PM
+# 03/15/2017 08:54 AM
 
 app.html
 index.html?offline=1

Diferenças do arquivo suprimidas por serem muito extensas
+ 2 - 2
war/js/app.min.js


Diferenças do arquivo suprimidas por serem muito extensas
+ 2 - 2
war/js/atlas.min.js


Diferenças do arquivo suprimidas por serem muito extensas
+ 1 - 1
war/js/embed-static.min.js


+ 2 - 2
war/js/mxgraph/Sidebar.js

@@ -438,12 +438,12 @@ Sidebar.prototype.addEntry = function(tags, fn)
 			{
 				var entry = this.taglist[tag];
 				
-				if (entry == null)
+				if (typeof entry !== 'object')
 				{
 					entry = {entries: [], dict: new mxDictionary()};
 					this.taglist[tag] = entry;
 				}
-				
+
 				// Ignores duplicates
 				if (entry.dict.get(fn) == null)
 				{

Diferenças do arquivo suprimidas por serem muito extensas
+ 1 - 1
war/js/reader.min.js


+ 1 - 1
war/plugins/update.js

@@ -20,7 +20,7 @@
  * value specified above to the existing value of the cell. (Attributes with
  * an empty string value are removed.)
  * 
- * - An optional style attribute that contains the cell style is be used to replace
+ * - An optional style attribute that contains the cell style is used to replace
  * the existing cell style.
  * 
  * - An optional icon attribute that contains JSON is used to add an icon to the

+ 6 - 1
war/plugins/voice.js

@@ -41,7 +41,7 @@ Draw.loadPlugin(function(ui) {
 	var chromeOs = /\bCrOS\b/.test(navigator.userAgent);
 	
 	// Maximum length of message to speak
-	var maxMessageLength = 50;
+	var maxMessageLength = 1000;
 
 	// Maximum length of the label before the cell
 	// is called by its shapename
@@ -131,6 +131,11 @@ Draw.loadPlugin(function(ui) {
 		// Installs listener for start/stop listen
 		mxEvent.addListener(td, 'click', function(evt)
 		{
+			if (speechSynthesis.speaking)
+			{
+				speechSynthesis.cancel();
+			}
+			
 			App.listen(true);
 		});
 	}