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

7 years ago
8 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. Change Log for keybrd library
  2. =============================
  3. All notable changes to the keybrd project will be documented in this file.
  4. This project adheres to [Semantic Versioning 2.0.0](http://semver.org/).
  5. keybrd version 0.x.x is for initial development.
  6. keybrd version 1.0.0 will be released when the public API is stable.
  7. 0.6.3 (2016-10-06)
  8. ------------------
  9. * Enhancements
  10. * add comma to Scanner_IOE constructor
  11. 0.6.1 (2016-10-02)
  12. ------------------
  13. * Enhancements
  14. * Redesign I/O expander Port classes
  15. * Scanner_ShiftRegsReadtrobed class can now read from multiple shift register chains
  16. * Backward incompatible changes
  17. * Rename Scanner_ShiftRegsPISOSingleRow to Scanner_ShiftRegsRead
  18. * Rename Scanner_ShiftRegsPISOMultiRow to Scanner_ShiftRegsReadStrobed
  19. 0.6.0 (2016-09-28)
  20. ------------------
  21. * Enhancements
  22. * Add Port_MCP23S17
  23. * Add Scanner_ShiftRegsPISOSingleRow and Scanner_ShiftRegsPISOMultiRow
  24. * Refine and update tutorials
  25. * Add tutorial_3cde_sublayer_keyboard.md
  26. * Add tutorial_4_connecting_split_keyboards.md
  27. * Add tutorial_4b_split_keyboard_with_shift_registers.md
  28. * Add tutorial_4c_split_keyboard_with_IOE.md
  29. * Add tutorial_5b_LED_on_IOE.md
  30. * Backward incompatible changes
  31. * Move scanner instantiation from Row_* to sketch
  32. * Delete Row_uC and Row_IOE, and replace them with Row
  33. * Combine PortWrite_PCA9655E and PortRead_PCA9655E into Port_PCA9655E
  34. * Delete PortIOE, and move PortIOE variables to IOE port classes
  35. * Rename LED_PCA9655E to LED_Port
  36. * Rename Scanner_Port to Scanner_IOE
  37. * Rename Key_LayeredKeysArray to Key_LayeredKeys
  38. * Rename Code_Layered* to Key_Layered*
  39. * Rename object_*.h files to instantiations_*.h
  40. 0.5.0 (2016-07-22)
  41. ------------------
  42. * Enhancements
  43. * Update tutorials
  44. * Add tutorials for LEDs, active high
  45. * Backward incompatible changes
  46. * Add 32x32 matrix capability to Row_uC
  47. * Add STROBE_ON and STROBE_OFF to scanner class, to set active state
  48. * Rename classes
  49. 0.4.1 (2016-06-21)
  50. ------------------
  51. * Enhancements
  52. * Add config_keybrd.h for size configurations.
  53. * Add RowScanner_SPI-ShiftRegisters for compact split keyboards up to 32 keys per matrix.
  54. * Add LED_PinNumber for controlling indicator lights by pin number.
  55. 0.4.0 (2016-06-10)
  56. ------------------
  57. * Enhancements
  58. * Add Row_uC
  59. * Add Row_IOE
  60. * Add RowScannerInterface
  61. * Add RowScanner_PinsArray
  62. * Add RowScanner_PinsBitwise
  63. * Add DebouncerInterface
  64. * Add Debouncer_4Samples
  65. * Backward incompatible changes
  66. * Change uC from scanning port arrays to scanning Arduino pins, thereby adding support for:
  67. * Arduino boards, Teensy 3, and Teensy LC microcontrollers
  68. * up to 31x31 matrix capability
  69. * Change IOE from scanning port arrays to scanning single ports.
  70. * Move scanner and debouncer into their own classes.
  71. * Remove Port arrays
  72. 0.3.1 (2016-06-02)
  73. ------------------
  74. * Enhancements
  75. * Add RowBase class
  76. * Add Row::debounce()
  77. 0.3.0 (2016-05-09)
  78. ------------------
  79. * Enhancements
  80. * Add Tutorials
  81. * Backward incompatible changes
  82. * Restructure the project directory to conform to Arduino library manager specifications
  83. * Moved keybrd_DH library extension (for DodoHand) to its own repository
  84. * Moved sketches to examples directory
  85. * Replace Key_Layered dependency on LayerManager with LayerState class
  86. 0.2.0 (2016-02-25)
  87. ------------------
  88. * Enhancements
  89. * Add Port classes for microcontrollers and I/O expanders
  90. * Add DH_2565 sketch with DataHand layout
  91. * Add Sticky mouse button (SMB) for DataHand layout
  92. * Add Supporting documentation
  93. 0.1.0 (2015-02-10)
  94. ------------------
  95. * Enhancements
  96. * The library runs on Teensy 2.0 microcontroller and MCP23018 I/O expander
  97. * Limited to 8x8 matrix, which is enough for compact or split keyboards
  98. * Add first draft of supporting documentation
  99. * Add example keybrd sketches for single-layer, multi-layer, and DataHand layer schemes