matterbridge 3.2.7-dev-20250913-9d0d095 → 3.2.7-dev-20250914-f9e5ea7

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 CHANGED
@@ -8,7 +8,7 @@ If you like this project and find it useful, please consider giving it a star on
8
8
  <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
9
9
  </a>
10
10
 
11
- ## [3.2.7] - 2025-09-12
11
+ ## [3.2.7] - 2025-09-14
12
12
 
13
13
  ### Breaking Changes
14
14
 
@@ -668,6 +668,12 @@ export class MatterbridgeEndpoint extends Endpoint {
668
668
  return this;
669
669
  }
670
670
  async configureColorControlMode(colorMode) {
671
+ if (isValidNumber(colorMode, ColorControl.ColorMode.CurrentHueAndCurrentSaturation, ColorControl.ColorMode.ColorTemperatureMireds)) {
672
+ await this.setAttribute(ColorControl.Cluster.id, 'colorMode', colorMode, this.log);
673
+ await this.setAttribute(ColorControl.Cluster.id, 'enhancedColorMode', colorMode, this.log);
674
+ }
675
+ }
676
+ async configureEnhancedColorControlMode(colorMode) {
671
677
  if (isValidNumber(colorMode, ColorControl.EnhancedColorMode.CurrentHueAndCurrentSaturation, ColorControl.EnhancedColorMode.EnhancedCurrentHueAndCurrentSaturation)) {
672
678
  await this.setAttribute(ColorControl.Cluster.id, 'colorMode', colorMode === ColorControl.EnhancedColorMode.EnhancedCurrentHueAndCurrentSaturation ? ColorControl.ColorMode.CurrentHueAndCurrentSaturation : colorMode, this.log);
673
679
  await this.setAttribute(ColorControl.Cluster.id, 'enhancedColorMode', colorMode, this.log);
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "matterbridge",
3
- "version": "3.2.7-dev-20250913-9d0d095",
3
+ "version": "3.2.7-dev-20250914-f9e5ea7",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "matterbridge",
9
- "version": "3.2.7-dev-20250913-9d0d095",
9
+ "version": "3.2.7-dev-20250914-f9e5ea7",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "@matter/main": "0.15.3",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge",
3
- "version": "3.2.7-dev-20250913-9d0d095",
3
+ "version": "3.2.7-dev-20250914-f9e5ea7",
4
4
  "description": "Matterbridge plugin manager for Matter",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",