Skip to content

Commit

Permalink
10.0.21 release
Browse files Browse the repository at this point in the history
  • Loading branch information
alderg committed Jan 4, 2019
1 parent decb0e4 commit 0b59dae
Show file tree
Hide file tree
Showing 10 changed files with 925 additions and 906 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
04-JAN-2019: 10.0.21

- Adds debug output for checksum errors

04-JAN-2019: 10.0.20

- Adds debug output for checksum errors
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10.0.20
10.0.21
2 changes: 1 addition & 1 deletion src/main/webapp/cache.manifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CACHE MANIFEST

# THIS FILE WAS GENERATED. DO NOT MODIFY!
# 01/04/2019 04:55 PM
# 01/04/2019 06:00 PM

app.html
index.html?offline=1
Expand Down
242 changes: 121 additions & 121 deletions src/main/webapp/js/app.min.js

Large diffs are not rendered by default.

664 changes: 332 additions & 332 deletions src/main/webapp/js/atlas-viewer.min.js

Large diffs are not rendered by default.

222 changes: 111 additions & 111 deletions src/main/webapp/js/atlas.min.js

Large diffs are not rendered by default.

27 changes: 21 additions & 6 deletions src/main/webapp/js/diagramly/EditorUi.js
Original file line number Diff line number Diff line change
Expand Up @@ -2379,8 +2379,11 @@

if (details != null)
{
details.cellCount = 0;
details.byteCount = 0;
details.attrCount = 0;
details.eltCount = 0;
details.nodeCount = 0;
details.cellCount = 0;
}

for (var i = 0; i < pages.length; i++)
Expand All @@ -2400,11 +2403,12 @@

if (details != null)
{
details.eltCount += diagram.getElementsByTagName('*').length;
details.nodeCount += diagram.getElementsByTagName('mxCell').length;
details.cellCount += model.getDescendants(model.root).length;
}

hash = ((hash << 5) - hash + this.hashValue(diagram)) << 0;
hash = ((hash << 5) - hash + this.hashValue(diagram, null, details)) << 0;
}

return hash;
Expand All @@ -2414,7 +2418,7 @@
* Creates a hash value for the given object. Replacer returns the value of the
* property or attribute for the given object or XML node.
*/
EditorUi.prototype.hashValue = function(obj, replacer)
EditorUi.prototype.hashValue = function(obj, replacer, details)
{
var hash = 0;

Expand All @@ -2429,15 +2433,20 @@

if (obj.attributes != null)
{
if (details != null)
{
details.attrCount += obj.attributes.length;
}

for (var i = 0; i < obj.attributes.length; i++)
{
var key = obj.attributes[i].name;
var value = (replacer != null) ? replacer(obj, key, true) : obj.attributes[i].value;

if (value != null)
{
hash = hash ^ (this.hashValue(key, replacer) +
this.hashValue(value, replacer));
hash = hash ^ (this.hashValue(key, replacer, details) +
this.hashValue(value, replacer, details));
}
}
}
Expand All @@ -2446,14 +2455,20 @@
{
for (var i = 0; i < obj.childNodes.length; i++)
{
hash = ((hash << 5) - hash + this.hashValue(obj.childNodes[i], replacer)) << 0;
hash = ((hash << 5) - hash + this.hashValue(
obj.childNodes[i], replacer, details)) << 0;
}
}
}
else if (obj != null && typeof obj !== 'function')
{
var str = String(obj);
var temp = 0;

if (details != null)
{
details.byteCount += str.length;
}

for (var i = 0; i < str.length; i++)
{
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/js/embed-static.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/main/webapp/js/reader.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 0b59dae

Please sign in to comment.