Skip to content

Commit

Permalink
Release 1.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Luligu committed Apr 8, 2024
1 parent 45ed55a commit bc1722d
Show file tree
Hide file tree
Showing 5 changed files with 543 additions and 409 deletions.
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,8 @@ frontend/public
frontend/package.*
frontend/package-lock.json
frontend/README.md
frontend/build/matterbridge 624x624.png
frontend/build/matterbridge 1250x1250.png

# zigbee2mqtt
bridge-info.json
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

## [1.2.5] - 2024-04-05
## [1.2.5] - 2024-04-08

### Added
- [frontend]: Added update Matterbridge (spawn the command: 'npm -install -g matterbridge'). The console inherit the the spawned process running so you can check.
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,13 @@
"@stylistic/eslint-plugin": "^1.7.0",
"@tsconfig/node-lts": "^20.1.3",
"@types/express": "^4.17.21",
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@types/node": "^20.12.5",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typescript": "^5.4.3"
"typescript": "^5.4.4"
},
"dependencies": {
"@project-chip/matter-node.js": "^0.8.0",
Expand Down
2 changes: 1 addition & 1 deletion src/matterbridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2545,7 +2545,7 @@ export class Matterbridge extends EventEmitter {

// Fallback for routing
this.expressApp.get('*', (req, res) => {
this.log.warn('The frontend sent *', req.url);
this.log.debug('The frontend sent *', req.url);
res.sendFile(path.join(this.rootDirectory, 'frontend/build/index.html'));
});

Expand Down
Loading

0 comments on commit bc1722d

Please sign in to comment.