Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

před 3 roky
12345678910111213141516171819202122232425262728293031323334353637
  1. Hi, figured we could actually use a changelog now:
  2. ## 1.1.5 2018-05-24
  3. * [#92](https://github.com/iarna/are-we-there-yet/pull/92) Fix bug where
  4. `finish` would throw errors when including `TrackerStream` objects in
  5. `TrackerGroup` collections. (@brianloveswords)
  6. ## 1.1.4 2017-04-21
  7. * Fix typo in package.json
  8. ## 1.1.3 2017-04-21
  9. * Improve documentation and limit files included in the distribution.
  10. ## 1.1.2 2016-03-15
  11. * Add tracker group cycle detection and tests for it
  12. ## 1.1.1 2016-01-29
  13. * Fix a typo in stream completion tracker
  14. ## 1.1.0 2016-01-29
  15. * Rewrote completion percent computation to be low impact– no more walking a
  16. tree of completion groups every time we need this info. Previously, with
  17. medium sized tree of completion groups, even a relatively modest number of
  18. calls to the top level `completed()` method would result in absurd numbers
  19. of calls overall as it walked down the tree. We now, instead, keep track as
  20. we bubble up changes, so the computation is limited to when data changes and
  21. to the depth of that one branch, instead of _every_ node. (Plus, we were already
  22. incurring _this_ cost, since we already bubbled out changes.)
  23. * Moved different tracker types out to their own files.
  24. * Made tests test for TOO MANY events too.
  25. * Standarized the source code formatting