Skip to content

Commit

Permalink
resolved #74 and updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
oznu committed Apr 6, 2018
1 parent 4f3de0b commit 951bcd2
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 21 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

All notable changes to this project will be documented in this file. This project uses [Semantic Versioning](https://semver.org/).

## Next
## 3.4.1 (2018-04-06)

### Notable Changes

* Added link to plugin homepage (GitHub, BitBucket, etc.) ([#74](https://github.com/oznu/homebridge-config-ui-x/issues/74))
* Updated npm dependencies

### Bug Fixes

Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@
"bluebird": "^3.5.1",
"body-parser": "~1.18.2",
"buffer-shims": "^1.0.0",
"commander": "^2.15.0",
"commander": "^2.15.1",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"fs-extra": "^5.0.0",
"jsonwebtoken": "^8.2.0",
"jsonwebtoken": "^8.2.1",
"lodash": "^4.17.4",
"node-pty": "^0.7.4",
"nsp": "^3.2.1",
Expand All @@ -51,15 +51,15 @@
"request-promise": "^4.2.2",
"semver": "^5.5.0",
"source-map-support": "^0.5.4",
"ws": "^5.0.0"
"ws": "^5.1.1"
},
"devDependencies": {
"@types/express": "^4.11.0",
"@types/fs-extra": "^5.0.1",
"@types/node": "^9.4.7",
"@types/passport": "^0.4.3",
"@types/ws": "^4.0.0",
"@types/node": "^9.6.2",
"@types/passport": "^0.4.4",
"@types/ws": "^4.0.2",
"tslint": "^5.9.1",
"typescript": "^2.6.2"
"typescript": "^2.8.1"
}
}
23 changes: 12 additions & 11 deletions ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,38 +19,39 @@
"@angular/platform-browser": "^5.2.9",
"@angular/platform-browser-dynamic": "^5.2.9",
"@angular/router": "^5.2.9",
"@fortawesome/fontawesome-free-webfonts": "^1.0.4",
"@ng-bootstrap/ng-bootstrap": "^1.0.1",
"@fortawesome/fontawesome-free-webfonts": "^1.0.5",
"@ng-bootstrap/ng-bootstrap": "^1.1.0",
"@uirouter/angular": "^1.0.0-rc.2",
"angular2-jwt": "^0.2.3",
"bootstrap": "^4.0.0",
"classlist.js": "^1.1.20150312",
"core-js": "^2.4.1",
"core-js": "^2.5.4",
"jquery": "^3.3.1",
"material-design-icons-iconfont": "^3.0.3",
"mdbootstrap": "^4.5.0",
"mobile-detect": "^1.4.1",
"ng-inline-svg": "^6.0.0",
"ng-inline-svg": "^6.1.0",
"ng2-ace-editor": "^0.3.4",
"ng2-dragula": "^1.5.0",
"ng2-nouislider": "^1.7.7",
"ng2-toastr": "^4.1.2",
"ngx-md": "^3.1.1",
"nouislider": "^11.0.3",
"popper.js": "^1.14.1",
"rxjs": "^5.5.7",
"node-sass": "^4.7.2",
"nouislider": "^11.1.0",
"popper.js": "^1.14.3",
"rxjs": "^5.5.8",
"xterm": "^3.2.0",
"zone.js": "^0.8.14"
"zone.js": "^0.8.25"
},
"devDependencies": {
"@angular/cli": "^1.7.3",
"@angular/cli": "^1.7.4",
"@angular/compiler-cli": "^5.2.9",
"@angular/language-service": "^5.2.9",
"@oznu/hap-client": "0.0.3",
"@types/node": "^9.4.7",
"@types/node": "^9.6.2",
"codelyzer": "^4.2.1",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
"typescript": "^2.8.1"
}
}
7 changes: 5 additions & 2 deletions ui/src/app/plugins/plugins.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
<p class="mb-0 grey-text" *ngIf="!plugin.installed">Not Installed</p>
<p class="mb-0 primary-text" *ngIf="plugin.update">Update Available</p>
</div>
<div class="col-sm-6">
<div class="col-sm-6 d-none d-sm-block">
<p class="mb-0 grey-text text-right" *ngIf="plugin.author">
<a class="card-link grey-text" target="_blank" [href]="'https://www.npmjs.com/~' + plugin.author">@{{ plugin.author }}</a>
</p>
</div>
</div>
<h4 class="card-title mb-0" [innerHtml]="plugin.description"></h4>
<p class="card-text">{{ plugin.name }} v{{ plugin.installed || plugin.version }}</p>
<div class="flex-row">
<div class="d-flex">
<a class="card-link" target="_blank" *ngIf="plugin.publicPackage" [href]="plugin.links.npm">
NPM
</a>
Expand All @@ -40,6 +40,9 @@ <h4 class="card-title mb-0" [innerHtml]="plugin.description"></h4>
<a class="card-link" *ngIf="!plugin.installed" href="javascript:void(0);" (click)="$plugin.installPlugin(plugin.name)">
INSTALL
</a>
<a class="card-link ml-auto grey-text" target="_blank" [href]="plugin.links.homepage || plugin.links.npm" [ngbTooltip]="plugin.links.homepage || plugin.links.npm" container="body" placement="left">
<i class="fas fa-external-link-alt"></i>
</a>
</div>
</div>
<!--/.Panel-->
Expand Down
1 change: 1 addition & 0 deletions ui/src/scss/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ $fa-font-path:'../../node_modules/@fortawesome/fontawesome-free-webfonts/webfont

@import "~material-design-icons-iconfont/dist/material-design-icons";
@import "~@fortawesome/fontawesome-free-webfonts/scss/fontawesome.scss";
@import "~@fortawesome/fontawesome-free-webfonts/scss/fa-solid.scss";
@import "~@fortawesome/fontawesome-free-webfonts/scss/fa-brands.scss";
@import "~bootstrap/scss/bootstrap";
@import "~mdbootstrap/scss/mdb";
Expand Down

1 comment on commit 951bcd2

@pierrejochem
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 That was fast

Please sign in to comment.