Skip to content

Commit 1428e67

Browse files
committed
7.5.4 release
Former-commit-id: 4eb1569
1 parent 35d2bb0 commit 1428e67

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+14969
-3266
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
09-OCT-2017: 7.5.4
2+
3+
- Adds missing page option in insert link dialog
4+
- Fixes viewer event handling for links in labels
5+
16
06-OCT-2017: 7.5.3
27

38
- Fixes Trello integration

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.5.3
1+
7.5.4

src/com/mxgraph/io/mxVsdxCodec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ public String decodeVsdx(byte[] data, String charset)
170170
{
171171
//UTF-8 BOM causes exception while parsing, so remove it
172172
//TODO is the text encoding will be correct or string must be re-read as UTF-8?
173-
if (str.startsWith("")) str = str.substring(3);
173+
if (str.startsWith("\u00ef\u00bb\u00bf")) str = str.substring(3);
174174

175175
Document doc = mxXmlUtils.parseXml(str);
176176

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-
# 10/06/2017 02:55 PM
4+
# 10/09/2017 11:05 AM
55

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

war/js/app.min.js

Lines changed: 865 additions & 863 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: 637 additions & 635 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: 793 additions & 791 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

war/js/diagramly/Dialogs.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5804,7 +5804,11 @@ var TagsWindow = function(editorUi, x, y, w, h)
58045804
{
58055805
var cells = searchCells();
58065806
setCellsVisible(cells, true);
5807-
graph.setSelectionCells(cells);
5807+
5808+
if (graph.isEnabled())
5809+
{
5810+
graph.setSelectionCells(cells);
5811+
}
58085812
});
58095813

58105814
showBtn.setAttribute('title', mxResources.get('show'));

war/js/diagramly/Editor.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -927,6 +927,7 @@
927927
}
928928
})
929929

930+
btn.className = 'geStyleButton';
930931
btn.style.width = '36px';
931932
btn.style.height = '30px';
932933
btn.style.margin = '0px 6px 6px 0px';

war/js/diagramly/EditorUi.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6457,7 +6457,8 @@
64576457
}
64586458
}
64596459

6460-
if (href != null && graph.isPageLink(href))
6460+
if (href != null && graph.isPageLink(href) && (mxEvent.isTouchEvent(evt) ||
6461+
!mxEvent.isPopupTrigger(evt)))
64616462
{
64626463
pageLinkClicked(href);
64636464
mxEvent.consume(evt);
@@ -6561,7 +6562,8 @@
65616562
{
65626563
var href = elt.getAttribute('href');
65636564

6564-
if (graph.isPageLink(href))
6565+
if (href != null && graph.isPageLink(href) && (mxEvent.isTouchEvent(evt) ||
6566+
!mxEvent.isPopupTrigger(evt)))
65656567
{
65666568
// Active links are moved to the hint
65676569
if (!graph.isEnabled())

0 commit comments

Comments
 (0)