From 0dbda26da26f5c55f1dc230036c00b12afa3af84 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Tue, 5 Mar 2024 17:22:29 -0800 Subject: [PATCH] Correct a refactoring error that had reversed the display of transparent and blocked keys --- product-status.md | 3 ++- src/api/focus/keymap/db/constants.js | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/product-status.md b/product-status.md index ef7dfd3bd..d2e3ce0dd 100644 --- a/product-status.md +++ b/product-status.md @@ -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. @@ -41,4 +42,4 @@ Chrysalis requires a browser with WebSerial support. Right now, this means Chrom ## Last Updated -March 4, 2024 +March 5, 2024 diff --git a/src/api/focus/keymap/db/constants.js b/src/api/focus/keymap/db/constants.js index 789bd49b8..8672ab429 100644 --- a/src/api/focus/keymap/db/constants.js +++ b/src/api/focus/keymap/db/constants.js @@ -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,