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 893B

1234567891011121314151617181920212223242526272829303132
  1. # 3.0.0
  2. * Implement options.tmpfileCreated callback.
  3. * Drop Node.js 6, modernize code, return Promise from async function.
  4. * Support write TypedArray's like in node fs.writeFile.
  5. * Remove graceful-fs dependency.
  6. # 2.4.3
  7. * Ignore errors raised by `fs.closeSync` when cleaning up after a write
  8. error.
  9. # 2.4.2
  10. * A pair of patches to fix some fd leaks. We would leak fds with sync use
  11. when errors occured and with async use any time fsync was not in use. (#34)
  12. # 2.4.1
  13. * Fix a bug where `signal-exit` instances would be leaked. This was fixed when addressing #35.
  14. # 2.4.0
  15. ## Features
  16. * Allow chown and mode options to be set to false to disable the defaulting behavior. (#20)
  17. * Support passing encoding strings in options slot for compat with Node.js API. (#31)
  18. * Add support for running inside of worker threads (#37)
  19. ## Fixes
  20. * Remove unneeded call when returning success (#36)