14.2.9 release

This commit is contained in:
David Benson [draw.io] 2021-01-29 15:38:48 +00:00
parent defed229bb
commit ff0d31b941
10 changed files with 1657 additions and 1641 deletions

View file

@ -1,3 +1,7 @@
29-JAN-2021: 14.2.9
- Fixes NPE in minimal mode
29-JAN-2021: 14.2.8
- Adds data governance config

View file

@ -1 +1 @@
14.2.8
14.2.9

File diff suppressed because one or more lines are too long

View file

@ -263,26 +263,38 @@
}
}, null, null, 'Alt+Shift+P');
ui.actions.addAction('selectDescendants', function()
ui.actions.addAction('selectDescendants', function(trigger, evt)
{
if (graph.isEnabled() && graph.getSelectionCount() == 1)
var cell = graph.getSelectionCell();
if (graph.isEnabled() && graph.model.isVertex(cell))
{
var cell = graph.getSelectionCell();
// Makes space for new parent
var subtree = [];
graph.traverse(cell, true, function(vertex, edge)
if (evt != null && mxEvent.isAltDown(evt))
{
if (edge != null)
{
subtree.push(edge);
}
subtree.push(vertex);
graph.setSelectionCells(graph.model.getEdges(cell,
evt == null || !mxEvent.isShiftDown(evt),
evt == null || !mxEvent.isControlDown(evt)));
}
else
{
var subtree = [];
return true;
});
graph.traverse(cell, true, function(vertex, edge)
{
if (edge != null)
{
subtree.push(edge);
}
if (evt == null || !mxEvent.isShiftDown(evt))
{
subtree.push(vertex);
}
return true;
});
}
graph.setSelectionCells(subtree);
}
}, null, null, 'Alt+Shift+D');

View file

@ -3419,15 +3419,15 @@ TextFormatPanel.prototype.addFont = function(container)
extraPanel.style.paddingBottom = '4px';
// LATER: Fix toggle using '' instead of 'null'
var wwCells = graph.filterSelectionCells(function(cell)
var wwCells = graph.filterSelectionCells(mxUtils.bind(this, function(cell)
{
var state = graph.view.getState(cell);
return state == null ||
ui.format.isAutoSizeState(state) ||
this.format.isAutoSizeState(state) ||
graph.getModel().isEdge(cell) ||
!graph.isCellResizable(cell);
});
}));
var wwOpt = this.createCellOption(mxResources.get('wordWrap'), mxConstants.STYLE_WHITE_SPACE,
null, 'wrap', 'null', null, null, true, wwCells);

View file

@ -1039,9 +1039,9 @@ Menus.prototype.addMenuItem = function(menu, key, parent, trigger, sprite, label
if (action != null && (menu.showDisabled || action.isEnabled()) && action.visible)
{
var item = menu.addItem(label || action.label, null, function()
var item = menu.addItem(label || action.label, null, function(evt)
{
action.funct(trigger);
action.funct(trigger, evt);
}, parent, sprite, action.isEnabled());
// Adds checkmark image

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,4 +1,4 @@
var mxClient={VERSION:"14.2.8",IS_IE:null!=navigator.userAgent&&0<=navigator.userAgent.indexOf("MSIE"),IS_IE6:null!=navigator.userAgent&&0<=navigator.userAgent.indexOf("MSIE 6"),IS_IE11:null!=navigator.userAgent&&!!navigator.userAgent.match(/Trident\/7\./),IS_EDGE:null!=navigator.userAgent&&!!navigator.userAgent.match(/Edge\//),IS_QUIRKS:null!=navigator.userAgent&&0<=navigator.userAgent.indexOf("MSIE")&&(null==document.documentMode||5==document.documentMode),IS_EM:"spellcheck"in document.createElement("textarea")&&
var mxClient={VERSION:"14.2.9",IS_IE:null!=navigator.userAgent&&0<=navigator.userAgent.indexOf("MSIE"),IS_IE6:null!=navigator.userAgent&&0<=navigator.userAgent.indexOf("MSIE 6"),IS_IE11:null!=navigator.userAgent&&!!navigator.userAgent.match(/Trident\/7\./),IS_EDGE:null!=navigator.userAgent&&!!navigator.userAgent.match(/Edge\//),IS_QUIRKS:null!=navigator.userAgent&&0<=navigator.userAgent.indexOf("MSIE")&&(null==document.documentMode||5==document.documentMode),IS_EM:"spellcheck"in document.createElement("textarea")&&
8==document.documentMode,VML_PREFIX:"v",OFFICE_PREFIX:"o",IS_NS:null!=navigator.userAgent&&0<=navigator.userAgent.indexOf("Mozilla/")&&0>navigator.userAgent.indexOf("MSIE")&&0>navigator.userAgent.indexOf("Edge/"),IS_OP:null!=navigator.userAgent&&(0<=navigator.userAgent.indexOf("Opera/")||0<=navigator.userAgent.indexOf("OPR/")),IS_OT:null!=navigator.userAgent&&0<=navigator.userAgent.indexOf("Presto/")&&0>navigator.userAgent.indexOf("Presto/2.4.")&&0>navigator.userAgent.indexOf("Presto/2.3.")&&0>navigator.userAgent.indexOf("Presto/2.2.")&&
0>navigator.userAgent.indexOf("Presto/2.1.")&&0>navigator.userAgent.indexOf("Presto/2.0.")&&0>navigator.userAgent.indexOf("Presto/1."),IS_SF:/Apple Computer, Inc/.test(navigator.vendor),IS_ANDROID:0<=navigator.appVersion.indexOf("Android"),IS_IOS:/iP(hone|od|ad)/.test(navigator.platform),IS_GC:/Google Inc/.test(navigator.vendor),IS_CHROMEAPP:null!=window.chrome&&null!=chrome.app&&null!=chrome.app.runtime,IS_FF:"undefined"!==typeof InstallTrigger,IS_MT:0<=navigator.userAgent.indexOf("Firefox/")&&0>
navigator.userAgent.indexOf("Firefox/1.")&&0>navigator.userAgent.indexOf("Firefox/2.")||0<=navigator.userAgent.indexOf("Iceweasel/")&&0>navigator.userAgent.indexOf("Iceweasel/1.")&&0>navigator.userAgent.indexOf("Iceweasel/2.")||0<=navigator.userAgent.indexOf("SeaMonkey/")&&0>navigator.userAgent.indexOf("SeaMonkey/1.")||0<=navigator.userAgent.indexOf("Iceape/")&&0>navigator.userAgent.indexOf("Iceape/1."),IS_VML:"MICROSOFT INTERNET EXPLORER"==navigator.appName.toUpperCase(),IS_SVG:"MICROSOFT INTERNET EXPLORER"!=

View file

@ -6,7 +6,7 @@ if (workbox)
workbox.precaching.precacheAndRoute([
{
"url": "js/app.min.js",
"revision": "176f01df98ca976b86f52ac455f1ca69"
"revision": "99a058e8ced83e8674f2780b9b9dfcb8"
},
{
"url": "js/extensions.min.js",
@ -58,7 +58,7 @@ if (workbox)
},
{
"url": "js/viewer-static.min.js",
"revision": "65df329c7ed0bb8323cf77051e422bc9"
"revision": "f4750d091a7a958d992ab3737131e523"
},
{
"url": "connect/jira/editor-1-3-3.html",