summaryrefslogtreecommitdiff
path: root/docs/ChangeLog/20230528
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ChangeLog/20230528')
-rw-r--r--docs/ChangeLog/20230528/PR14996.md21
-rw-r--r--docs/ChangeLog/20230528/PR20584.md3
2 files changed, 0 insertions, 24 deletions
diff --git a/docs/ChangeLog/20230528/PR14996.md b/docs/ChangeLog/20230528/PR14996.md
deleted file mode 100644
index d59b407e4c..0000000000
--- a/docs/ChangeLog/20230528/PR14996.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# QMK Breaking Changes - 2023 May 28 Changelog
-
-## Notable Features :id=notable-features
-
-### Consolidate modelm ([#14996](https://github.com/qmk/qmk_firmware/pull/14996)
-
-Several build targets for the IBM Model M were cluttered in different folders.
-The maintainers of several Model M replacement controller projects agreed to
-consolidate them under one common folder.
-
-List of the consolidations now in keyboards/modelm/:
-
-- ashpil_usbc
-- ibm122m
-- mschwingen
-- teensy2 (renamed from modelm101_teensy2)
-- teensypp (renamed from modelm101)
-- teensypp_ssk (renamed from modelm_ssk)
-- ibm122m
-- m122_3270
-- yugo_m
diff --git a/docs/ChangeLog/20230528/PR20584.md b/docs/ChangeLog/20230528/PR20584.md
deleted file mode 100644
index e9e49f5730..0000000000
--- a/docs/ChangeLog/20230528/PR20584.md
+++ /dev/null
@@ -1,3 +0,0 @@
-Two new boolean callback functions, `pre_process_record_kb` and `pre_process_record_user`, are added in this change. They are called at the beginning of `process_record`, right before `process_combo`.
-
-Similar to existing `*_kb` and `*_user` callback functions, returning `false` will halt further processing of key events. The `pre_process_record_user` function will allow user space opportunity to handle or capture an input before it undergoes quantum processing. For example, while action tapping is still resolving the tap or hold output of a mod-tap key, `pre_process_record_user` can capture the next key record of an input event that follows. That key record can be used to influence the [decision of the mod-tap](https://docs.qmk.fm/#/tap_hold) key that is currently undergoing quantum processing.