Skip to content

Commit b52c5b4

Browse files
committed
16.0.3 release
1 parent 14fd9bd commit b52c5b4

10 files changed

+2109
-2082
lines changed

ChangeLog

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
21-DEC-2021: 16.0.3
2+
3+
- Adds Share and Comments in sketch File menu
4+
- Fixes no stroke in Roughjs, adds swimlaneHead/Body
5+
- Uses persisted default grid color
6+
- Fixes rendering and tooltips for special colors
7+
- Fixes initial placement of shapes window
8+
- Uses Pusher 7.0.3 to fix NPE
9+
110
21-DEC-2021: 16.0.2
211

312
- Re-build

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.0.2
1+
16.0.3

src/main/webapp/js/app.min.js

+978-974
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/js/diagramly/App.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ App.PUSHER_CLUSTER = 'eu';
294294
/**
295295
* Specifies the URL for the pusher API.
296296
*/
297-
App.PUSHER_URL = 'https://js.pusher.com/4.3/pusher.min.js';
297+
App.PUSHER_URL = 'https://js.pusher.com/7.0.3/pusher.min.js';
298298

299299
/**
300300
* Socket.io library

src/main/webapp/js/diagramly/Minimal.js

+6-4
Original file line numberDiff line numberDiff line change
@@ -126,11 +126,13 @@ EditorUi.initMinimalTheme = function()
126126
if (ui.sidebarWindow == null)
127127
{
128128
var w = Math.min(graph.container.clientWidth - 10, 218);
129+
var h = Math.min(graph.container.clientHeight - 40, 650);
129130

130-
ui.sidebarWindow = new WrapperWindow(ui, mxResources.get('shapes'), 10,
131-
(urlParams['sketch'] == '1' && urlParams['embedInline'] != '1') ? 15 : 56,
132-
w - 6, Math.min(650, graph.container.clientHeight - 30),
133-
function(container)
131+
ui.sidebarWindow = new WrapperWindow(ui, mxResources.get('shapes'),
132+
(urlParams['sketch'] == '1' && urlParams['embedInline'] != '1') ? 66 : 10,
133+
(urlParams['sketch'] == '1' && urlParams['embedInline'] != '1') ?
134+
Math.max(30, (graph.container.clientHeight - h) / 2) : 56,
135+
w - 6, h - 6, function(container)
134136
{
135137
var div = document.createElement('div');
136138
div.style.cssText = 'position:absolute;left:0;right:0;border-top:1px solid lightgray;' +

src/main/webapp/js/viewer-static.min.js

+542-537
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/js/viewer.min.js

+542-537
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/mxgraph/mxClient.js

+28-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/service-worker.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/service-worker.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)