You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGES.md 1.8 KiB

3 vuotta sitten
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. # StackBlur CHANGES
  2. ## 2.2.0
  3. - Build fix: Target 100% coverage
  4. - Refactoring (minor): `x + x` -> `2 * x`
  5. - npm Add prepublishOnly script for yarn
  6. - npm: Update devDeps (no impact on build)
  7. ## 2.1.0
  8. - Enhancement: Throw descriptive `TypeError` rather than silently returning
  9. upon `processCanvasRGB`/`processCanvasRGBA` methods not supplying proper
  10. canvas (dependent methods will throw anyways, so shouldn't be a
  11. breaking change)
  12. - Enhancement: Update TypeScript definition (@Jose Peleteiro)
  13. ## 2.0.0
  14. - Breaking change: Remove now deprecated Bower
  15. - Fix: Duck type with image or canvas in place of `instanceof` check
  16. (and a broken one)
  17. - Enhancement: Add JSDoc comments
  18. - Linting (ESLint): Add ESLint with "standard" base
  19. - Linting (Markdown): Add `.remarkrc`
  20. - Linting (package.json): Add recommended properties
  21. - Linting (HTML): Add empty favicon to suppress console
  22. - License: Change MIT license file name to reflect license type (MIT)
  23. - Docs: Move changelog to own file: `CHANGES.md`
  24. - Demo: Move demo to own directory (with static server to avoid Chrome
  25. security problems reaching out of folder)
  26. - Demo: Move JS and CSS to separate files for easier linting/examination
  27. - Build: Move from Grunt to Rollup, supporting ES6 Modules distribution
  28. as well as UMD
  29. - Build: Add npm-recommended `package-lock.json`
  30. - npm: Add start, eslint, rollup, open-docs, docs scripts
  31. - npm: Add `module` for ES6 module discovery and switch `main` to point
  32. to `dist`
  33. ## 1.4.1
  34. - Moves `grunt-cli` to `devDependencies` (#23)
  35. ## 1.4.0
  36. - Allows the lib to be used with node-canvas
  37. ## 1.3.0
  38. - TypeScript typings added
  39. ## 1.2.1
  40. - Includes built files in the NPM packgage
  41. ## 1.2.0
  42. - Remove alerts and obsolete `netscape.security.PrivilegeManager`
  43. ## 1.1.0
  44. - Allow blur to be applied to `ImageData` directly (thanks @WebSeed)
  45. ## 1.0.0
  46. - First Release