Skip to content

Commit

Permalink
add box for right text in mobile view
Browse files Browse the repository at this point in the history
  • Loading branch information
bwp91 committed May 11, 2024
1 parent b383e09 commit 045174f
Show file tree
Hide file tree
Showing 8 changed files with 476 additions and 633 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ All notable changes to `homebridge-config-ui-x` will be documented in this file.
- update bridge settings + main settings page
- match json config title
- fix edge case of hiding child bridge setup
- add box for right text in mobile view

### Translation Changes

Expand Down
589 changes: 228 additions & 361 deletions package-lock.json

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"dependencies": {
"@fastify/helmet": "11.1.1",
"@fastify/multipart": "8.2.0",
"@fastify/static": "7.0.3",
"@fastify/static": "7.0.4",
"@homebridge/hap-client": "1.10.2",
"@homebridge/node-pty-prebuilt-multiarch": "0.11.13",
"@nestjs/axios": "3.0.2",
Expand All @@ -74,7 +74,7 @@
"class-transformer": "0.5.1",
"class-validator": "0.14.1",
"commander": "12.0.0",
"dayjs": "1.11.10",
"dayjs": "1.11.11",
"fastify": "4.26.2",
"fs-extra": "11.2.0",
"jsonwebtoken": "9.0.2",
Expand All @@ -88,40 +88,40 @@
"passport-jwt": "4.0.1",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.1",
"semver": "7.6.0",
"systeminformation": "5.22.7",
"semver": "7.6.2",
"systeminformation": "5.22.8",
"tail": "2.2.6",
"tar": "6.2.1",
"tcp-port-used": "1.0.2",
"unzipper": "0.11.4"
"unzipper": "0.11.5"
},
"devDependencies": {
"@nestjs/testing": "^10.3.8",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.7",
"@types/lodash": "^4.17.1",
"@types/node": "^20.12.11",
"@types/node-schedule": "^2.1.7",
"@types/passport-jwt": "^4.0.1",
"@types/semver": "^7.5.8",
"@types/tail": "^2.2.3",
"@types/tar": "^6.1.13",
"@types/tcp-port-used": "^1.0.4",
"@types/unzipper": "^0.10.9",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"babel-jest": "^29.7.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-jest": "^28.3.0",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-sort-exports": "^0.9.1",
"form-data": "^4.0.0",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"rimraf": "^5.0.5",
"rimraf": "^5.0.6",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/status.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ describe('StatusController (e2e)', () => {
'lts': false,
},
{
'version': 'v20.12.2',
'version': 'v20.13.1',
'lts': 'Iron',
},
{
Expand Down Expand Up @@ -227,7 +227,7 @@ describe('StatusController (e2e)', () => {

expect(res.statusCode).toBe(200);
expect(res.json().currentVersion).toEqual(process.version);
expect(res.json().latestVersion).toBe('v20.12.2');
expect(res.json().latestVersion).toBe('v20.13.1');
});

afterAll(async () => {
Expand Down
Loading

0 comments on commit 045174f

Please sign in to comment.