summaryrefslogtreecommitdiff
path: root/keyboards
AgeCommit message (Collapse)Author
2021-08-09Fixup rgb matrix config for KBD67 mkII boards (#13931)Drashna Jaelre
2021-08-09Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-09[Keymap] new keymap for nui_mini (#13924)Edvard Sire
2021-08-09Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-09Make default keymap for GMMK Pro reflect stock (#13850)Andre Brait
2021-08-09[Keymap] Add kbd67 mkiirgb keymap (#13884)Pascal Pfeil
Co-authored-by: Spaceman <rionlion100@gmail.com> Co-authored-by: Drashna Jaelre <drashna@live.com>
2021-08-09Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-09[Keyboard] Add TouhouPad (#13915)Michele Ferri
* Touhoupad rev 2 * cleanup for PR * fixes after review
2021-08-09Merge remote-tracking branch 'origin/master' into developZach White
Conflicts: keyboards/kbdfans/kbd67/mkiirgb/mkiirgb.c
2021-08-09Fix generate api (#13930)Zach White
* Add missing returncode to exit() * fix the aozora/hotswap vendor id
2021-08-09[Keymap] rootiest for planck/rev6/ (#13294)Chris
* squashed commits to master * Fix in case of missing user_song_list Substitutes missing songs with safe versions Also updated and added detail to keymap readme * Adjust Readme to match qmk contrib conventions * Update keyboards/planck/keymaps/rootiest/config.h * Update keyboards/planck/keymaps/rootiest/keymap.c * Update keyboards/planck/keymaps/rootiest/keymap.c * Update keyboards/planck/keymaps/rootiest/keymap.c * Update keyboards/planck/keymaps/rootiest/keymap.c * Fixed license header to GPLv2+ * Fix Volume key delay Use a static number instead of removed MEDIA_KEY_DELAY * Use TAP_CODE_DELAY * added license to config.h * Clean up formatting - Fixed markdown in readme - Removed extra commented line from config.h * Update keyboards/planck/keymaps/rootiest/config.h
2021-08-08[Keyboard] Undead 60M (#13735)jfescobar18
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
2021-08-08[Keyboard] Add Aozora (hotswap) keyboard (#13919)Phooood
* Initial Commit * added header to hotswap.c * added keymap-specific reamdme.md * minor adjustments * Requested corrections to readme's
2021-08-07[Keyboard] Add kbdfans kbd67 mkii rgb v3 (#13714)datafx
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
2021-08-08Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-07[Keyboard] Add Pancake v2 (#13839)Spaceman
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
2021-08-08Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-07[Keyboard] Added CapsLED and ScrollLock LEDs (#13837)Ananya Kirti
Co-authored-by: Drashna Jaelre <drashna@live.com>
2021-08-07[Keymap] Drashna split transport improvement (#13905)Drashna Jaelre
* Fix up split stuff * Fix Split perf issues * Allow LTO to be disabled * Fixup WPM and encoders * Fixup qmk keys per scan * Add bootloader info * Change encoder pins * Fixup corne oled code * Expand transport sync * Improve user transport * Cleanup mouse processing at keymap level * Improve layer checking for mouse layering
2021-08-08Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-07[Keyboard] a1200 converter minor changes (#13848)8bits4ever
Co-authored-by: Ryan <fauxpark@gmail.com>
2021-08-08Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-07[Keyboard] Gorthage Truck - New PCB (#13909)jpuerto96
Co-authored-by: Ryan <fauxpark@gmail.com>
2021-08-08Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-07[Keyboard] Clean up lfkpad and add keymap (#13881)Pascal Pfeil
Co-authored-by: Drashna Jaelre <drashna@live.com>
2021-08-08Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-07[Keyboard] Adding my Nyquist keymap (#13858)peott-fr
2021-08-08[Keyboard] Fix matrix_output_unselect_delay for handwired/xealousbrown (#13913)Drashna Jaelre
2021-08-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-07[Keyboard] fixes for KBD67 rev2 (#13906)kb-elmo
2021-08-07Clean up remaining RGB_DISABLE_WHEN_USB_SUSPENDED defines Part 2 (#13912)Drashna Jaelre
2021-08-06Remove Full Bootmagic (#13846)James Young
* disambiguate Bootmagic rules in keymaps The files edited by this commit were added at a point in time where `BOOTMAGIC_ENABLE = yes` enabled full Bootmagic. This commit edits the files to specify that full Bootmagic is intended. * remove BOOTMAGIC_ENABLE=full setting * unify commented BOOTMAGIC_ENABLE rules in keyboards Explicitly sets `BOOTMAGIC_ENABLE = no` in keyboards where the rule was commented out. Command: ``` find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;#[ \t]*\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-zA-Z]\+\).*;\1 = no # Virtual DIP switch configuration;g' {} + ``` * remove commented Bootmagic rules from keymap/user level Command: ``` find keyboards/ layouts/ users/ -type f -name 'rules.mk' -exec sed -i -e '/#.*\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*/d' {} + ``` * update keyboard BOOTMAGIC_ENABLE rule formatting Sets the formatting of BOOTMAGIC_ENABLE rules to `BOOTMAGIC_ENABLE = [value]`, without the inline comments (which will be replaced later). Command: ``` find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' + ``` * update keyboards' BOOTMAGIC_ENABLE settings Updates keyboard `rules.mk` files to use `BOOTMAGIC_ENABLE = lite` where `BOOTMAGIC_ENABLE = full` was being used. Command: ``` find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = \)full;\1lite;g' '{}' + ``` * update keymap/user BOOTMAGIC_ENABLE settings Updates keymap/user `rules.mk` files to use `BOOTMAGIC_ENABLE = lite` where `BOOTMAGIC_ENABLE = full` was being used. Commands: ``` find keyboards/ -type f -name 'rules.mk' -and -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE[ \t=]\+\)full;\1lite;g' '{}' + find layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE[ \t=]\+\)full;\1lite;g' '{}' + ``` * remove and replace inline comments in keyboards and keymap/user files Removes and replaces the inline comments, which have been updated to read `Enable Bootmagic Lite`. Commands: ``` find keyboards/ -type f -name 'rules.mk' -and -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' + find layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' + find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = lite\);\1 # Enable Bootmagic Lite;g' '{}' + find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = yes\);\1 # Enable Bootmagic Lite;g' '{}' + find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = no\);\1 # Enable Bootmagic Lite;g' '{}' + ``` * rename improperly named makefiles Some files intended to be used as makefiles had improper names causing them to not be used as intended when building. This commit corrects the filenames of the affected files. * update renamed file with new rule formatting * update QMK's template files Updates QMK's `rules.mk` templates to use the new inline comment. * update QMK Docs - remove documentation of full Bootmagic - update links to Bootmagic Lite doc - add doc for Magic Keycodes * rules.mk patch for coarse/ixora and coarse/vinta
2021-08-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-06[Keyboard] Added 67mk_E PCB (#13869)kb-elmo
* added 67mk_E PCB * add layouts
2021-08-06[Keyboard] Modify key drive pins for mojo68 (#13863)bomb
2021-08-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-06[Keyboard] Use new matrix_output_select_delay api (#13861)Alex Ong
* Use new matrix_output_select_delay api * Updated delay to 15 after more spamming
2021-08-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-06[Keyboard] add handwired/oem_ansi_fullsize (#13857)Cian Johnston
* Add new keyboard oem_ansi_fullsize * clang-fmt * Update keyboards/handwired/oem_ansi_fullsize/rules.mk Co-authored-by: Joel Challis <git@zvecr.com> * Update keyboards/handwired/oem_ansi_fullsize/readme.md Co-authored-by: Joel Challis <git@zvecr.com> * update info.json using qmk c2json * update info.json * move diagram to readme * add matrix cols/rows to info.json * fixup! add matrix cols/rows to info.json * rename layout, fix block comment * s/ansi_fullsize/fullsize_ansi/g Co-authored-by: Joel Challis <git@zvecr.com>
2021-08-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-06[Keymap] JackKenney's keymap for GMMK Pro (#13853)Jack Kenney
2021-08-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-06[Keyboard] Fix oled_task_user for chocolatebar (#13911)Drashna Jaelre
2021-08-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-07clean up CRLF instances (#13910)James Young
2021-08-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-06[Keyboard] Add Fave87 (#13873)Moritz
Co-authored-by: Joel Challis <git@zvecr.com>
2021-08-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-08-06[Keyboard] Add MisonoWorks Chocolate Bar keyboard (#13798)misonoworks
Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: autumnisacutie <63772942+autumnisacutie@users.noreply.github.com>
2021-08-07Merge remote-tracking branch 'origin/master' into developQMK Bot