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 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. 2.0.0 / 2017-04-04
  2. ==================
  3. * Fix: check before using stream.clearLine to prevent crash in Docker
  4. * Fix: fixed output multiline on windows cmd
  5. * Fix: Bug with array length when window is too small
  6. * Fix: Don't clear whole line every time; instead, clear everything after end of line
  7. * Fix: Use `this.stream` instead of `console.log` when terminating a progress bar to ensure that, if a writable stream is provided, it uses that rather than process.stdout
  8. * Fix: Bug causing potentially stale tokens on render
  9. * Feature: configurable cursor
  10. * Feature: feature to interrupt the bar and display a message
  11. * Feature: Add rate reporting to progress bar
  12. * Improvement: Add head option to specify head character
  13. * Improvement: Rename tickTokens to tokens
  14. * Improvement: Change default throttle time to 16ms
  15. * Improvement: Rename renderDelay to renderThrottle
  16. * Improvement: Add delay between render updates
  17. * Docs: Add example and documentation for custom token usage
  18. * Docs: Add head option to readme
  19. * Docs: Updated README example for public use
  20. * Docs: Add renderThrottle option to code documentation
  21. 1.1.7 / 2014-06-30
  22. ==================
  23. * fixed a bug that occurs when a progress bar attempts to draw itself
  24. on a console with very few columns
  25. 1.1.6 / 2014-06-16
  26. ==================
  27. * now prevents progress bar from exceeding TTY width by limiting its width to
  28. the with of the TTY
  29. 1.1.5 / 2014-03-25
  30. ==================
  31. * updated documentation and various other repo maintenance
  32. * updated makefile to run examples with `make`
  33. * removed dependency on readline module
  34. 1.1.4 / 2014-03-14
  35. ==================
  36. * now supports streams, for example output progress bar to stderr, while piping
  37. stdout
  38. * increases performance and flicker by remembering the last drawn progress bar
  39. 1.1.3 / 2013-12-31
  40. ==================
  41. * fixes a bug where bar would bug when initializing
  42. * allows to pass updated tokens when ticking or updating the bar
  43. * fixes a bug where the bar would throw if skipping to far
  44. 1.1.2 / 2013-10-17
  45. ==================
  46. * lets you pass an `fmt` and a `total` instead of an options object
  47. 1.1.0 / 2013-09-18
  48. ==================
  49. * eta and elapsed tokens default to 0.0 instead of ?.?
  50. * better JSDocs
  51. * added back and forth example
  52. * added method to update the progress bar to a specific percentage
  53. * added an option to hide the bar on completion
  54. 1.0.1 / 2013-08-07
  55. ==================
  56. * on os x readline now works, reverting the terminal hack
  57. 1.0.0 / 2013-06-18
  58. ==================
  59. * remove .version
  60. * merge pull request #15 from davglass/readline-osx
  61. * on OSX revert back to terminal hack to avoid a readline bug
  62. 0.1.0 / 2012-09-19
  63. ==================
  64. * fixed logic bug that caused bar to jump one extra space at the end [davglass]
  65. * working with readline impl, even on Windows [davglass]
  66. * using readline instead of the \r hack [davglass]
  67. 0.0.5 / 2012-08-07
  68. ==================
  69. * add ability to tick by zero chunks - tick(0)
  70. * fix ETA. Closes #4 [lwille]
  71. 0.0.4 / 2011-11-14
  72. ==================
  73. * allow more recent versions of node
  74. 0.0.3 / 2011-04-20
  75. ==================
  76. * changed; erase the line when complete
  77. 0.0.2 / 2011-04-20
  78. ==================
  79. * added custom tokens support
  80. * fixed; clear line before writing
  81. 0.0.1 / 2010-01-03
  82. ==================
  83. * initial release