Skip to content

Version 1.0.2

Latest
Compare
Choose a tag to compare
@Jopyth Jopyth released this 04 Dec 09:49
· 1 commit to master since this release

[1.0.2] - 2016-12-04

Changed

  • Configuration options:
    • start and end can be an array of timestamps now
    • if they are, multiple candles are created side by side, one for each element in both arrays (length of both arrays should match)
    • Example for four red candles, lightning up at each advent sunday (disable animation with enableAnimation: false, if the flicker does not look nice):
    {
        module: "MMM-Advent",
        position: "bottom_center",
        config: {
            marks: 0,
            candleColor: "#EE1111",
            start: ["2016-11-27 14:00:00", "2016-12-04 14:00:00", "2016-12-11 14:00:00", "2016-12-18 14:00:00"],
            end: ["2016-12-24 22:00:00", "2016-12-24 22:00:00", "2016-12-24 22:00:00", "2016-12-24 22:00:00"]
        }
    },