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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # v3.0
  2. - Add `--preserve-root` option to executable (default true)
  3. - Drop support for Node.js below version 6
  4. # v2.7
  5. - Make `glob` an optional dependency
  6. # 2.6
  7. - Retry on EBUSY on non-windows platforms as well
  8. - Make `rimraf.sync` 10000% more reliable on Windows
  9. # 2.5
  10. - Handle Windows EPERM when lstat-ing read-only dirs
  11. - Add glob option to pass options to glob
  12. # 2.4
  13. - Add EPERM to delay/retry loop
  14. - Add `disableGlob` option
  15. # 2.3
  16. - Make maxBusyTries and emfileWait configurable
  17. - Handle weird SunOS unlink-dir issue
  18. - Glob the CLI arg for better Windows support
  19. # 2.2
  20. - Handle ENOENT properly on Windows
  21. - Allow overriding fs methods
  22. - Treat EPERM as indicative of non-empty dir
  23. - Remove optional graceful-fs dep
  24. - Consistently return null error instead of undefined on success
  25. - win32: Treat ENOTEMPTY the same as EBUSY
  26. - Add `rimraf` binary
  27. # 2.1
  28. - Fix SunOS error code for a non-empty directory
  29. - Try rmdir before readdir
  30. - Treat EISDIR like EPERM
  31. - Remove chmod
  32. - Remove lstat polyfill, node 0.7 is not supported
  33. # 2.0
  34. - Fix myGid call to check process.getgid
  35. - Simplify the EBUSY backoff logic.
  36. - Use fs.lstat in node >= 0.7.9
  37. - Remove gently option
  38. - remove fiber implementation
  39. - Delete files that are marked read-only
  40. # 1.0
  41. - Allow ENOENT in sync method
  42. - Throw when no callback is provided
  43. - Make opts.gently an absolute path
  44. - use 'stat' if 'lstat' is not available
  45. - Consistent error naming, and rethrow non-ENOENT stat errors
  46. - add fiber implementation