keybrd library is an open source library for creating custom-keyboard firmware.
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

CHANGELOG.md 1.3KB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
1234567891011121314151617181920212223242526272829303132333435363738
  1. # Change Log for keybrd library
  2. All notable changes to the keybrd project will be documented in this file.
  3. This project adheres to [Semantic Versioning 2.0.0](http://semver.org/).
  4. keybrd version 0.x.x is for initial development. The public API should not be considered stable.
  5. keybrd version 1.0.0 will be released when the public API is stable.
  6. ## [Unreleased][unreleased]
  7. ## [0.3.1] - 2016-06-02
  8. ### Added
  9. * RowBase class
  10. * Row::debounce()
  11. ## [0.3.0] - 2016-05-09
  12. ### Changed
  13. * Restructured the project directory to conform to Arduino library manager specifications
  14. * Moved keybrd_DH library extension (for DodoHand) to its own repository
  15. * Moved sketches to examples directory
  16. * Replaced Key_Layered dependency on LayerManager with LayerState class
  17. ### Added
  18. * Tutorials
  19. ## [0.2.0] - 2016-02-25
  20. ### Added
  21. * Port classes for micro-controllers and I/O expanders
  22. * DH_2565 sketch with DataHand layout
  23. * Sticky mouse button (SMB) for DataHand layout
  24. * Supporting documentation
  25. ## [0.1.0] - 2015-02-10
  26. ### Added
  27. * The library runs on Teensy 2.0 microcontroller and MCP23018 I/O expander
  28. * Limited to 8x8 matrix, which is enough for compact or split keyboards
  29. * First draft of supporting documentation
  30. * Example keybrd sketches for single-layer, multi-layer, and DataHand layer schemes