@matterbridge/core 3.7.6-dev-20260430-44fc966 → 3.7.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/frontend.js +3 -0
  2. package/package.json +5 -5
package/dist/frontend.js CHANGED
@@ -130,6 +130,9 @@ export class Frontend extends EventEmitter {
130
130
  this.fixedRestartRequired = true;
131
131
  this.wssSendRestartRequired(true, true);
132
132
  this.wssSendSnackbarMessage(`Installed package ${msg.result.packageName}`, 5, 'success');
133
+ const packageName = msg.result.packageName.replace(/-\d.*$/, '');
134
+ if (packageName.startsWith('matterbridge-'))
135
+ fireAndForget(this.server.fetch({ type: 'plugins_add', src: this.server.name, dst: 'plugins', params: { nameOrPath: packageName } }, this.serverFetchTimeout), this.log, `Error adding plugin ${packageName} after uploading package ${msg.result.packageName}`);
133
136
  }
134
137
  else {
135
138
  this.wssSendSnackbarMessage(`Package ${msg.result.packageName} not installed`, 10, 'error');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matterbridge/core",
3
- "version": "3.7.6-dev-20260430-44fc966",
3
+ "version": "3.7.6",
4
4
  "description": "Matterbridge core library",
5
5
  "author": "https://github.com/Luligu",
6
6
  "homepage": "https://matterbridge.io/",
@@ -130,10 +130,10 @@
130
130
  ],
131
131
  "dependencies": {
132
132
  "@matter/main": "0.16.11",
133
- "@matterbridge/dgram": "3.7.6-dev-20260430-44fc966",
134
- "@matterbridge/thread": "3.7.6-dev-20260430-44fc966",
135
- "@matterbridge/types": "3.7.6-dev-20260430-44fc966",
136
- "@matterbridge/utils": "3.7.6-dev-20260430-44fc966",
133
+ "@matterbridge/dgram": "3.7.6",
134
+ "@matterbridge/thread": "3.7.6",
135
+ "@matterbridge/types": "3.7.6",
136
+ "@matterbridge/utils": "3.7.6",
137
137
  "escape-html": "1.0.3",
138
138
  "express": "5.2.1",
139
139
  "express-rate-limit": "8.4.1",