Skip to content

Commit 9835123

Browse files
authored
Release v3.6.1 (#1843)
1 parent e14f1b6 commit 9835123

37 files changed

+59
-48
lines changed

CHANGELOG

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
14-10-2022 (v3.6.1)
2+
3+
* util.breakText: prevent infinite loop when using `preserveSpaces`
4+
* util.breakText: always account for `height` when using `preserveSpaces`
5+
16
12-10-2022 (v3.6.0)
27

38
* replace phantomjs with puppeteer

dist/geometry.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! JointJS v3.6.0 (2022-10-12) - JavaScript diagramming library
1+
/*! JointJS v3.6.1 (2022-10-14) - JavaScript diagramming library
22
33
44
This Source Code Form is subject to the terms of the Mozilla Public

dist/geometry.min.js

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

dist/joint.core.css

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

dist/joint.core.js

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! JointJS v3.6.0 (2022-10-12) - JavaScript diagramming library
1+
/*! JointJS v3.6.1 (2022-10-14) - JavaScript diagramming library
22

33

44
This Source Code Form is subject to the terms of the Mozilla Public
@@ -11160,7 +11160,9 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
1116011160
}
1116111161
}
1116211162

11163-
i--;
11163+
if (!preserveSpaces || lines[l] !== '') {
11164+
i--;
11165+
}
1116411166

1116511167
continue;
1116611168
}
@@ -11180,7 +11182,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
1118011182
// if size.height is defined we have to check whether the height of the entire
1118111183
// text exceeds the rect height
1118211184

11183-
if (lineHeight === undefined) {
11185+
if (lineHeight === undefined && textNode.data !== '') {
1118411186

1118511187
var heightValue;
1118611188

@@ -32722,7 +32724,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
3272232724
Control: Control
3272332725
});
3272432726

32725-
var version = "3.6.0";
32727+
var version = "3.6.1";
3272632728

3272732729
var Vectorizer = V;
3272832730
var layout = { PortLabel: PortLabel, Port: Port };

dist/joint.core.min.css

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

dist/joint.core.min.js

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

dist/joint.css

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

dist/joint.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! JointJS v3.6.0 (2022-10-12) - JavaScript diagramming library
1+
/*! JointJS v3.6.1 (2022-10-14) - JavaScript diagramming library
22
33
44
This Source Code Form is subject to the terms of the Mozilla Public

dist/joint.js

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! JointJS v3.6.0 (2022-10-12) - JavaScript diagramming library
1+
/*! JointJS v3.6.1 (2022-10-14) - JavaScript diagramming library
22

33

44
This Source Code Form is subject to the terms of the Mozilla Public
@@ -11436,7 +11436,9 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
1143611436
}
1143711437
}
1143811438

11439-
i--;
11439+
if (!preserveSpaces || lines[l] !== '') {
11440+
i--;
11441+
}
1144011442

1144111443
continue;
1144211444
}
@@ -11456,7 +11458,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
1145611458
// if size.height is defined we have to check whether the height of the entire
1145711459
// text exceeds the rect height
1145811460

11459-
if (lineHeight === undefined) {
11461+
if (lineHeight === undefined && textNode.data !== '') {
1146011462

1146111463
var heightValue;
1146211464

@@ -34294,7 +34296,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
3429434296
Control: Control
3429534297
});
3429634298

34297-
var version = "3.6.0";
34299+
var version = "3.6.1";
3429834300

3429934301
var Vectorizer = V;
3430034302
var layout = { PortLabel: PortLabel, Port: Port };

dist/joint.layout.DirectedGraph.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! JointJS v3.6.0 (2022-10-12) - JavaScript diagramming library
1+
/*! JointJS v3.6.1 (2022-10-14) - JavaScript diagramming library
22
33
44
This Source Code Form is subject to the terms of the Mozilla Public

dist/joint.layout.DirectedGraph.min.js

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

dist/joint.min.css

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

dist/joint.min.js

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

dist/joint.nowrap.js

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! JointJS v3.6.0 (2022-10-12) - JavaScript diagramming library
1+
/*! JointJS v3.6.1 (2022-10-14) - JavaScript diagramming library
22

33

44
This Source Code Form is subject to the terms of the Mozilla Public
@@ -11433,7 +11433,9 @@ var joint = (function (exports, Backbone, _, $) {
1143311433
}
1143411434
}
1143511435

11436-
i--;
11436+
if (!preserveSpaces || lines[l] !== '') {
11437+
i--;
11438+
}
1143711439

1143811440
continue;
1143911441
}
@@ -11453,7 +11455,7 @@ var joint = (function (exports, Backbone, _, $) {
1145311455
// if size.height is defined we have to check whether the height of the entire
1145411456
// text exceeds the rect height
1145511457

11456-
if (lineHeight === undefined) {
11458+
if (lineHeight === undefined && textNode.data !== '') {
1145711459

1145811460
var heightValue;
1145911461

@@ -34291,7 +34293,7 @@ var joint = (function (exports, Backbone, _, $) {
3429134293
Control: Control
3429234294
});
3429334295

34294-
var version = "3.6.0";
34296+
var version = "3.6.1";
3429534297

3429634298
var Vectorizer = V;
3429734299
var layout = { PortLabel: PortLabel, Port: Port };

dist/joint.nowrap.min.js

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

dist/joint.shapes.chess.js

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

dist/joint.shapes.chess.min.js

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

dist/joint.shapes.devs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! JointJS v3.6.0 (2022-10-12) - JavaScript diagramming library
1+
/*! JointJS v3.6.1 (2022-10-14) - JavaScript diagramming library
22
33
44
This Source Code Form is subject to the terms of the Mozilla Public

dist/joint.shapes.devs.min.js

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

dist/joint.shapes.erd.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! JointJS v3.6.0 (2022-10-12) - JavaScript diagramming library
1+
/*! JointJS v3.6.1 (2022-10-14) - JavaScript diagramming library
22
33
44
This Source Code Form is subject to the terms of the Mozilla Public

dist/joint.shapes.erd.min.js

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

dist/joint.shapes.fsa.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! JointJS v3.6.0 (2022-10-12) - JavaScript diagramming library
1+
/*! JointJS v3.6.1 (2022-10-14) - JavaScript diagramming library
22
33
44
This Source Code Form is subject to the terms of the Mozilla Public

dist/joint.shapes.fsa.min.js

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

dist/joint.shapes.logic.js

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

dist/joint.shapes.logic.min.js

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

dist/joint.shapes.org.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! JointJS v3.6.0 (2022-10-12) - JavaScript diagramming library
1+
/*! JointJS v3.6.1 (2022-10-14) - JavaScript diagramming library
22
33
44
This Source Code Form is subject to the terms of the Mozilla Public

dist/joint.shapes.org.min.js

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

dist/joint.shapes.pn.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! JointJS v3.6.0 (2022-10-12) - JavaScript diagramming library
1+
/*! JointJS v3.6.1 (2022-10-14) - JavaScript diagramming library
22
33
44
This Source Code Form is subject to the terms of the Mozilla Public

dist/joint.shapes.pn.min.js

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

dist/joint.shapes.uml.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! JointJS v3.6.0 (2022-10-12) - JavaScript diagramming library
1+
/*! JointJS v3.6.1 (2022-10-14) - JavaScript diagramming library
22
33
44
This Source Code Form is subject to the terms of the Mozilla Public

dist/joint.shapes.uml.min.js

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

dist/vectorizer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! JointJS v3.6.0 (2022-10-12) - JavaScript diagramming library
1+
/*! JointJS v3.6.1 (2022-10-14) - JavaScript diagramming library
22

33

44
This Source Code Form is subject to the terms of the Mozilla Public

dist/vectorizer.min.js

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

dist/version.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
var version = "3.6.0";
1+
var version = "3.6.1";
22

33
export { version };

package-lock.json

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"lint:fix": "npm run lint -- --fix"
1515
},
1616
"sideEffects": false,
17-
"version": "3.6.0",
17+
"version": "3.6.1",
1818
"main": "dist/joint.min.js",
1919
"module": "joint.mjs",
2020
"style": "./dist/joint.min.css",

0 commit comments

Comments
 (0)