Skip to content

Commit

Permalink
Release v0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
GuyShaanan committed Jul 30, 2017
1 parent a49c73c commit b27926e
Show file tree
Hide file tree
Showing 4 changed files with 148 additions and 147 deletions.
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "CloudFlow",
"version": "0.0.8",
"version": "0.0.9",
"license": "Apache-2.0",
"scripts": {
"ng": "ng",
Expand All @@ -15,15 +15,15 @@
},
"private": true,
"dependencies": {
"@angular/animations": "4.3.1",
"@angular/common": "4.3.1",
"@angular/compiler": "4.3.1",
"@angular/core": "4.3.1",
"@angular/forms": "4.3.1",
"@angular/http": "4.3.1",
"@angular/platform-browser": "4.3.1",
"@angular/platform-browser-dynamic": "4.3.1",
"@angular/router": "4.3.1",
"@angular/animations": "4.3.2",
"@angular/common": "4.3.2",
"@angular/compiler": "4.3.2",
"@angular/core": "4.3.2",
"@angular/forms": "4.3.2",
"@angular/http": "4.3.2",
"@angular/platform-browser": "4.3.2",
"@angular/platform-browser-dynamic": "4.3.2",
"@angular/router": "4.3.2",
"@ng-bootstrap/ng-bootstrap": "1.0.0-alpha.29",
"angular-split": "^0.2.0",
"animate.css": "^3.5.2",
Expand All @@ -44,11 +44,11 @@
"zone.js": "^0.8.14"
},
"devDependencies": {
"@angular/cli": "1.2.5",
"@angular/compiler-cli": "4.3.1",
"@angular/language-service": "4.3.1",
"@angular/cli": "1.2.6",
"@angular/compiler-cli": "4.3.2",
"@angular/language-service": "4.3.2",
"@types/codemirror": "^0.0.38",
"@types/dagre": "^0.7.34",
"@types/dagre": "0.7.35",
"@types/jasmine": "~2.5.53",
"@types/jquery": "^3.2.6",
"@types/js-yaml": "^3.5.31",
Expand Down
2 changes: 1 addition & 1 deletion src/app/about/about.component.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="modal-header">
<h4 class="modal-title">
<img src="assets/icon256.svg" height="32" width="32" class="mr-2" />
CloudFlow <small class="text-muted">v0.0.8</small>
CloudFlow <small class="text-muted">v0.0.9</small>
</h4>
<button type="button" class="close" aria-label="Close" (click)="modal.dismiss('')">
<span aria-hidden="true">&times;</span>
Expand Down
4 changes: 2 additions & 2 deletions src/app/engines/graph/graph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ export class Graph {
*/
private layout(elements) {
const g = new dagre.graphlib.Graph();
g.setGraph({marginx: 50, marginy: 10, ranksep: 100, nodesep: 100});
g.setDefaultEdgeLabel(() => ({}));
g.setGraph({marginx: 50, marginy: 10, ranksep: 100, nodesep: 100} as any);
g.setDefaultEdgeLabel(() => ({}) as any);

// set nodes
// width and height must match the CSS values
Expand Down
Loading

0 comments on commit b27926e

Please sign in to comment.