Skip to content

Commit

Permalink
22.0.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjgraph committed Oct 5, 2023
1 parent 751f38d commit 3f1abe0
Show file tree
Hide file tree
Showing 13 changed files with 657 additions and 641 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
05-OCT-2023: 22.0.3

- Fixes possible NPE in clonePages error handler
- [vsdx] Stops using default theme when theme index not found [DID-9622]
- Fixes tags dialog icons in dark mode [drawio-3910]

03-OCT-2023: 22.0.2

- Fixes new save dialog for SharePoint [drawio-3900]
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.0.2
22.0.3
254 changes: 127 additions & 127 deletions src/main/webapp/js/app.min.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions src/main/webapp/js/diagramly/Editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -6139,6 +6139,7 @@
img.setAttribute('src', visible ? Editor.visibleImage : Editor.hiddenImage);
img.setAttribute('title', mxResources.get(visible ? 'hideIt' : 'show', [tag]));
mxUtils.setOpacity(img, visible ? 75 : 25);
img.className = 'geAdaptiveAsset';
img.style.verticalAlign = 'middle';
img.style.cursor = 'pointer';
img.style.width = '16px';
Expand Down Expand Up @@ -6176,6 +6177,7 @@
img.setAttribute('src', Editor.selectImage);
img.setAttribute('title', mxResources.get('select'));
mxUtils.setOpacity(img, visible ? 75 : 25);
img.className = 'geAdaptiveAsset';
img.style.verticalAlign = 'middle';
img.style.cursor = 'pointer';
img.style.width = '16px';
Expand Down Expand Up @@ -6250,6 +6252,7 @@
img.setAttribute('src', Editor.trashImage);
img.setAttribute('title', mxResources.get('removeIt', [tag]));
mxUtils.setOpacity(img, visible ? 75 : 25);
img.className = 'geAdaptiveAsset';
img.style.verticalAlign = 'middle';
img.style.cursor = 'pointer';
img.style.width = '16px';
Expand Down
4 changes: 2 additions & 2 deletions src/main/webapp/js/diagramly/Pages.js
Original file line number Diff line number Diff line change
Expand Up @@ -1390,8 +1390,8 @@ EditorUi.prototype.clonePages = function(pages)
}
catch (e)
{
errors.push(mxResources.get('pageWithNumber', [i + 1]) +
' (' + pages[i].getName() + '): ' + e.message);
errors.push(mxResources.get('pageWithNumber',
[i + 1]) + ': ' + e.message);
}
}

Expand Down
7 changes: 6 additions & 1 deletion src/main/webapp/js/diagramly/vsdx/importer.js
Original file line number Diff line number Diff line change
Expand Up @@ -10072,7 +10072,12 @@ var com;
return m.entries[i].value;
} return null; })(model.getThemes(), themeIndex);
if (theme == null) {
theme = model.getDefaultTheme();
if (urlParams['dev'] == '1')
{
console.log('No theme found for index ' + themeIndex);
}
// Using a default theme doesn't work well with all cases. Maybe give users an option to choose a default theme?
// theme = model.getDefaultTheme();
}
var variant = page.getCellIntValue("VariationColorIndex", 0);
_this.setThemeAndVariant(theme, variant);
Expand Down
215 changes: 108 additions & 107 deletions src/main/webapp/js/extensions.min.js

Large diffs are not rendered by default.

417 changes: 209 additions & 208 deletions src/main/webapp/js/integrate.min.js

Large diffs are not rendered by default.

192 changes: 96 additions & 96 deletions src/main/webapp/js/viewer-static.min.js

Large diffs are not rendered by default.

192 changes: 96 additions & 96 deletions src/main/webapp/js/viewer.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/main/webapp/mxgraph/mxClient.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/service-worker.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/main/webapp/service-worker.js.map

Large diffs are not rendered by default.

1 comment on commit 3f1abe0

@vercel
Copy link

@vercel vercel bot commented on 3f1abe0 Oct 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

drawio – ./

drawio.nines.center
drawio-louyongjiu.vercel.app
drawio-git-dev-louyongjiu.vercel.app

Please sign in to comment.