Skip to content

v1.3.0

Compare
Choose a tag to compare
@jjonescz jjonescz released this 22 Dec 09:11
· 88 commits to master since this release
35dfd09

🚀 Features

  • Current word is passed to colorizer (#20). ⚠️ This is a breaking change if you implement IColorizer yourself.
    • There's also new SpecificColorizer. It can be used as follows (see README for details):
      var colorizer = new SpecificColorizer(
         new Dictionary<string, Color>
         {
             ["KnowledgePicker"] = Color.FromArgb(0x0f3057),
             ["WordCloud"] = Color.FromArgb(0xe25a5a)
         },
         fallback: new RandomColorizer()); // fallback argument is optional

🐛 Bug fixes

  • Fixed cloned graphic engine not being disposed properly.