Page 1 of 1

Dashticz Beta 2.5.6 2.5.7

Posted: Friday 08 March 2019 23:49
by Lokonli
The combined release notes for 2.5.6 and 2.5.7

Graph improvements
The following parameters can be added to a graph block definition:
  • width: The width of the graph block
  • title: The title of the graph block
  • graphTypes: Array of values you want to show in the graph.
    ['te']: Temperature
    ['hu']: Humidity
    ['ba']: Barometer
    ['uvi']
    ['lux']
    ['lux_avg']
    ['gu', 'sp']: wind guts and speed
    ['mm']
    ['v_max']
    ['v2']
    ['mm']
    ['eu']
    ['u']
    ['u_max']

    You can combine the values in one graph. Example:
    graphTypes: ['te', 'hu']
So now you can do:

Code: Select all

blocks['graph_idx'] = {
    title: 'Custom graph title',
    width: 6,
    graphTypes: ['te', 'hu']
};
Additional mechanism to prevent caching of images in a button
With the parameter forcerefresh you can control the caching-prevention mechanism of the images for a button.
  • forcerefresh:0
    Normal caching behavior (=default)
  • forcerefresh:1 (or true)
    Prevent caching by adding t=<timestamp> parameter to the url. Not all webservers will handle this correctly
  • forcerefresh:2
    The image is loaded via php, preventing caching. (php must be enabled on your Dashticz server)
Change background color for active 'slide' button
If you use a button to slide to specific screen (menu button), then the background of that button will change if that specific screen is active.
You can adapt the formatting of the selected button with the class .selectedbutton in your custom.css
Example:

Code: Select all

.selectedbutton {
	background-color: #cba !important;
}
Flash on change
If you have defined the flash parameter for a device-block, then the block will flash on change.
The formatting of the flash can be modified via the class .blockchange in your custom.css

The parameter config['blink_color'] is (temporarily?) not used anymore.
(reason: the apply background mechanism didn't work for non-touch devices)

Additional changes
  • Improved layout of blinds
  • Update of Romanian language
  • Update to FontAwesome 5.7.2
  • Fix for some RFX meters (incl. water meter)

Re: Dashticz Beta 2.5.6 2.5.7

Posted: Saturday 09 March 2019 13:19
by Phantom
Thanks for the great work again :)

Re: Dashticz Beta 2.5.6 2.5.7

Posted: Saturday 09 March 2019 13:53
by Minglarn
Thumbs Up!