Skip to content

Commit

Permalink
Release v2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kumilingus authored May 8, 2018
1 parent 10f1a46 commit fa138ea
Show file tree
Hide file tree
Showing 36 changed files with 71 additions and 49 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
8-5-2018 (v2.1.2)
* dia.CellView - fix magnet lookup based on the port property
* docs - fix broken links

7-5-2018 (v2.1.1)
* layout.PortLabel: fix manual position
* anchors: prevent exception when reference node not in the DOM
* layout.PortLabel - fix manual position
* anchors - prevent exception when reference node not in the DOM

27-4-2018 (v2.1.0)
* update Tutorials
Expand Down
2 changes: 1 addition & 1 deletion dist/geometry.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v2.1.1 (2018-05-07) - JavaScript diagramming library
/*! JointJS v2.1.2 (2018-05-08) - JavaScript diagramming library
This Source Code Form is subject to the terms of the Mozilla Public
Expand Down
2 changes: 1 addition & 1 deletion dist/geometry.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/joint.core.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 9 additions & 3 deletions dist/joint.core.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v2.1.1 (2018-05-07) - JavaScript diagramming library
/*! JointJS v2.1.2 (2018-05-08) - JavaScript diagramming library


This Source Code Form is subject to the terms of the Mozilla Public
Expand Down Expand Up @@ -7745,7 +7745,7 @@ V = Vectorizer = (function() {

var joint = {

version: '2.1.1',
version: '2.1.2',

config: {
// The class name prefix config is for advanced use only.
Expand Down Expand Up @@ -12557,7 +12557,13 @@ joint.dia.CellView = joint.mvc.View.extend({
if (port != null && this.model.hasPort(port)) {
magnet = this.findPortNode(port, selector) || root;
} else {
magnet = this.findBySelector(selector || end.selector, root, this.selectors)[0];
if (!selector) selector = end.selector;
if (!selector && port != null) {
// link end has only `id` and `port` property referencing
// a port created via the `port` attribute (not API).
selector = '[port="' + port + '"]';
}
magnet = this.findBySelector(selector, root, this.selectors)[0];
}

return magnet;
Expand Down
2 changes: 1 addition & 1 deletion dist/joint.core.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions dist/joint.core.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/joint.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/joint.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v2.1.1 (2018-05-07) - JavaScript diagramming library
/*! JointJS v2.1.2 (2018-05-08) - JavaScript diagramming library
This Source Code Form is subject to the terms of the Mozilla Public
Expand Down
12 changes: 9 additions & 3 deletions dist/joint.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v2.1.1 (2018-05-07) - JavaScript diagramming library
/*! JointJS v2.1.2 (2018-05-08) - JavaScript diagramming library


This Source Code Form is subject to the terms of the Mozilla Public
Expand Down Expand Up @@ -7745,7 +7745,7 @@ V = Vectorizer = (function() {

var joint = {

version: '2.1.1',
version: '2.1.2',

config: {
// The class name prefix config is for advanced use only.
Expand Down Expand Up @@ -12557,7 +12557,13 @@ joint.dia.CellView = joint.mvc.View.extend({
if (port != null && this.model.hasPort(port)) {
magnet = this.findPortNode(port, selector) || root;
} else {
magnet = this.findBySelector(selector || end.selector, root, this.selectors)[0];
if (!selector) selector = end.selector;
if (!selector && port != null) {
// link end has only `id` and `port` property referencing
// a port created via the `port` attribute (not API).
selector = '[port="' + port + '"]';
}
magnet = this.findBySelector(selector, root, this.selectors)[0];
}

return magnet;
Expand Down
2 changes: 1 addition & 1 deletion dist/joint.layout.DirectedGraph.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v2.1.1 (2018-05-07) - JavaScript diagramming library
/*! JointJS v2.1.2 (2018-05-08) - JavaScript diagramming library
This Source Code Form is subject to the terms of the Mozilla Public
Expand Down
2 changes: 1 addition & 1 deletion dist/joint.layout.DirectedGraph.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/joint.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions dist/joint.min.js

Large diffs are not rendered by default.

12 changes: 9 additions & 3 deletions dist/joint.nowrap.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v2.1.1 (2018-05-07) - JavaScript diagramming library
/*! JointJS v2.1.2 (2018-05-08) - JavaScript diagramming library


This Source Code Form is subject to the terms of the Mozilla Public
Expand Down Expand Up @@ -7707,7 +7707,7 @@ V = Vectorizer = (function() {

var joint = {

version: '2.1.1',
version: '2.1.2',

config: {
// The class name prefix config is for advanced use only.
Expand Down Expand Up @@ -12519,7 +12519,13 @@ joint.dia.CellView = joint.mvc.View.extend({
if (port != null && this.model.hasPort(port)) {
magnet = this.findPortNode(port, selector) || root;
} else {
magnet = this.findBySelector(selector || end.selector, root, this.selectors)[0];
if (!selector) selector = end.selector;
if (!selector && port != null) {
// link end has only `id` and `port` property referencing
// a port created via the `port` attribute (not API).
selector = '[port="' + port + '"]';
}
magnet = this.findBySelector(selector, root, this.selectors)[0];
}

return magnet;
Expand Down
6 changes: 3 additions & 3 deletions dist/joint.nowrap.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/joint.shapes.chess.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/joint.shapes.chess.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/joint.shapes.devs.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v2.1.1 (2018-05-07) - JavaScript diagramming library
/*! JointJS v2.1.2 (2018-05-08) - JavaScript diagramming library
This Source Code Form is subject to the terms of the Mozilla Public
Expand Down
2 changes: 1 addition & 1 deletion dist/joint.shapes.devs.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/joint.shapes.erd.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v2.1.1 (2018-05-07) - JavaScript diagramming library
/*! JointJS v2.1.2 (2018-05-08) - JavaScript diagramming library
This Source Code Form is subject to the terms of the Mozilla Public
Expand Down
2 changes: 1 addition & 1 deletion dist/joint.shapes.erd.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/joint.shapes.fsa.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v2.1.1 (2018-05-07) - JavaScript diagramming library
/*! JointJS v2.1.2 (2018-05-08) - JavaScript diagramming library
This Source Code Form is subject to the terms of the Mozilla Public
Expand Down
2 changes: 1 addition & 1 deletion dist/joint.shapes.fsa.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/joint.shapes.logic.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/joint.shapes.logic.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/joint.shapes.org.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v2.1.1 (2018-05-07) - JavaScript diagramming library
/*! JointJS v2.1.2 (2018-05-08) - JavaScript diagramming library
This Source Code Form is subject to the terms of the Mozilla Public
Expand Down
2 changes: 1 addition & 1 deletion dist/joint.shapes.org.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/joint.shapes.pn.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v2.1.1 (2018-05-07) - JavaScript diagramming library
/*! JointJS v2.1.2 (2018-05-08) - JavaScript diagramming library
This Source Code Form is subject to the terms of the Mozilla Public
Expand Down
2 changes: 1 addition & 1 deletion dist/joint.shapes.pn.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/joint.shapes.uml.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v2.1.1 (2018-05-07) - JavaScript diagramming library
/*! JointJS v2.1.2 (2018-05-08) - JavaScript diagramming library
This Source Code Form is subject to the terms of the Mozilla Public
Expand Down
2 changes: 1 addition & 1 deletion dist/joint.shapes.uml.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/vectorizer.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v2.1.1 (2018-05-07) - JavaScript diagramming library
/*! JointJS v2.1.2 (2018-05-08) - JavaScript diagramming library
This Source Code Form is subject to the terms of the Mozilla Public
Expand Down
2 changes: 1 addition & 1 deletion dist/vectorizer.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"scripts": {
"test": "grunt test"
},
"version": "2.1.1",
"version": "2.1.2",
"main": "./dist/joint.min.js",
"style": "./dist/joint.min.css",
"types": "./dist/joint.d.ts",
Expand Down

0 comments on commit fa138ea

Please sign in to comment.