Skip to content

Releases: Tom-Hirschberger/MMM-ValuesByNotification

Release 0.1.5

13 Nov 21:15
d56eca1
Compare
Choose a tag to compare

This is release 0.1.5 with the following changes:

  • bumped version of jsonpath-plus library to 10.1.0

Release 0.1.4

08 Nov 06:07
0663123
Compare
Choose a tag to compare

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

17 Oct 19:19
75c4d52
Compare
Choose a tag to compare

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 not cjs to fix JSONPath

Release 0.1.2

16 Oct 13:05
358e069
Compare
Choose a tag to compare

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

28 Aug 11:36
Compare
Choose a tag to compare

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

27 Aug 11:24
8461b74
Compare
Choose a tag to compare

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

21 Mar 18:34
7d246b0
Compare
Choose a tag to compare

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

22 Feb 17:32
722ed0e
Compare
Choose a tag to compare

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 by naValue

Release 0.0.8

09 Feb 18:22
7909f34
Compare
Choose a tag to compare

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

08 Feb 17:56
48729e7
Compare
Choose a tag to compare

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 if naValue is used
  • added support to override valuePositions by threshold configurations (will override valueNaPositions, too!)