Skip to content

Commit 24b08a9

Browse files
committed
Prep v0.6.3 release
1 parent 8296825 commit 24b08a9

File tree

7 files changed

+98
-195
lines changed

7 files changed

+98
-195
lines changed

bower.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dagre",
3-
"version": "0.6.2",
3+
"version": "0.6.3",
44
"main": [
55
"dist/dagre.core.js",
66
"dist/dagre.core.min.js"
@@ -10,7 +10,6 @@
1010
"README.md",
1111
"CHANGELOG.md",
1212
"Makefile",
13-
"browser.js",
1413
"dist/dagre.js",
1514
"dist/dagre.min.js",
1615
"index.js",

dist/dagre.core.js

Lines changed: 33 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,4 @@
1-
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
2-
(function (global){
3-
/**
4-
* @license
5-
* Copyright (c) 2012-2014 Chris Pettitt
6-
*
7-
* Permission is hereby granted, free of charge, to any person obtaining a copy
8-
* of this software and associated documentation files (the "Software"), to deal
9-
* in the Software without restriction, including without limitation the rights
10-
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11-
* copies of the Software, and to permit persons to whom the Software is
12-
* furnished to do so, subject to the following conditions:
13-
*
14-
* The above copyright notice and this permission notice shall be included in
15-
* all copies or substantial portions of the Software.
16-
*
17-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22-
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23-
* THE SOFTWARE.
24-
*/
25-
global.dagre = require("./index");
26-
27-
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
28-
},{"./index":2}],2:[function(require,module,exports){
1+
!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var f;"undefined"!=typeof window?f=window:"undefined"!=typeof global?f=global:"undefined"!=typeof self&&(f=self),f.dagre=e()}}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
292
/*
303
Copyright (c) 2012-2014 Chris Pettitt
314
@@ -60,7 +33,7 @@ module.exports = {
6033
version: require("./lib/version")
6134
};
6235

63-
},{"./lib/debug":7,"./lib/graphlib":8,"./lib/layout":10,"./lib/util":30,"./lib/version":31}],3:[function(require,module,exports){
36+
},{"./lib/debug":6,"./lib/graphlib":7,"./lib/layout":9,"./lib/util":29,"./lib/version":30}],2:[function(require,module,exports){
6437
"use strict";
6538

6639
var _ = require("./lodash"),
@@ -129,7 +102,7 @@ function undo(g) {
129102
});
130103
}
131104

132-
},{"./greedy-fas":9,"./lodash":11}],4:[function(require,module,exports){
105+
},{"./greedy-fas":8,"./lodash":10}],3:[function(require,module,exports){
133106
var _ = require("./lodash"),
134107
util = require("./util");
135108

@@ -169,7 +142,7 @@ function addBorderNode(g, prop, prefix, sg, sgNode, rank) {
169142
}
170143
}
171144

172-
},{"./lodash":11,"./util":30}],5:[function(require,module,exports){
145+
},{"./lodash":10,"./util":29}],4:[function(require,module,exports){
173146
"use strict";
174147

175148
var _ = require("./lodash");
@@ -243,7 +216,7 @@ function swapXYOne(attrs) {
243216
attrs.y = x;
244217
}
245218

246-
},{"./lodash":11}],6:[function(require,module,exports){
219+
},{"./lodash":10}],5:[function(require,module,exports){
247220
/*
248221
* Simple doubly linked list implementation derived from Cormen, et al.,
249222
* "Introduction to Algorithms".
@@ -301,7 +274,7 @@ function filterOutLinks(k, v) {
301274
}
302275
}
303276

304-
},{}],7:[function(require,module,exports){
277+
},{}],6:[function(require,module,exports){
305278
var _ = require("./lodash"),
306279
util = require("./util"),
307280
Graph = require("./graphlib").Graph;
@@ -337,7 +310,7 @@ function debugOrdering(g) {
337310
return h;
338311
}
339312

340-
},{"./graphlib":8,"./lodash":11,"./util":30}],8:[function(require,module,exports){
313+
},{"./graphlib":7,"./lodash":10,"./util":29}],7:[function(require,module,exports){
341314
/* global window */
342315

343316
var graphlib;
@@ -354,7 +327,7 @@ if (!graphlib) {
354327

355328
module.exports = graphlib;
356329

357-
},{"graphlib":undefined}],9:[function(require,module,exports){
330+
},{"graphlib":undefined}],8:[function(require,module,exports){
358331
var _ = require("./lodash"),
359332
Graph = require("./graphlib").Graph,
360333
List = require("./data/list");
@@ -474,7 +447,7 @@ function assignBucket(buckets, zeroIdx, entry) {
474447
}
475448
}
476449

477-
},{"./data/list":6,"./graphlib":8,"./lodash":11}],10:[function(require,module,exports){
450+
},{"./data/list":5,"./graphlib":7,"./lodash":10}],9:[function(require,module,exports){
478451
"use strict";
479452

480453
var _ = require("./lodash"),
@@ -868,7 +841,7 @@ function canonicalize(attrs) {
868841
return newAttrs;
869842
}
870843

871-
},{"./acyclic":3,"./add-border-segments":4,"./coordinate-system":5,"./graphlib":8,"./lodash":11,"./nesting-graph":12,"./normalize":13,"./order":18,"./parent-dummy-chains":23,"./position":25,"./rank":27,"./util":30}],11:[function(require,module,exports){
844+
},{"./acyclic":2,"./add-border-segments":3,"./coordinate-system":4,"./graphlib":7,"./lodash":10,"./nesting-graph":11,"./normalize":12,"./order":17,"./parent-dummy-chains":22,"./position":24,"./rank":26,"./util":29}],10:[function(require,module,exports){
872845
/* global window */
873846

874847
var lodash;
@@ -885,7 +858,7 @@ if (!lodash) {
885858

886859
module.exports = lodash;
887860

888-
},{"lodash":undefined}],12:[function(require,module,exports){
861+
},{"lodash":undefined}],11:[function(require,module,exports){
889862
var _ = require("./lodash"),
890863
util = require("./util");
891864

@@ -1019,7 +992,7 @@ function cleanup(g) {
1019992
});
1020993
}
1021994

1022-
},{"./lodash":11,"./util":30}],13:[function(require,module,exports){
995+
},{"./lodash":10,"./util":29}],12:[function(require,module,exports){
1023996
"use strict";
1024997

1025998
var _ = require("./lodash"),
@@ -1111,7 +1084,7 @@ function undo(g) {
11111084
});
11121085
}
11131086

1114-
},{"./lodash":11,"./util":30}],14:[function(require,module,exports){
1087+
},{"./lodash":10,"./util":29}],13:[function(require,module,exports){
11151088
var _ = require("../lodash");
11161089

11171090
module.exports = addSubgraphConstraints;
@@ -1166,7 +1139,7 @@ function addSubgraphConstraints(g, cg, vs) {
11661139
*/
11671140
}
11681141

1169-
},{"../lodash":11}],15:[function(require,module,exports){
1142+
},{"../lodash":10}],14:[function(require,module,exports){
11701143
var _ = require("../lodash");
11711144

11721145
module.exports = barycenter;
@@ -1196,7 +1169,7 @@ function barycenter(g, movable) {
11961169
}
11971170

11981171

1199-
},{"../lodash":11}],16:[function(require,module,exports){
1172+
},{"../lodash":10}],15:[function(require,module,exports){
12001173
var _ = require("../lodash"),
12011174
Graph = require("../graphlib").Graph;
12021175

@@ -1271,7 +1244,7 @@ function createRootNode(g) {
12711244
return v;
12721245
}
12731246

1274-
},{"../graphlib":8,"../lodash":11}],17:[function(require,module,exports){
1247+
},{"../graphlib":7,"../lodash":10}],16:[function(require,module,exports){
12751248
"use strict";
12761249

12771250
var _ = require("../lodash");
@@ -1343,7 +1316,7 @@ function twoLayerCrossCount(g, northLayer, southLayer) {
13431316
return cc;
13441317
}
13451318

1346-
},{"../lodash":11}],18:[function(require,module,exports){
1319+
},{"../lodash":10}],17:[function(require,module,exports){
13471320
"use strict";
13481321

13491322
var _ = require("../lodash"),
@@ -1424,7 +1397,7 @@ function assignOrder(g, layering) {
14241397
});
14251398
}
14261399

1427-
},{"../graphlib":8,"../lodash":11,"../util":30,"./add-subgraph-constraints":14,"./build-layer-graph":16,"./cross-count":17,"./init-order":19,"./sort-subgraph":21}],19:[function(require,module,exports){
1400+
},{"../graphlib":7,"../lodash":10,"../util":29,"./add-subgraph-constraints":13,"./build-layer-graph":15,"./cross-count":16,"./init-order":18,"./sort-subgraph":20}],18:[function(require,module,exports){
14281401
"use strict";
14291402

14301403
var _ = require("../lodash");
@@ -1464,7 +1437,7 @@ function initOrder(g) {
14641437
return layers;
14651438
}
14661439

1467-
},{"../lodash":11}],20:[function(require,module,exports){
1440+
},{"../lodash":10}],19:[function(require,module,exports){
14681441
"use strict";
14691442

14701443
var _ = require("../lodash");
@@ -1589,7 +1562,7 @@ function mergeEntries(target, source) {
15891562
source.merged = true;
15901563
}
15911564

1592-
},{"../lodash":11}],21:[function(require,module,exports){
1565+
},{"../lodash":10}],20:[function(require,module,exports){
15931566
var _ = require("../lodash"),
15941567
barycenter = require("./barycenter"),
15951568
resolveConflicts = require("./resolve-conflicts"),
@@ -1667,7 +1640,7 @@ function mergeBarycenters(target, other) {
16671640
}
16681641
}
16691642

1670-
},{"../lodash":11,"./barycenter":15,"./resolve-conflicts":20,"./sort":22}],22:[function(require,module,exports){
1643+
},{"../lodash":10,"./barycenter":14,"./resolve-conflicts":19,"./sort":21}],21:[function(require,module,exports){
16711644
var _ = require("../lodash"),
16721645
util = require("../util");
16731646

@@ -1726,7 +1699,7 @@ function compareWithBias(bias) {
17261699
};
17271700
}
17281701

1729-
},{"../lodash":11,"../util":30}],23:[function(require,module,exports){
1702+
},{"../lodash":10,"../util":29}],22:[function(require,module,exports){
17301703
var _ = require("./lodash");
17311704

17321705
module.exports = parentDummyChains;
@@ -1814,7 +1787,7 @@ function postorder(g) {
18141787
return result;
18151788
}
18161789

1817-
},{"./lodash":11}],24:[function(require,module,exports){
1790+
},{"./lodash":10}],23:[function(require,module,exports){
18181791
"use strict";
18191792

18201793
var _ = require("../lodash"),
@@ -2207,7 +2180,7 @@ function width(g, v) {
22072180
return g.node(v).width;
22082181
}
22092182

2210-
},{"../lodash":11,"../util":30}],25:[function(require,module,exports){
2183+
},{"../lodash":10,"../util":29}],24:[function(require,module,exports){
22112184
"use strict";
22122185

22132186
var _ = require("../lodash"),
@@ -2239,7 +2212,7 @@ function positionY(g) {
22392212
}
22402213

22412214

2242-
},{"../lodash":11,"../util":30,"./bk":24}],26:[function(require,module,exports){
2215+
},{"../lodash":10,"../util":29,"./bk":23}],25:[function(require,module,exports){
22432216
"use strict";
22442217

22452218
var _ = require("../lodash"),
@@ -2330,7 +2303,7 @@ function shiftRanks(t, g, delta) {
23302303
});
23312304
}
23322305

2333-
},{"../graphlib":8,"../lodash":11,"./util":29}],27:[function(require,module,exports){
2306+
},{"../graphlib":7,"../lodash":10,"./util":28}],26:[function(require,module,exports){
23342307
"use strict";
23352308

23362309
var rankUtil = require("./util"),
@@ -2380,7 +2353,7 @@ function networkSimplexRanker(g) {
23802353
networkSimplex(g);
23812354
}
23822355

2383-
},{"./feasible-tree":26,"./network-simplex":28,"./util":29}],28:[function(require,module,exports){
2356+
},{"./feasible-tree":25,"./network-simplex":27,"./util":28}],27:[function(require,module,exports){
23842357
"use strict";
23852358

23862359
var _ = require("../lodash"),
@@ -2616,7 +2589,7 @@ function isDescendant(tree, vLabel, rootLabel) {
26162589
return rootLabel.low <= vLabel.lim && vLabel.lim <= rootLabel.lim;
26172590
}
26182591

2619-
},{"../graphlib":8,"../lodash":11,"../util":30,"./feasible-tree":26,"./util":29}],29:[function(require,module,exports){
2592+
},{"../graphlib":7,"../lodash":10,"../util":29,"./feasible-tree":25,"./util":28}],28:[function(require,module,exports){
26202593
"use strict";
26212594

26222595
var _ = require("../lodash");
@@ -2679,7 +2652,7 @@ function slack(g, e) {
26792652
return g.node(e.w).rank - g.node(e.v).rank - g.edge(e).minlen;
26802653
}
26812654

2682-
},{"../lodash":11}],30:[function(require,module,exports){
2655+
},{"../lodash":10}],29:[function(require,module,exports){
26832656
"use strict";
26842657

26852658
var _ = require("./lodash"),
@@ -2917,7 +2890,8 @@ function notime(name, fn) {
29172890
return fn();
29182891
}
29192892

2920-
},{"./graphlib":8,"./lodash":11}],31:[function(require,module,exports){
2921-
module.exports = "0.6.2";
2893+
},{"./graphlib":7,"./lodash":10}],30:[function(require,module,exports){
2894+
module.exports = "0.6.3";
29222895

2923-
},{}]},{},[1]);
2896+
},{}]},{},[1])(1)
2897+
});

dist/dagre.core.min.js

Lines changed: 2 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)