@riddix/hamh 2.1.0-alpha.624 → 2.1.0-alpha.626

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/README.md CHANGED
@@ -434,6 +434,7 @@ This project thrives thanks to the amazing community! Special thanks to everyone
434
434
  | [@omerfaruk-aran](https://github.com/omerfaruk-aran) | 🔧 **Network Debugging Expert** - Systematic mDNS/multicast root cause analysis for "No Response" issues ([#129](https://github.com/RiDDiX/home-assistant-matter-hub/issues/129)) |
435
435
  | [@gustavakerstrom](https://github.com/gustavakerstrom) | 🤖 **Code Contributor** - Template description display fix ([#215](https://github.com/RiDDiX/home-assistant-matter-hub/pull/215)) |
436
436
  | [@aetasoul](https://github.com/aetasoul) | 🤖 **Code Contributor** - Immediate force sync on startup to beat stale Alexa queues ([#282](https://github.com/RiDDiX/home-assistant-matter-hub/pull/282)) |
437
+ | [@Yllelder](https://github.com/Yllelder) | 🌐 **Translator** - Spanish translation ([#314](https://github.com/RiDDiX/home-assistant-matter-hub/pull/314)) |
437
438
 
438
439
  <details>
439
440
  <summary><strong>📋 Issue Tracker - All Contributors</strong> (click to expand)</summary>
@@ -173247,7 +173247,10 @@ var ColorControlServerBase = class extends FeaturedBase7 {
173247
173247
  const writingColorTemp = !skipColorTemp && newColorMode === ColorControl3.ColorMode.ColorTemperatureMireds;
173248
173248
  const shouldPublishColorMode = writingHueSat && newColorMode !== ColorControl3.ColorMode.ColorTemperatureMireds || writingColorTemp;
173249
173249
  applyPatchState(this.state, {
173250
- ...shouldPublishColorMode ? { colorMode: newColorMode } : {},
173250
+ ...shouldPublishColorMode ? {
173251
+ colorMode: newColorMode,
173252
+ enhancedColorMode: newColorMode
173253
+ } : {},
173251
173254
  ...writingHueSat ? {
173252
173255
  currentHue: hue,
173253
173256
  currentSaturation: saturation
@@ -173276,7 +173279,8 @@ var ColorControlServerBase = class extends FeaturedBase7 {
173276
173279
  this.applyTransition(action);
173277
173280
  applyPatchState(this.state, {
173278
173281
  colorTemperatureMireds: targetMireds,
173279
- colorMode: ColorControl3.ColorMode.ColorTemperatureMireds
173282
+ colorMode: ColorControl3.ColorMode.ColorTemperatureMireds,
173283
+ enhancedColorMode: ColorControl3.EnhancedColorMode.ColorTemperatureMireds
173280
173284
  });
173281
173285
  optimisticColorState.set(homeAssistant.entityId, {
173282
173286
  colorTemperatureMireds: targetMireds,
@@ -173314,7 +173318,8 @@ var ColorControlServerBase = class extends FeaturedBase7 {
173314
173318
  applyPatchState(this.state, {
173315
173319
  currentHue: targetHue,
173316
173320
  currentSaturation: targetSaturation,
173317
- colorMode: ColorControl3.ColorMode.CurrentHueAndCurrentSaturation
173321
+ colorMode: ColorControl3.ColorMode.CurrentHueAndCurrentSaturation,
173322
+ enhancedColorMode: ColorControl3.EnhancedColorMode.CurrentHueAndCurrentSaturation
173318
173323
  });
173319
173324
  optimisticColorState.set(homeAssistant.entityId, {
173320
173325
  currentHue: targetHue,