Releases: Tom-Hirschberger/MMM-ValuesByNotification
Releases · Tom-Hirschberger/MMM-ValuesByNotification
Release 0.1.5
This is release 0.1.5 with the following changes:
- bumped version of jsonpath-plus library to 10.1.0
Release 0.1.4
This is release 0.1.4 with the following changes:
- it is possible to set the
reuseCount
on group level now
Release 0.1.3
This is release 0.1.3 with the following changes:
- added a postinstall script which creates a copy of the imported JSONPath library cause MagicMirror only imports files with ending
js
and notcjs
to fix JSONPath
Release 0.1.2
This is release 0.1.2 with the following changes:
- bumped jsonpath-plus library to version 10.0.1
- do not log every received notification anymore
- be more verbose if debug is enabled and the value format fails
Release 0.1.1
This is release 0.1.1 with the following changes:
- Reverted the jsonpath-plus dependency upgrade (used version is 5.1.0 now) cause version 7.2.0 only worked with the newest MagicMirror version (2.24.0)
- fixed a bug which caused empty values to be converted to html and causing a exception in this process
- introduce a
debug
config flag which causes some more information being printed to console if enabled
Release 0.1.0
This is release 0.1.0 with the following changes:
- Each time a value is reused the values html elements get two classes added. The one configured with the new config option
reusedClass
(default: "reused") and the config option prefixed by a "-" and the count of reuses. - Updated the jsonpath-plus dependency to version 7.2.0. As this required a change to the import of the module this is a breaking change.
Make sure to run npm install
during the update to this version!
Release 0.0.10
This is release 0.0.10 with the following changes:
- Introducing a feature to define own functions to transform the values (
valueTransformers
). Added a example to values documentation - Changed the way titles, values and units are converted the html elements
- Added a new option called
unitSpace
to prefix the unit with a non-breakable space
Special thanks to @BKeyport for contribution
Release 0.0.9
This is release 0.0.9 with the following changes:
- fixed a bug which caused selected JSON values with value
0
being interpreted as not existing and replaced bynaValue
Release 0.0.8
This is release 0.0.8 with the following changes:
- fixed a bug which caused values not being formatted if values before format are not of type String
- fixed a bug which caused newline replacement called even if no
valueFormat
was set
Release 0.0.7
This is release 0.0.7 with the following changes:
- added new option
valueNaPositions
which defines the positions of title, value, unit and icon of the value elements ifnaValue
is used - added support to override
valuePositions
by threshold configurations (will overridevalueNaPositions
, too!)