LogicMachine Forum
Visu updates / changelog (20260710 - beta) - Printable Version

+- LogicMachine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Visu (https://forum.logicmachine.net/forumdisplay.php?fid=24)
+--- Thread: Visu updates / changelog (20260710 - beta) (/showthread.php?tid=6282)



Visu updates / changelog (20260710 - beta) - admin - 29.01.2026

Version 20260128 (stable)

Allow closing widget pop-up window by clicking outside of it

Add short/long option to movement widget (emulates KNX shutter actuator behavior)

Fix "no shape" icon display consistency between different widgets

Rework additional icon range matching logic:
- Value matching rules: Min ≤ Value ≤ Max or Value = Min if Max is not set
- Matching is be done in reverse order. If ranges overlap (previous max = next min) then the latter will be used

Custom JS:
- Add Visu active-plan-change event
- Add widget.listen(ga, cb) method



Widget wishlist: https://forum.logicmachine.net/showthread.php?tid=5875

Feature requests: https://forum.logicmachine.net/showthread.php?tid=5692

Bug reports: https://forum.logicmachine.net/showthread.php?tid=5892

Custom JS reference: https://kb.logicmachine.net/misc/visu/

Video tutorials: https://forum.logicmachine.net/showthread.php?tid=6238

Manuals: https://logicmachine.net/manuals/visu-20251120.pdf


RE: Visu updates / changelog - admin - 06.02.2026

Version 20260205 (beta)

Due to many changes this version is first published as a package and is not available in the app store.
Cloud Visu won't be updated until a new stable version is published.

Most notable changes:

- Fix for older browsers

- Plan "Show" option is ignored if View mode is either "Plan view only" or "Tile view only"

- Page zoom via touch pinch can be disabled in Global appearance settings

- Value select widget selection list can be configured to always open in a pop-up window

- Tile view Category widget can be duplicated (only the Category widget itself, without any child widgets)

- "Invert" option added to Switch widget

- Custom SVG icons can now be colorized by enabling "Apply color to custom SVG icons" in Global appearance settings

For this to work, SVG icon must be prepared accordingly:

1. Add id="root" to the <svg> element
2. Add fill="currentColor" to the <svg> element
3. Use viewBox for sizing, do not use width and height

SVG icons without these modifications won't be displayed.

Example icon attached.


RE: Visu updates / changelog (20260128 - stable, 20260205 - beta) - admin - 19.03.2026

Version 20260319 (beta)

Most notable changes:

- Tile view scaling has been reworked, new options added to general settings

- Circular slider active zone has been reduced to minimize accidental value changes

- Circular light widget now displays a circular slider in a pop-up window instead of a regular slider

- Fixed first plan display in user mode when either tile or plan mode only is selected


RE: Visu updates / changelog (20260128 - stable, 20260319 - beta) - admin - 23.03.2026

Version 20260323 (stable / old beta)

This version fixes a bug when plan links are not visible if global view mode is set to either Plan or Tile view only.


RE: Visu updates / changelog (20260323 - stable / 20260417 - beta) - admin - 21.04.2026

Version 20260417 (beta)

Most notable changes:

- Added new Air conditioner widget

- Added "Invert" option to Toggle widget

- Added "Stop on release" option to Movement widget


RE: Visu updates / changelog (20260323 - stable / 20260514 - beta) - Daniel - 15.05.2026

Version 20260514 (beta)


Most notable changes: 

- New icons added
- Image size limit of 2MB
- Fix for Additional icons/values on Movement widget
- Fix for object appearance on custom widget.


RE: Visu updates / changelog (20260604 - stable) - admin - 04.06.2026

Version 20260604 (stable)

Bug fixes:
- Fix thermostat widget mode selection always showing all mode options
- Fix temperature status units for air conditioner / thermostat widgets
- Fix air conditioner status icon display when a custom icon is used


RE: Visu updates / changelog (20260618 - beta) - Daniel - 19.06.2026

Version 20260618 (beta)

! Features from the beta version will not be available in the cloud until it becomes a stable version ! 

Most notable changes: 

- New KNX scene widget - works as typical KNX scene where on short press the scene is recalled and on long press the learn scene command is sent, there are also optional notifications. 
 
- Universal Short/long press widget - allows of fully configured actions for short and long press. 
Short press actions:
   

Long press actions:
   


RE: Visu updates / changelog (20260618 - beta) - Daniel - 13.07.2026

Version 20260710 (beta)

! Features from the beta version will not be available in the cloud until it becomes a stable version ! 

Most notable changes: 

- Local apps can be modified when used in frame by JavaScript. 
Example code:
Code:
const widgetId = 5 const css = ` body { background: pink } ` Visu.on('widget-ready', widgetId, ({ widget }) => {   const el = widget.getEl()   if (!el) {     return   }     const frame = el.querySelector('iframe')   if (!frame) {     return   }   frame.addEventListener('load', () => {     const doc = frame.contentDocument     const style = doc.createElement('style')     doc.head.appendChild(style)     style.appendChild(doc.createTextNode(css))   }) })
Modify the widget ID and CSS part as needed.