Skip to content

v1.04.00

Compare
Choose a tag to compare
@erohtar erohtar released this 03 Dec 16:12
· 19 commits to main since this release
3fc8f87
  • Widgets in settings are now an array, and supports multiple instances of a single type of widget eg. Multiple Glances

(Caution!) The above update is incompatible with past releases and needs you to make a small change in your settings.json
Please change:

"widgets": {
	"glances": {
		"url": "http://homeserver:61208/",
		"refreshMs": 5000
	}
},

To:

"widgets": [
	{
		"type": "glances",
		"settings": {
			"url": "http://homeserver:61208/",
			"refreshMs": 5000
		}
	}
],
  • Widget can now have Names/Titles (Optional)
  • Moved GitHub project link/icon from editor to dashboard page