Skip to content

v0.2.0

Choose a tag to compare

@MinCrohn MinCrohn released this 12 Jun 10:17
· 107 commits to main since this release

馃挜 Breaking Changes

  • The asset option in the init() method has been renamed to assets, and its data type has been changed from an Object to an Array. This change provides greater flexibility in asset configuration. Please update your init() method calls accordingly.

    Before:

    patchmap.init(element, {
      asset: {
        /* ... asset options ... */
      }
    });

    After:

    patchmap.init(element, {
      assets: [ // Renamed from 'asset' and changed to an Array
        /* ... asset options ... */
      ]
    });

What's Changed

  • docs: include CDN information and links to examples (#101)
  • chore: fix bug report issue template (#102)
  • fix: clear animations on destroy call (#104)
  • fix: enable theme colors for relations (#108)
  • feat: support multiple canvas instances (#109)
  • fix: remove data reference in draw method call (#105)

Full Changelog: v0.1.9...v0.2.0