Skip to content

Commit

Permalink
v0.5.1 release. Cap support.
Browse files Browse the repository at this point in the history
Added missing parser for `supported` parameter to keycaps. Fixes #11.
  • Loading branch information
veikman committed Oct 16, 2019
1 parent dcbac9c commit ffd29ef
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ version 0.2.0, thus covering only a fraction of the project’s history.
## [Unreleased]
Nothing yet.

## [Version 0.5.1] - 2019-10-16
### Fixed
- Added a parser for one more of `dmote-keycap`’s parameters (`supported`),
thus allowing supports to be turned off for keycap models rendered through
this application.

## [Version 0.5.0] - 2019-07-21
### Changed
- Secondary aliases (`secondaries`) are now a map and case `tweaks` are
Expand Down Expand Up @@ -248,7 +254,8 @@ Nothing yet.
- Removed a dependency on `unicode-math`. The requisite version of the library
had not been deployed to Clojars and its use was cosmetic.

[Unreleased]: https://github.com/veikman/dactyl-keyboard/compare/dmote-v0.5.0...HEAD
[Unreleased]: https://github.com/veikman/dactyl-keyboard/compare/dmote-v0.5.1...HEAD
[Version 0.5.1]: https://github.com/veikman/dactyl-keyboard/compare/dmote-v0.5.0...dmote-v0.5.1
[Version 0.5.0]: https://github.com/veikman/dactyl-keyboard/compare/dmote-v0.4.0...dmote-v0.5.0
[Version 0.4.0]: https://github.com/veikman/dactyl-keyboard/compare/dmote-v0.3.0...dmote-v0.4.0
[Version 0.3.0]: https://github.com/veikman/dactyl-keyboard/compare/dmote-v0.2.0...dmote-v0.3.0
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject dactyl-keyboard "0.5.0"
(defproject dactyl-keyboard "0.5.1"
:description "A parametrized, split-hand, concave, columnar, ergonomic keyboard"
:url "http://viktor.eikman.se/article/the-dmote/"
:license {:name "GNU Affero General Public License"
Expand Down
3 changes: 2 additions & 1 deletion src/dactyl_keyboard/param/schema.clj
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@
:bowl-plate-offset num
:skirt-length num
:skirt-thickness num
:slope num})))
:slope num
:supported boolean})))

(def named-secondary-positions
(map-of
Expand Down

0 comments on commit ffd29ef

Please sign in to comment.