commit f4ee36b14c1e89ce64cf60b092de33f86c8f65dc parent 7e734836ac85d835b9caca36b69bd5c37cbe7af5 Author: Johannes Schauer Marin Rodrigues <josch@mister-muffin.de> Date: Sun, 10 Dec 2023 17:24:28 +0100 initial CHANGELOG.md for keyboard and lpc firmwares Diffstat:
M | .gitlab-ci.yml | | | 5 | +++++ |
A | reform2-keyboard-fw/CHANGELOG.md | | | 11 | +++++++++++ |
A | reform2-lpc-fw/CHANGELOG.md | | | 7 | +++++++ |
3 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml @@ -52,3 +52,8 @@ build: grep --quiet "# define KBD_FW_VERSION \"$(git describe --always --tags --abbrev=0 | tr -d -)\"" reform2-keyboard-fw/constants.h grep --quiet "# define FW_STRING3 \"$(git describe --always --tags --abbrev=0 | tr -d -)\"" reform2-lpc-fw/src/boards/reform2/board_reform2.c fi + # assure that the latest git tag is reflected in top CHANGELOG.md + if git describe >/dev/null 2>&1; then + head -1 reform2-keyboard-fw/CHANGELOG.md | grep --quiet "^### $(git describe --always --tags --abbrev=0)" + head -1 reform2-lpc-fw/CHANGELOG.md | grep --quiet "^### $(git describe --always --tags --abbrev=0)" + fi diff --git a/reform2-keyboard-fw/CHANGELOG.md b/reform2-keyboard-fw/CHANGELOG.md @@ -0,0 +1,11 @@ +### 2023-11-24 + + - allow usb hid commands to draw on all 128 display columns + - v3: add home/end/pgup/pgdn on hyper layer + - fade-in & fade-out animations for keyboard backlight + - add a ~30s timeout to the MNT Reform logo on the OLED to prevent burn-in + - mention on the OLED that firmware update mode is active + +### 2023-07-03 + + - first tagged version diff --git a/reform2-lpc-fw/CHANGELOG.md b/reform2-lpc-fw/CHANGELOG.md @@ -0,0 +1,7 @@ +### 2023-11-24 + + - disable brownout reset during sleep to keep battery status + +### 2023-07-03 + + - first tagged version