Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

CHANGELOG.md 5.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. #### 10.3.1
  2. * 25/06/2021
  3. * Remove minified versions. Refresh *README*.
  4. #### 10.3.0
  5. * 22/06/2021
  6. * Support underscores as separators.
  7. * #101 Add `Decimal.clamp` method.
  8. * #161 Fix Decimal instances deemed plain objects.
  9. * #100 Add `Decimal.sum` method.
  10. * #146 `Symbol.for` to `Symbol['for']` for IE8.
  11. * #132 Fix possible infinite loop when `minE` is very low.
  12. * #180 Accept Decimals of different origin.
  13. * Update Typescript definitions.
  14. * Update minification examples in *README*.
  15. * Add minified versions for both *decimal.js* and *decimal.mjs*.
  16. * Add *files* field to *package.json*, and remove build script.
  17. #### 10.2.1
  18. * 28/09/2020
  19. * Correct `sqrt` initial estimate.
  20. #### 10.2.0
  21. * 08/05/2019
  22. * #128 Workaround V8 `Math.pow` change.
  23. * #93 Accept `+` prefix when parsing string values.
  24. * #129 Fix typo.
  25. #### 10.1.1
  26. * 27/02/2019
  27. * Check `Symbol` properly.
  28. #### 10.1.0
  29. * 26/02/2019
  30. * #122 Add custom `util.inspect()` function.
  31. * Add `Symbol.toStringTag`.
  32. * #121 Constructor: add range check for arguments of type number and Decimal.
  33. * Remove premable from uglifyjs build script.
  34. * Move *decimal.min.js.map* to root directory.
  35. #### 10.0.2
  36. * 13/12/2018
  37. * #114 Remove soureMappingURL from *decimal.min.js*.
  38. * Remove *bower.json*.
  39. #### 10.0.1
  40. * 24/05/2018
  41. * Add `browser` field to *package.json*.
  42. #### 10.0.0
  43. * 10/03/2018
  44. * #88 `toNearest` to return the nearest multiple in the direction of the rounding mode.
  45. * #82 #91 `const` to `var`.
  46. * Add trigonometric precision limit explanantion to documentation.
  47. * Put global ts definitions in separate file (see *bignumber.js* #143).
  48. #### 9.0.1
  49. * 15/12/2017
  50. * #80 Typings: correct return type.
  51. #### 9.0.0
  52. * 14/12/2017
  53. * #78 Typings: remove `toFormat`.
  54. #### 8.0.0
  55. * 10/12/2017
  56. * Correct typings: `toFraction` returns `Decimal[]`.
  57. * Type-checking: add `Decimal.isDecimal` method.
  58. * Enable configuration reset with `defaults: true`.
  59. * Add named export, Decimal, to *decimal.mjs*.
  60. #### 7.5.1
  61. * 03/12/2017
  62. * Remove typo.
  63. #### 7.5.0
  64. * 03/12/2017
  65. * Use TypeScript declarations outside modules.
  66. #### 7.4.0
  67. * 25/11/2017
  68. * Add TypeScript typings.
  69. #### 7.3.0
  70. * 26/09/2017
  71. * Rename *decimal.es6.js* to *decimal.mjs*.
  72. * Amend *.travis.yml*.
  73. #### 7.2.4
  74. * 09/09/2017
  75. * Update docs regarding `global.crypto`.
  76. * Fix `import` issues.
  77. #### 7.2.3
  78. * 27/06/2017
  79. * Bugfix: #58 `pow` sometimes throws when result is `Infinity`.
  80. #### 7.2.2
  81. * 25/06/2017
  82. * Bugfix: #57 Powers of -1 for integers over `Number.MAX_SAFE_INTEGER`.
  83. #### 7.2.1
  84. * 04/05/2017
  85. * Fix *README* badges.
  86. #### 7.2.0
  87. * 09/04/2017
  88. * Add *decimal.es6.js*
  89. #### 7.1.2
  90. * 05/04/2017
  91. * `Decimal.default` to `Decimal['default']` IE8 issue
  92. #### 7.1.1
  93. * 10/01/2017
  94. * Remove duplicated for-loop
  95. * Minor refactoring
  96. #### 7.1.0
  97. * 09/11/2016
  98. * Support ES6 imports.
  99. #### 7.0.0
  100. * 09/11/2016
  101. * Remove `require('crypto')` - leave it to the user
  102. * Default `Decimal.crypto` to `false`
  103. * Add `Decimal.set` as `Decimal.config` alias
  104. #### 6.0.0
  105. * 30/06/2016
  106. * Removed base-88 serialization format
  107. * Amended `toJSON` and removed `Decimal.fromJSON` accordingly
  108. #### 5.0.8
  109. * 09/03/2016
  110. * Add newline to single test results
  111. * Correct year
  112. #### 5.0.7
  113. * 29/02/2016
  114. * Add decimal.js-light link
  115. * Remove outdated example from docs
  116. #### 5.0.6
  117. * 22/02/2016
  118. * Add bower.json
  119. #### 5.0.5
  120. * 20/02/2016
  121. * Bugfix: #26 wrong precision applied
  122. #### 5.0.4
  123. * 14/02/2016
  124. * Bugfix: #26 clone
  125. #### 5.0.3
  126. * 06/02/2016
  127. * Refactor tests
  128. #### 5.0.2
  129. * 05/02/2016
  130. * Added immutability tests
  131. * Minor *decimal.js* clean-up
  132. #### 5.0.1
  133. * 28/01/2016
  134. * Bugfix: #20 cos mutates value
  135. * Add pi info to docs
  136. #### 5.0.0
  137. * 25/01/2016
  138. * Added trigonometric functions and `cubeRoot` method
  139. * Added most of JavaScript's `Math` object methods as Decimal methods
  140. * Added `toBinary`, `toHexadecimal` and `toOctal` methods
  141. * Added `isPositive` method
  142. * Removed the 15 significant digit limit for numbers
  143. * `toFraction` now returns an array of two Decimals, not two strings
  144. * String values containing whitespace or a plus sign are no longer accepted
  145. * `valueOf` now returns `'-0'` for minus zero
  146. * `comparedTo` now returns `NaN` not `null` for comparisons with `NaN`
  147. * `Decimal.max` and `Decimal.min` no longer accept an array
  148. * The Decimal constructor and `toString` no longer accept a base argument
  149. * Binary, hexadecimal and octal prefixes are now recognised for string values
  150. * Removed `Decimal.errors` configuration property
  151. * Removed `toFormat` method
  152. * Removed `Decimal.ONE`
  153. * Renamed `exponential` method to `naturalExponential`
  154. * Renamed `Decimal.constructor` method to `Decimal.clone`
  155. * Simplified error handling and amended error messages
  156. * Refactored the test suite
  157. * `Decimal.crypto` is now `undefined` by default, and the `crypto` object will be used if available
  158. * Major internal refactoring
  159. * Removed *bower.json*
  160. #### 4.0.2
  161. * 20/02/2015 Add bower.json. Add source map. Amend travis CI. Amend doc/comments
  162. #### 4.0.1
  163. * 11/12/2014 Assign correct constructor when duplicating a Decimal
  164. #### 4.0.0
  165. * 10/11/2014 `toFormat` amended to use `Decimal.format` object for more flexible configuration
  166. #### 3.0.1
  167. * 8/06/2014 Surround crypto require in try catch. See issue #5
  168. #### 3.0.0
  169. * 4/06/2014 `random` simplified. Major internal changes mean the properties of a Decimal must now be considered read-only
  170. #### 2.1.0
  171. * 4/06/2014 Amend UMD
  172. #### 2.0.3
  173. * 8/05/2014 Fix NaN toNumber
  174. #### 2.0.2
  175. * 30/04/2014 Correct doc links
  176. #### 2.0.1
  177. * 10/04/2014 Update npmignore
  178. #### 2.0.0
  179. * 10/04/2014 Add `toSignificantDigits`
  180. * Remove `toInteger`
  181. * No arguments to `ceil`, `floor`, `round` and `trunc`
  182. #### 1.0.1
  183. * 07/04/2014 Minor documentation clean-up
  184. #### 1.0.0
  185. * 02/04/2014 Initial release