Update instructions
I've removed 'custom/custom.css' and 'custom/custom.js' from the Dashticz repository, because these are user configuration files, and should not be part of the Dashticz repository.
However, that means this update cannot be installed with git pull directly, because then git will report an error if you have modified one or both files.
To solve this, first make a backup of these two files:
Code: Select all
mv custom/custom.js custom/custom.js.bak
mv custom/custom.css custom/custom.css.bak
Code: Select all
mv custom_2/custom.js custom_2/custom.js.bak
mv custom_2/custom.css custom_2/custom.css.bak
Then update to the latest version as usual:
Code: Select all
git pull
Code: Select all
mv custom/custom.js.bak custom/custom.js
mv custom/custom.css.bak custom/custom.css
Code: Select all
mv custom_2/custom.js.bak custom_2/custom.js
mv custom_2/custom.css.bak custom_2/custom.css
You only have to do this once: Next updates can be installed with a normal 'git pull'
Enhancements
- Calendar: New block parameter 'emptytext' to define the text to show where there are no calendar appointments. Only works for the new calendar block.
- Custom graph: aggregate parameter can be an array to specify different aggregation methods per data element.
- Graph: New parameters 'axisRight' to show the first Y axis on the right (default is 'false'), and 'axisAlternating' to show Y axes alternating left/right (default: 'true').
- Support for device (sub)type Managed Counter
- Flipclock: New block parameters showSeconds (true or false) and clockFace (12 or 24)
- Security panel: New block parameters ( decorate, headerText, footerText, scale).
- Graph: Fix for data acquistion day graph gas device.
- Colorpicker: Some fixes in warm white/cold white color setting.
- Improved styling of modal popup windows.
https://dashticz.readthedocs.io/en/beta ... notes.html