Skip to content

Latest commit

 

History

History
90 lines (68 loc) · 3.01 KB

CHANGELOG.md

File metadata and controls

90 lines (68 loc) · 3.01 KB

1.5.0 (2017-04-17)

  • improve TypeScript typings (poly2tri.d.ts) : full JSDoc, type options (SweepContextOptions), minor fixes
  • development : add benchmarks for custom points {X,Y} in addition to Point

1.4.1 (2017-03-20)

  • keep all dist/ files in npm package, including UMD version

1.4.0 (2017-03-20)

  • TypeScript types (poly2tri.d.ts) initialy provided by @ElemarJR are now directly bundled in the NPM package (no need to install separately from DefinitelyTyped or @types)
  • reduce size of npm package
  • fix old google code URLs in package.json
  • upgrade build and tests dependencies

1.3.5 (2014-05-05)

  • new SweepContext.addHoles method, to add multiple holes with one call
  • bower.json now points to the un-minified source, as per the bower.json spec. Reported by Matt DesLauriers @mattdesl
  • better jsdoc annotations
  • add additional test cases and improve unit tests performances

1.3.4 (2014-04-25)

  • performance improvement. Replace all Math.atan2 calls by dot vectors computations, producing about 5 to 10% performance improvement on the benchmark. Idea by Andrey Diduh
  • add additional test cases

1.3.3 (2014-01-26)

  • upgrade Browserify. As a side effect, the generated bundle dist/poly2tri.js is more compatible with the buggy ExtendScript parser (who chokes on nested ternary operators ?:?:).
  • internal : improve benchmark code to track performances

1.3.2 (2014-01-11)

  • provide a minified build in dist/poly2tri.min.js, using UglifyJS 2.
  • add a poly2tri.VERSION string
  • merge some code updates from C++ version
  • add more tests
  • improve code modularity

1.3.1 (2013-12-24)

  • add Pan and Zoom capability to the demo, using KineticJS.
  • display pointer position in the demo
  • internal:
    • use bower to manage front-end dependencies for the demo
    • use Benchmark.js to track performances between releases

1.3.0 (2013-12-15)

  • Browserify is used to generate a UMD (universal module definition) bundle, compatible with the various module systems.
  • the released code for browsers is now in the dist/ directory (the src/ directory contains the source code for Node.js).
  • add a Bower package
  • move repository from Google Code to GitHub
  • remove deprecated Namespace.js support

1.2.7 (2013-11-25)

  • add additional check from Java version for intersecting constraints (issue #88)
  • more test cases

1.2.6 (2013-11-24)