spacemanspiff2007

Results 81 issues of spacemanspiff2007
trafficstars

There is a difference how small values are reported between plain number items and UoM number items: Normal item ````json { "type": "ItemStateUpdatedEvent", "topic": "openhab/items/NumGAChpjf/stateupdated", "payload": {"type": "Decimal", "value": "0.000000000000000001"}...

bug

Currently the `category` field of an item is used to configure the `icon` of the item. The field should be renamed to "icon" to better reflect what is actually happening....

enhancement

Similar to #3605 Steps to reproduce: Create a fresh installation of 4.3.3 and install mapdb persistence. Observe that no standard persistence service is configured: ![Image](https://github.com/user-attachments/assets/98b941d0-263d-40e3-b6f6-b8e6b890aa04) Create an item and post...

bug

During the discussion of #4550 @kaikreuzer argued that using RegEx is not typically used in "the web". However openHAB API users already know how to use a RegexFilter when requesting...

bug

Create item ```` Number ExpireItem {expire="asdf,OFF" } ```` Observe no warning/error in log: ```` [INFO ] [el.core.internal.ModelRepositoryImpl] - Loading model 'items.items' ```` ![Image](https://github.com/user-attachments/assets/03c82217-fa06-4540-af2c-c0912f193883)

bug

Send this message but replace ``AAAAAA`` in payload with 129_702 x ``A`` and create proper json-in-json. (I can provide the proper message if necessary but imho it's trivial to create...

bug

Send this message over websockets (forget json in json for payload) ````json { "topic":"openhab/websocket/filter/type", "source":"HABApp", "eventId":"WebsocketTypeFilterMsg", "type":"WebSocketEvent", "payload":["ChannelDescriptionChangedEvent","ChannelTriggeredEvent","ConfigStatusInfoEvent","FirmwareStatusInfoEvent","GroupItemStateChangedEvent","GroupStateUpdatedEvent","ItemAddedEvent","ItemCommandEvent","ItemRemovedEvent","ItemStateChangedEvent","ItemStateEvent","ItemStatePredictedEvent","ItemStateUpdatedEvent","ItemUpdatedEvent","ThingAddedEvent","ThingRemovedEvent","ThingStatusInfoChangedEvent","ThingStatusInfoEvent","ThingUpdatedEvent","WebSocketEvent"] ```` Receive this: ````json { "type":"WebSocketEvent", "topic":"openhab/websocket/response/failed", "payload":"Deserialization error: java.lang.IllegalStateException: Expected a...

bug

I'd like to get all events except the `ItemStateEvent` (because with OH4 the `ItemStateUpdateEvent` is available). Currently the websocket filter works like a whitelist which means I have to know...

enhancement

When a device sends a message with retain=True HABApp will automatically create an `MqttItem` for that Topic. However if the user wants a `MqttPairItem` this will raise an Error in...