Skip to content

Commit

Permalink
Correct a refactoring error that had reversed the display of transpar…
Browse files Browse the repository at this point in the history
…ent and blocked keys
  • Loading branch information
obra committed Mar 6, 2024
1 parent 31216e6 commit 0dbda26
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion product-status.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Chrysalis requires a browser with WebSerial support. Right now, this means Chrom

## Recent updates

- An earlier update had accidentally reversed the display of transparent and blocked keys
- Updated firmware builds to better handle cases of corrupted EEPROM.
- Chrysalis no longer incorrectly states that it could not connect to your keyboard after a firmware update, requiring
another firmware update.
Expand All @@ -41,4 +42,4 @@ Chrysalis requires a browser with WebSerial support. Right now, this means Chrom

## Last Updated

March 4, 2024
March 5, 2024
4 changes: 2 additions & 2 deletions src/api/focus/keymap/db/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ export const constants = {
ONESHOT_META_STICKY: 53628,
ONESHOT_ACTIVE_STICKY: 53629,
ONESHOT_CANCEL: 53630,
BLOCKED: 65535,
TRANSPARENT: 0x00,
BLOCKED: 0x00,
TRANSPARENT: 65535,

// Dual use keycodes
DUAL_USE_MODIFIER_BASE: keycode_ranges.dual_use_modifier.start,
Expand Down

0 comments on commit 0dbda26

Please sign in to comment.