Skip to content

Commit

Permalink
Update 26.01.25 #2
Browse files Browse the repository at this point in the history
  • Loading branch information
Apollon77 committed Jan 26, 2025
1 parent c6a65d6 commit 4f13a43
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ With the ioBroker Matter Adapter, it is possible to map the following use cases:
### __WORK IN PROGRESS__
* (@Apollon77) Enhanced error and invalid devices display for UI
* (@Apollon77) Fixed Button Press Controller support
* (@Apollon77) Added support to also select folders when adding devices
* (@Apollon77) Fixed Illuminance State type min/max

### 0.4.8 (2025-01-26)
* (@Apollon77) Acknowledges Power states also on SET states
Expand Down
2 changes: 1 addition & 1 deletion src-admin/src/Tabs/Bridges.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ export class Bridges extends BridgesAndDevices<BridgesProps, BridgesState> {
<SelectID
imagePrefix="../.."
dialogName="matter"
types={addDeviceDialog.detectionType === 'device' ? ['device', 'channel'] : ['state']}
types={addDeviceDialog.detectionType === 'device' ? ['device', 'channel', 'folder'] : ['state']}
themeType={this.props.themeType}
socket={this.props.socket}
theme={this.props.theme}
Expand Down
2 changes: 1 addition & 1 deletion src-admin/src/Tabs/Devices.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ class Devices extends BridgesAndDevices<DevicesProps, DevicesState> {
return (
<SelectID
imagePrefix="../.."
types={addDeviceDialog.detectionType === 'device' ? ['device', 'channel'] : ['state']}
types={addDeviceDialog.detectionType === 'device' ? ['device', 'channel', 'folder'] : ['state']}
dialogName="matter"
themeType={this.props.themeType}
socket={this.props.socket}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/devices/Illuminance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class Illuminance extends GenericDevice {
this.addDeviceStates([
{
name: 'ACTUAL',
valueType: ValueType.NumberPercent,
valueType: ValueType.Number,
accessType: StateAccessType.Read,
type: PropertyType.Brightness,
callback: state => (this.#getBrightnessState = state),
Expand Down

0 comments on commit 4f13a43

Please sign in to comment.