Skip to content

Releases: erohtar/Dasherr

v1.05.02

01 Jul 06:52
Compare
Choose a tag to compare
  • Updated to support latest version of Glances API

(All credit for this release goes to @LeeThompson. He pointed out the changes needed and communicated with Glances developer to make the needed compatibility change that allows Dasherr to continue using Glances)

v1.05.01

26 Aug 10:14
Compare
Choose a tag to compare
  • Fixed: Pressing save on alternate configuration pages saved that configuration over main config file

v1.05.00

19 Jan 20:12
Compare
Choose a tag to compare
  • Added support for image icons (local/web)
  • Internal check added to make sure submitted file to be saved is with .json extension, to prevent a security vulnerability (Thanks @beauknowstech)
  • Changed editor.js to editor_js.php

v1.04.02

12 Dec 13:15
Compare
Choose a tag to compare
  • FontAwesome Icons are set to fixed-width now
  • Online check request is made with connection: close option

v1.04.01

05 Dec 13:31
Compare
Choose a tag to compare
  • Fixed: CSS issue when all widgets are disabled

v1.04.00

03 Dec 16:12
3fc8f87
Compare
Choose a tag to compare
  • 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

v1.03.01

24 Nov 06:55
Compare
Choose a tag to compare
  • Fixed: Settings editor did not support alternate config files correctly

v1.03.00

22 Nov 14:24
427ba11
Compare
Choose a tag to compare
  • Added support for multiple alternate Dasherr configurations (Thanks @LeeThompson)
  • Added Dasherr's GitHub page link to configuration editor

v1.02.00

18 Nov 08:12
Compare
Choose a tag to compare
  • Added info Tooltips for Sections and Tiles (pls refer updated README.md for usage instructions)

v1.01.02

13 Nov 07:50
2178957
Compare
Choose a tag to compare
  • Added support for over-riding page's openTab setting on a per-tile level