Skip to content

Latest commit

 

History

History
206 lines (129 loc) · 8.66 KB

CHANGELOG.md

File metadata and controls

206 lines (129 loc) · 8.66 KB

Change Log

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

Note: Unlisted patch versions only involve non-code or otherwise excluded changes and/or version bumps of transitive dependencies.

3.0.1 (2024-05-09)

♻️ Refactoring

  • minor update draw() arc handling (e82077e)

3.0.0 (2024-05-08)

🛑 Breaking changes

  • fix #69 add elliptic arc path segment support, rename circular arc segments (7f82cb2)
  • BREAKING CHANGE: add elliptic arc path segment support, rename circular arc segments
    • update path() arc segment handling
      • use standard A and a path segment types for SVG-compatible elliptic arc segments
      • use R and r for canvas-only circular arc segments
    • update deps

⏱ Performance improvements

  • update rect(), use native rounded rect drawing (5540510)

2.5.36 (2024-04-20)

♻️ Refactoring

2.5.17 (2024-02-22)

♻️ Refactoring

  • update object destructuring in all pkgs & examples (f36aeb0)

2.5.14 (2024-02-19)

🩹 Bug fixes

  • fix #448, pass vertex layout opts to packedPolyline()/packedPolygon() (eb2bdc0)
    • update args for packedPolyline()/packedPolygon()
    • update draw() delegation call sites

2.5.2 (2023-12-19)

🩹 Bug fixes

  • fix rounded rect attrib handling (ee79d01)

2.5.0 (2023-12-18)

🚀 Features

  • fix #433, support rounded rects via r attrib (573245e)
    • update draw() to update rect handling

2.4.6 (2023-11-09)

♻️ Refactoring

  • update all tests (packages A-S) (e3085e4)

2.4.0 (2023-10-23)

🚀 Features

  • add/update packed shape support (14ce2f8)
    • add packedPolyline() / packedPolygon() fns
    • update draw() to add support for new shape types

2.3.24 (2023-10-11)

🩹 Bug fixes

  • fix "ellipse" shape handling (off-by-one error) (d1985c4)
    • update draw() to include last (CCW flag) shape arg
    • also related to #418
  • update circular arc handling in draw() (18173c5)
    • actually use CCW shape arg
    • add issue references for upcoming fixes

2.3.0 (2023-04-08)

🚀 Features

  • add support for __clear ctrl attrib (2f3de82)

2.2.1 (2023-02-05)

🩹 Bug fixes

  • add null check for __skip attrib (416b7bb)

2.2.0 (2023-01-10)

🚀 Features

  • add __background attrib support (a33a58d)
    • update __mergeState() to fill bg if attrib given
    • refactor attrib handling in main draw() fn

2.1.9 (2022-04-07)

♻️ Refactoring

  • replace deprecated .substr() w/ .substring() (0710509)

2.1.0 (2021-11-17)

🚀 Features

  • Using workspaces for local tools (bf7a404) Improving the overall build ergonomics
    • introduced a tools workspaces
    • imported it in all needed packages/examples
    • inclusive project root

♻️ Refactoring

  • testrunner to binary (4ebbbb2) this commit reverts (partly) changes made in: ef346d7a8753590dc9094108a3d861a8dbd5dd2c overall purpose is better testament ergonomics: instead of having to pass NODE_OPTIONS with every invocation having a binary to handle this for us.

2.0.10 (2021-11-10)

♻️ Refactoring

  • update all countdown loops (a5f374b)

2.0.1 (2021-10-13)

♻️ Refactoring

  • update imports in all pkgs (5fa2b6f)
    • add .js suffix for all relative imports
  • update imports in all tests/pkgs (effd591)

2.0.0 (2021-10-12)

🛑 Breaking changes

  • major update of ALL pkgs (export maps, ESM only) (0d1d6ea)
  • BREAKING CHANGE: discontinue CommonJS & UMD versions
    • only ESM modules will be published from now on
    • CJS obsolete due to ESM support in recent versions of node:
      • i.e. launch NodeJS via:
      • node --experimental-specifier-resolution=node --experimental-repl-await
      • in the node REPL use await import(...) instead of require()
    • UMD obsolete due to widespread browser support for ESM Also:
    • normalize/restructure/reorg all package.json files
    • cleanup all build scripts, remove obsolete
    • switch from mocha to @thi.ng/testament for all tests

♻️ Refactoring

1.2.0 (2021-04-03)

🚀 Features

  • add IToImageData support (7cc4709)
    • update image() to accept ImageData & IToImageData
    • add @thi.ng/pixel as dev dependency

1.1.21 (2021-02-20)

♻️ Refactoring

  • update resolveColor() (66e9a40)
  • update color attrib resolution/conversion (a9ca280)

1.1.0 (2020-07-17)

🚀 Features

1.0.0 (2020-06-05)

🛑 Breaking changes

🚀 Features

  • add IToHiccup support in draw (a59bb09)