matterbridge 1.5.8 → 1.5.9
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.
- package/CHANGELOG.md +23 -0
- package/README-DOCKER.md +11 -2
- package/README-SERVICE.md +14 -1
- package/dist/defaultConfigSchema.d.ts.map +1 -1
- package/dist/defaultConfigSchema.js +9 -3
- package/dist/defaultConfigSchema.js.map +1 -1
- package/frontend/build/asset-manifest.json +3 -3
- package/frontend/build/index.html +1 -1
- package/frontend/build/static/js/{main.af741b33.js → main.96d6324b.js} +3 -3
- package/frontend/build/static/js/main.96d6324b.js.map +1 -0
- package/npm-shrinkwrap.json +20 -20
- package/package.json +4 -4
- package/frontend/build/static/js/main.af741b33.js.map +0 -1
- /package/frontend/build/static/js/{main.af741b33.js.LICENSE.txt → main.96d6324b.js.LICENSE.txt} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,11 +7,34 @@ If you like this project and find it useful, please consider giving it a star on
|
|
|
7
7
|
### Home Assistant Community Add-ons
|
|
8
8
|
|
|
9
9
|
The Home Assistant Community Add-ons and plugins are not verified to work with Matterbridge. I strongly advise against using them. If you do use them and encounter an issue (which is likely because some do not meet the Matterbridge guidelines), please do not open an issue in the Matterbridge repository.
|
|
10
|
+
If you want to run Matterbridge in Home Assistant please use the official add-on https://github.com/Luligu/matterbridge-home-assistant-addon.
|
|
10
11
|
|
|
11
12
|
### New Apple firmware v. 18.0
|
|
12
13
|
|
|
13
14
|
Please read this: https://github.com/Luligu/matterbridge/discussions/135
|
|
14
15
|
|
|
16
|
+
### Discord
|
|
17
|
+
|
|
18
|
+
Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord group: https://discord.gg/raWywpD4.
|
|
19
|
+
|
|
20
|
+
Feel free to join!
|
|
21
|
+
|
|
22
|
+
## [1.5.9] - 2024-09-23
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
|
|
26
|
+
- [ingress]: Fixed download routes with Ingress from the ha addon. The add-on https://github.com/Luligu/matterbridge-home-assistant-addon has been updated to v. 1.0.4.
|
|
27
|
+
|
|
28
|
+
### Changed
|
|
29
|
+
|
|
30
|
+
- [package]: Update matter-node.js to 0.10.6.
|
|
31
|
+
- [package]: Update matter-history to 1.1.16.
|
|
32
|
+
- [package]: Update dependencies.
|
|
33
|
+
|
|
34
|
+
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
35
|
+
<img src="./yellow-button.png" alt="Buy me a coffee" width="120">
|
|
36
|
+
</a>
|
|
37
|
+
|
|
15
38
|
## [1.5.8] - 2024-09-21
|
|
16
39
|
|
|
17
40
|
### Added
|
package/README-DOCKER.md
CHANGED
|
@@ -20,7 +20,7 @@ The Matterbridge Docker image, which includes a manifest list for the linux/amd6
|
|
|
20
20
|
|
|
21
21
|
### First create the Matterbridge directories
|
|
22
22
|
|
|
23
|
-
This will create the required directories if they don't exist
|
|
23
|
+
This will create the required directories in your home directory if they don't exist
|
|
24
24
|
|
|
25
25
|
```
|
|
26
26
|
cd ~
|
|
@@ -31,9 +31,18 @@ sudo chown -R $USER:$USER ./Matterbridge ./.matterbridge
|
|
|
31
31
|
|
|
32
32
|
You may need to adapt the script to your setup.
|
|
33
33
|
|
|
34
|
+
### Add your user to docker group
|
|
35
|
+
|
|
36
|
+
If you don't want to use sudo with docker commands, run this command:
|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
sudo groupadd docker
|
|
40
|
+
sudo usermod -aG docker $USER
|
|
41
|
+
```
|
|
42
|
+
|
|
34
43
|
### Run the Docker container and start it
|
|
35
44
|
|
|
36
|
-
The container
|
|
45
|
+
The container must have full access to the host network (needed for mdns).
|
|
37
46
|
|
|
38
47
|
```
|
|
39
48
|
docker run --name matterbridge \
|
package/README-SERVICE.md
CHANGED
|
@@ -16,6 +16,19 @@
|
|
|
16
16
|
|
|
17
17
|
## Run matterbridge as a daemon with systemctl (Linux only)
|
|
18
18
|
|
|
19
|
+
### First create the Matterbridge directories
|
|
20
|
+
|
|
21
|
+
This will create the required directories if they don't exist
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
cd ~
|
|
25
|
+
mkdir -p ./Matterbridge
|
|
26
|
+
mkdir -p ./.matterbridge
|
|
27
|
+
sudo chown -R $USER:$USER ./Matterbridge ./.matterbridge
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
### Then create a systemctl configuration file for Matterbridge
|
|
31
|
+
|
|
19
32
|
Create a systemctl configuration file for Matterbridge
|
|
20
33
|
|
|
21
34
|
```
|
|
@@ -118,7 +131,7 @@ sudo npm install -g matterbridge
|
|
|
118
131
|
```
|
|
119
132
|
If you are not prompted for a password, no further action is required.
|
|
120
133
|
|
|
121
|
-
If that is not the case open the sudoers file for editing using visudo
|
|
134
|
+
If that is not the case, open the sudoers file for editing using visudo
|
|
122
135
|
```
|
|
123
136
|
sudo visudo
|
|
124
137
|
```
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"defaultConfigSchema.d.ts","sourceRoot":"","sources":["../src/defaultConfigSchema.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAE3D,eAAO,MAAM,kBAAkB,EAAE,cAiBhC,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,cAWhC,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,
|
|
1
|
+
{"version":3,"file":"defaultConfigSchema.d.ts","sourceRoot":"","sources":["../src/defaultConfigSchema.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAE3D,eAAO,MAAM,kBAAkB,EAAE,cAiBhC,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,cAWhC,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,cAwB3B,CAAC"}
|
|
@@ -56,8 +56,9 @@ export const shelly_config = {
|
|
|
56
56
|
username: '',
|
|
57
57
|
password: '',
|
|
58
58
|
exposeSwitch: 'switch',
|
|
59
|
-
exposeInput: '
|
|
60
|
-
|
|
59
|
+
exposeInput: 'momentary',
|
|
60
|
+
exposeInputEvent: 'momentary',
|
|
61
|
+
exposePowerMeter: 'disabled',
|
|
61
62
|
blackList: [],
|
|
62
63
|
whiteList: [],
|
|
63
64
|
deviceIp: {},
|
|
@@ -65,8 +66,13 @@ export const shelly_config = {
|
|
|
65
66
|
enableStorageDiscover: true,
|
|
66
67
|
resetStorageDiscover: false,
|
|
67
68
|
enableConfigDiscover: false,
|
|
68
|
-
enableBleDiscover:
|
|
69
|
+
enableBleDiscover: true,
|
|
70
|
+
failsafeCount: 0,
|
|
71
|
+
postfix: '',
|
|
69
72
|
debug: false,
|
|
73
|
+
debugMdns: false,
|
|
74
|
+
debugCoap: false,
|
|
75
|
+
debugWs: false,
|
|
70
76
|
unregisterOnShutdown: false,
|
|
71
77
|
};
|
|
72
78
|
//# sourceMappingURL=defaultConfigSchema.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"defaultConfigSchema.js","sourceRoot":"","sources":["../src/defaultConfigSchema.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAIH,MAAM,CAAC,MAAM,kBAAkB,GAAmB;IAChD,IAAI,EAAE,0BAA0B;IAChC,IAAI,EAAE,iBAAiB;IACvB,IAAI,EAAE,WAAW;IACjB,QAAQ,EAAE,EAAE;IACZ,QAAQ,EAAE,EAAE;IACZ,IAAI,EAAE,IAAI;IACV,KAAK,EAAE,aAAa;IACpB,SAAS,EAAE,EAAE;IACb,SAAS,EAAE,EAAE;IACb,UAAU,EAAE,EAAE;IACd,SAAS,EAAE,EAAE;IACb,UAAU,EAAE,EAAE;IACd,gBAAgB,EAAE,EAAE;IACpB,sBAAsB,EAAE,EAAE;IAC1B,KAAK,EAAE,KAAK;IACZ,oBAAoB,EAAE,KAAK;CAC5B,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAmB;IAChD,IAAI,EAAE,2BAA2B;IACjC,IAAI,EAAE,iBAAiB;IACvB,QAAQ,EAAE,EAAE;IACZ,QAAQ,EAAE,EAAE;IACZ,OAAO,EAAE,cAAc;IACvB,SAAS,EAAE,EAAE;IACb,SAAS,EAAE,EAAE;IACb,gBAAgB,EAAE,EAAE;IACpB,KAAK,EAAE,KAAK;IACZ,oBAAoB,EAAE,KAAK;CAC5B,CAAC;AAEF,MAAM,CAAC,MAAM,aAAa,GAAmB;IAC3C,IAAI,EAAE,qBAAqB;IAC3B,IAAI,EAAE,iBAAiB;IACvB,QAAQ,EAAE,EAAE;IACZ,QAAQ,EAAE,EAAE;IACZ,YAAY,EAAE,QAAQ;IACtB,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"defaultConfigSchema.js","sourceRoot":"","sources":["../src/defaultConfigSchema.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAIH,MAAM,CAAC,MAAM,kBAAkB,GAAmB;IAChD,IAAI,EAAE,0BAA0B;IAChC,IAAI,EAAE,iBAAiB;IACvB,IAAI,EAAE,WAAW;IACjB,QAAQ,EAAE,EAAE;IACZ,QAAQ,EAAE,EAAE;IACZ,IAAI,EAAE,IAAI;IACV,KAAK,EAAE,aAAa;IACpB,SAAS,EAAE,EAAE;IACb,SAAS,EAAE,EAAE;IACb,UAAU,EAAE,EAAE;IACd,SAAS,EAAE,EAAE;IACb,UAAU,EAAE,EAAE;IACd,gBAAgB,EAAE,EAAE;IACpB,sBAAsB,EAAE,EAAE;IAC1B,KAAK,EAAE,KAAK;IACZ,oBAAoB,EAAE,KAAK;CAC5B,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAmB;IAChD,IAAI,EAAE,2BAA2B;IACjC,IAAI,EAAE,iBAAiB;IACvB,QAAQ,EAAE,EAAE;IACZ,QAAQ,EAAE,EAAE;IACZ,OAAO,EAAE,cAAc;IACvB,SAAS,EAAE,EAAE;IACb,SAAS,EAAE,EAAE;IACb,gBAAgB,EAAE,EAAE;IACpB,KAAK,EAAE,KAAK;IACZ,oBAAoB,EAAE,KAAK;CAC5B,CAAC;AAEF,MAAM,CAAC,MAAM,aAAa,GAAmB;IAC3C,IAAI,EAAE,qBAAqB;IAC3B,IAAI,EAAE,iBAAiB;IACvB,QAAQ,EAAE,EAAE;IACZ,QAAQ,EAAE,EAAE;IACZ,YAAY,EAAE,QAAQ;IACtB,WAAW,EAAE,WAAW;IACxB,gBAAgB,EAAE,WAAW;IAC7B,gBAAgB,EAAE,UAAU;IAC5B,SAAS,EAAE,EAAE;IACb,SAAS,EAAE,EAAE;IACb,QAAQ,EAAE,EAAE;IACZ,kBAAkB,EAAE,IAAI;IACxB,qBAAqB,EAAE,IAAI;IAC3B,oBAAoB,EAAE,KAAK;IAC3B,oBAAoB,EAAE,KAAK;IAC3B,iBAAiB,EAAE,IAAI;IACvB,aAAa,EAAE,CAAC;IAChB,OAAO,EAAE,EAAE;IACX,KAAK,EAAE,KAAK;IACZ,SAAS,EAAE,KAAK;IAChB,SAAS,EAAE,KAAK;IAChB,OAAO,EAAE,KAAK;IACd,oBAAoB,EAAE,KAAK;CAC5B,CAAC"}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"files": {
|
|
3
3
|
"main.css": "./static/css/main.1cf003ae.css",
|
|
4
|
-
"main.js": "./static/js/main.
|
|
4
|
+
"main.js": "./static/js/main.96d6324b.js",
|
|
5
5
|
"static/js/453.abd36b29.chunk.js": "./static/js/453.abd36b29.chunk.js",
|
|
6
6
|
"index.html": "./index.html",
|
|
7
7
|
"main.1cf003ae.css.map": "./static/css/main.1cf003ae.css.map",
|
|
8
|
-
"main.
|
|
8
|
+
"main.96d6324b.js.map": "./static/js/main.96d6324b.js.map",
|
|
9
9
|
"453.abd36b29.chunk.js.map": "./static/js/453.abd36b29.chunk.js.map"
|
|
10
10
|
},
|
|
11
11
|
"entrypoints": [
|
|
12
12
|
"static/css/main.1cf003ae.css",
|
|
13
|
-
"static/js/main.
|
|
13
|
+
"static/js/main.96d6324b.js"
|
|
14
14
|
]
|
|
15
15
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="utf-8"/><base href="./"><link rel="icon" href="./matterbridge 32x32.png"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><title>Matterbridge</title><link rel="manifest" href="./manifest.json"/><script defer="defer" src="./static/js/main.
|
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><base href="./"><link rel="icon" href="./matterbridge 32x32.png"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><title>Matterbridge</title><link rel="manifest" href="./manifest.json"/><script defer="defer" src="./static/js/main.96d6324b.js"></script><link href="./static/css/main.1cf003ae.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
|