-
Notifications
You must be signed in to change notification settings - Fork 383
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
120 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "homebridge-config-ui-x", | ||
"version": "4.4.1", | ||
"version": "4.4.2-beta.1", | ||
"description": "Configuration UI plugin for Homebridge", | ||
"license": "MIT", | ||
"author": "oznu <[email protected]>", | ||
|
@@ -63,13 +63,13 @@ | |
"semver": "^6.0.0" | ||
}, | ||
"devDependencies": { | ||
"@nestjs/jwt": "^6.0.0", | ||
"@nestjs/passport": "^6.0.0", | ||
"@nestjs/jwt": "^6.1.0", | ||
"@nestjs/passport": "^6.1.0", | ||
"@nestjs/platform-fastify": "^6.2.0", | ||
"@oznu/hap-client": "0.0.4", | ||
"@types/express": "^4.16.0", | ||
"@types/fs-extra": "^7.0.0", | ||
"@types/node": "^12.0.1", | ||
"@types/node": "^12.0.2", | ||
"@types/socket.io": "^2.1.2", | ||
"bash-color": "0.0.4", | ||
"buffer-shims": "^1.0.0", | ||
|
@@ -84,13 +84,13 @@ | |
"passport": "^0.4.0", | ||
"passport-jwt": "^4.0.0", | ||
"pino-pretty": "^3.0.0", | ||
"point-of-view": "^3.3.0", | ||
"point-of-view": "^3.4.0", | ||
"prettier": "^1.17.1", | ||
"qr-image": "^3.2.0", | ||
"request": "^2.88.0", | ||
"request-promise": "^4.2.4", | ||
"rimraf": "^2.6.2", | ||
"ts-loader": "^6.0.0", | ||
"ts-loader": "^6.0.1", | ||
"ts-node": "^8.1.0", | ||
"tsconfig-paths": "^3.5.0", | ||
"tslint": "^5.16.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import { Logger } from './core/logger/logger.service'; | ||
|
||
/** | ||
* The purpose of this script is to check the environment before launching the UI | ||
*/ | ||
async function main() { | ||
const logger = new Logger(); | ||
|
||
// check if node-pty is built correctly | ||
try { | ||
require('node-pty-prebuilt-multiarch'); | ||
} catch (e) { | ||
logger.error(e); | ||
logger.error(`[node-pty] Node.js ${process.version}`); | ||
logger.error('[node-pty] Failed to load node-pty module'); | ||
logger.error('[node-pty] This could be because the installation of this plugin did not complete successfully ' + | ||
'or you may have recently upgraded Node.js to a new major version and have not reinstalled or rebuilt this plugin.'); | ||
logger.error('[node-pty] This can usually be fixed by uninstalling and ' + | ||
'reinstalling this plugin (exact command may vary based on your platform and setup):'); | ||
logger.error('[node-pty] sudo npm uninstall -g homebridge-config-ui-x'); | ||
logger.error('[node-pty] sudo npm install -g --unsafe-perm homebridge-config-ui-x'); | ||
process.exit(1); | ||
} | ||
|
||
} | ||
|
||
main(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
.menu-logo { | ||
height: 37px; | ||
|
||
@media screen and (max-width: 600px){ | ||
height: 27px; | ||
} | ||
@media screen and (max-width: 991px){ | ||
height: 32px; | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.