Skip to content

Commit 45a62eb

Browse files
committed
7.2.6 release
1 parent 295dc42 commit 45a62eb

File tree

16 files changed

+1401
-1366
lines changed

16 files changed

+1401
-1366
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
24-AUG-2017: 7.2.6
2+
3+
- Improvements for Lucidchart import
4+
- Fixes possible NPEs
5+
16
24-AUG-2017: 7.2.5
27

38
- Fixes possible NPE

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.2.5
1+
7.2.6

war/cache.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
CACHE MANIFEST
22

33
# THIS FILE WAS GENERATED. DO NOT MODIFY!
4-
# 08/24/2017 02:52 PM
4+
# 08/24/2017 05:07 PM
55

66
app.html
77
index.html?offline=1

war/js/app.min.js

Lines changed: 140 additions & 140 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

war/js/atlas-viewer.min.js

Lines changed: 212 additions & 212 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

war/js/atlas.min.js

Lines changed: 520 additions & 524 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

war/js/diagramly/App.js

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1166,24 +1166,17 @@ App.prototype.init = function()
11661166

11671167
if (td != null && mxClient.IS_SVG)
11681168
{
1169-
// td.innerHTML = '<a title="Collaborate on diagrams in Samepage" target="_blank" ' +
1170-
// ((mxClient.IS_SF) ? 'style="margin-top:-22px;" ' : '') +
1171-
// 'href="https://www.samepage.io/draw-diagram-online?SPcid=SIOF%2BDraw%2Breferral%2BDraw%2Bv1%2BNA"\>' +
1172-
// '<img border="0" align="absmiddle" width="24" height="24" style="margin-top:-2px;padding-right:8px;" ' +
1173-
// 'src="' + IMAGE_PATH + '/samepage-icon-color.svg"/>Collaborate on diagrams in Samepage</a>';
1174-
// td.innerHTML = '<a title="Trello integration" target="_blank" ' +
1175-
// 'href="https://www.facebook.com/drawioapp/posts/1635338883157308"\>' +
1176-
// '<img border="0" align="absmiddle" width="24" height="24" style="margin-top:-2px;padding-right:8px;" ' +
1177-
// 'src="' + IMAGE_PATH + '/trello-logo.svg"/>NEW! Trello integration</a>';
1178-
td.innerHTML = '<a title="Line jumps now available" target="_blank" ' +
1179-
'href="https://www.facebook.com/drawioapp/posts/1636030279754835"\>' +
1180-
'<span style="color:red;">NEW!</span> Line jumps now available</a>';
1169+
td.innerHTML = '<a title="Collaborate on diagrams in Samepage" target="_blank" ' +
1170+
((mxClient.IS_SF) ? 'style="margin-top:-22px;" ' : '') +
1171+
'href="https://www.samepage.io/draw-diagram-online?SPcid=SIOF%2BDraw%2Breferral%2BDraw%2Bv1%2BNA"\>' +
1172+
'<img border="0" align="absmiddle" width="24" height="24" style="margin-top:-2px;padding-right:8px;" ' +
1173+
'src="' + IMAGE_PATH + '/samepage-icon-color.svg"/>Collaborate on diagrams in Samepage</a>';
11811174

11821175
mxEvent.addListener(td, 'click', mxUtils.bind(this, function()
11831176
{
11841177
if (typeof window.ga === 'function' && !this.isOffline())
11851178
{
1186-
ga('send', 'event', 'Footer', 'click', 'Line jumps');
1179+
ga('send', 'event', 'Footer', 'click', 'Samepage');
11871180
}
11881181
}));
11891182

war/js/diagramly/EditorUi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1314,10 +1314,10 @@
13141314
{
13151315
try
13161316
{
1317-
var img = new Image();
1318-
var logDomain = window.DRAWIO_LOG_URL != null ? window.DRAWIO_LOG_URL : '';
1319-
img.src = logDomain + '/log?msg=storageMode:' + encodeURIComponent(file.getMode()) +
1320-
'&v=' + encodeURIComponent(EditorUi.VERSION);
1317+
if (typeof window.ga === 'function')
1318+
{
1319+
ga('send', 'event', 'File', 'open', file.getMode());
1320+
}
13211321
}
13221322
catch (e)
13231323
{

0 commit comments

Comments
 (0)