web 3d图形渲染器
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.

164 lines
4.0 KiB

  1. # Changelog
  2. All notable changes to this project will be documented in this file.
  3. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
  4. and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
  5. ## [1.0.11] - 2020-01-29
  6. ### Fixed
  7. - Fix tests in node.js v12+, #179.
  8. ## [1.0.10] - 2019-02-28
  9. ### Fixed
  10. - Fix minified version, #161.
  11. ## [1.0.9] - 2019-02-28
  12. ### Fixed
  13. - Fix `new Buffer()` warning, #154.
  14. ## [1.0.8] - 2019-01-14
  15. ### Fixed
  16. - Fix raw inflate with dictionary, #155.
  17. ## [1.0.7] - 2018-11-29
  18. ### Fixed
  19. - Fixed RangeError in Crome 72, #150.
  20. ## [1.0.6] - 2017-09-14
  21. ### Changed
  22. - Improve @std/esm compatibility.
  23. ## [1.0.5] - 2017-03-17
  24. ### Changed
  25. - Maintenance. More formal `zlib` attribution and related
  26. changes, #93. Thanks to @bastien-roucaries for the help.
  27. ## [1.0.4] - 2016-12-15
  28. ### Changed
  29. - Bump dev dependencies.
  30. ### Fixed
  31. - Make sure `err.message` is filled on throw.
  32. ### Added
  33. - Code examples for utf-16 string encoding & object compression.
  34. ## [1.0.3] - 2016-07-25
  35. ### Fixed
  36. - Maintenance: re-release to properly display latest version in npm registry
  37. and badges. Because `npm publish` timestamp used instead of versions.
  38. ## [1.0.2] - 2016-07-21
  39. ### Fixed
  40. - Fixed nasty bug in deflate (wrong `d_buf` offset), which could cause
  41. broken data in some rare cases.
  42. - Also released as 0.2.9 to give chance to old dependents, not updated to 1.x
  43. version.
  44. ## [1.0.1] - 2016-04-01
  45. ### Added
  46. - Added dictionary support. Thanks to @dignifiedquire.
  47. ## [1.0.0] - 2016-02-17
  48. ### Changed
  49. - Maintenance release (semver, coding style).
  50. ## [0.2.8] - 2015-09-14
  51. ### Fixed
  52. - Fixed regression after 0.2.4 for edge conditions in inflate wrapper (#65).
  53. Added more tests to cover possible cases.
  54. ## [0.2.7] - 2015-06-09
  55. ### Added
  56. - Added Z_SYNC_FLUSH support. Thanks to @TinoLange.
  57. ## [0.2.6] - 2015-03-24
  58. ### Added
  59. - Allow ArrayBuffer input.
  60. ## [0.2.5] - 2014-07-19
  61. ### Fixed
  62. - Workaround for Chrome 38.0.2096.0 script parser bug, #30.
  63. ## [0.2.4] - 2014-07-07
  64. ### Fixed
  65. - Fixed bug in inflate wrapper, #29
  66. ## [0.2.3] - 2014-06-09
  67. ### Changed
  68. - Maintenance release, dependencies update.
  69. ## [0.2.2] - 2014-06-04
  70. ### Fixed
  71. - Fixed iOS 5.1 Safari issue with `apply(typed_array)`, #26.
  72. ## [0.2.1] - 2014-05-01
  73. ### Fixed
  74. - Fixed collision on switch dynamic/fixed tables.
  75. ## [0.2.0] - 2014-04-18
  76. ### Added
  77. - Added custom gzip headers support.
  78. - Added strings support.
  79. - More coverage tests.
  80. ### Fixed
  81. - Improved memory allocations for small chunks.
  82. - ZStream properties rename/cleanup.
  83. ## [0.1.1] - 2014-03-20
  84. ### Fixed
  85. - Bugfixes for inflate/deflate.
  86. ## [0.1.0] - 2014-03-15
  87. ### Added
  88. - First release.
  89. [1.0.10]: https://github.com/nodeca/pako/compare/1.0.10...1.0.11
  90. [1.0.10]: https://github.com/nodeca/pako/compare/1.0.9...1.0.10
  91. [1.0.9]: https://github.com/nodeca/pako/compare/1.0.8...1.0.9
  92. [1.0.8]: https://github.com/nodeca/pako/compare/1.0.7...1.0.8
  93. [1.0.7]: https://github.com/nodeca/pako/compare/1.0.6...1.0.7
  94. [1.0.6]: https://github.com/nodeca/pako/compare/1.0.5...1.0.6
  95. [1.0.5]: https://github.com/nodeca/pako/compare/1.0.4...1.0.5
  96. [1.0.4]: https://github.com/nodeca/pako/compare/1.0.3...1.0.4
  97. [1.0.3]: https://github.com/nodeca/pako/compare/1.0.2...1.0.3
  98. [1.0.2]: https://github.com/nodeca/pako/compare/1.0.1...1.0.2
  99. [1.0.1]: https://github.com/nodeca/pako/compare/1.0.0...1.0.1
  100. [1.0.0]: https://github.com/nodeca/pako/compare/0.2.8...1.0.0
  101. [0.2.8]: https://github.com/nodeca/pako/compare/0.2.7...0.2.8
  102. [0.2.7]: https://github.com/nodeca/pako/compare/0.2.6...0.2.7
  103. [0.2.6]: https://github.com/nodeca/pako/compare/0.2.5...0.2.6
  104. [0.2.5]: https://github.com/nodeca/pako/compare/0.2.4...0.2.5
  105. [0.2.4]: https://github.com/nodeca/pako/compare/0.2.3...0.2.4
  106. [0.2.3]: https://github.com/nodeca/pako/compare/0.2.2...0.2.3
  107. [0.2.2]: https://github.com/nodeca/pako/compare/0.2.1...0.2.2
  108. [0.2.1]: https://github.com/nodeca/pako/compare/0.2.0...0.2.1
  109. [0.2.0]: https://github.com/nodeca/pako/compare/0.1.1...0.2.0
  110. [0.1.1]: https://github.com/nodeca/pako/compare/0.1.0...0.1.1
  111. [0.1.0]: https://github.com/nodeca/pako/releases/tag/0.1.0