aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Murcielago: improve default keymap (#9363)Adrian2020-06-112-110/+100
| | | * Squashed new default keymap for murcielago
* Really fix Ubuntu/Debian setup when $PATH contains spaces (#9370)Sergey Vlasov2020-06-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | PR #9307 fixed the immediately visible problem (the command that was added to $HOME/.bashrc was incorrect because of missing quotes around paths with spaces). However, the modified command is still wrong - it captures the value of $PATH at the setup time, and the resulting command written out to $HOME/.bashrc will overwrite $PATH with that captured value, ignoring any changes in the environment. This may be especially important for WSL, where the initial value of $PATH in Linux includes everything which has been added to %PATH% on the Windows side; after adding that command to $HOME/.bashrc the WSL environment will no longer pick up any changes made by newly installed Windows software. Instead of that, use single quotes around the command, so that the environment variables are not expanded at the setup time, and the command that is added to $HOME/.bashrc becomes exactly this: PATH="$HOME/.local/bin:$PATH" This command will use the $HOME and $PATH environment variable values at the time the command is executed, not at the time the QMK setup is performed, so any further updates to $PATH are taken into account. Double quotes also ensure that the command is safe even if the values of those environment variables contain spaces.
* Fix Configurator layout data for clueboard/2x1800/2019 (#9373)James Young2020-06-111-26/+1189
|
* Fixing Iron165 VIA Keymap (#9298)George Mao2020-06-112-15/+30
| | | | | | | | | * Fixing via issues * Fixing whitespace issues on the keymap * Fixed the default via layer 1 keymap, was a little weird before * Removing redundant declarations in via/rules.mk
* Fix Ubuntu/Debian setup when $PATH contains spaces (#9307)neon42722020-06-101-1/+1
| | | | | | | | | | | | | | | | | | | | | * Change `echo` to `export` * Add `export` as a note under the `echo` command * Remove note from last commit Co-authored-by: Ryan <fauxpark@gmail.com> * Update docs/newbs_getting_started.md Co-authored-by: Ryan <fauxpark@gmail.com> * Update docs/newbs_getting_started.md Add 1 line of whitespace under note Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Ryan <fauxpark@gmail.com>
* Add documentation for selecting an Arm MCU (#9046)Nick Brassel2020-06-102-0/+59
| | | | | | | | | | | | | | * Initial doco write-up. * Update docs/platformdev_selecting_arm_mcu.md Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com> Co-authored-by: Ryan <fauxpark@gmail.com>
* [Docs] Fixed the hyperlink to `/users/_example/`. (#9326)precondition2020-06-101-1/+1
|
* [keyboard] Project Keyboard Signature 87 (#9062)MechMerlin2020-06-1012-0/+1711
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * preliminary check in, basically a copy from 159's github with a few additions to get it to compile * update readme * fixup the LAYOUT macro labels to be more reasonable * add tkl_ansi LAYOUT macro for community layout support * clean up rules.mk, add community layout suport, and add in bootloader * add a tsangan layout macro * spruce up readme * add VIA keymap * add qmk configurator support * Update keyboards/projectkb/signature87/rules.mk Co-authored-by: Joel Challis <git@zvecr.com> * Update keyboards/projectkb/signature87/rules.mk Co-authored-by: Joel Challis <git@zvecr.com> * Update keyboards/projectkb/signature87/rules.mk Co-authored-by: Joel Challis <git@zvecr.com> * remove unneeded file * Update keyboards/projectkb/signature87/config.h Co-authored-by: Joel Challis <git@zvecr.com> * Update keyboards/projectkb/signature87/rules.mk Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/projectkb/signature87/config.h Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Ryan <fauxpark@gmail.com>
* Include `pointing_device_send` in docs (#9185)Drashna Jaelre2020-06-101-1/+6
|
* Fix one shot swaphands compiler error when NO_ACTION_ONESHOT is defined (#9296)Tsan-Kuang Lee2020-06-101-0/+4
| | | | | | | | | | | | | | | | | | | * init * add RETRO_TAP; tap anyway after TAP_TERM, if no interruption * RETRO_TAP works for other types of taps * revert to upstream/master * explain this fork in readme * use one readme.md file instaed * fix the error if NO_ACTION_ONESHOT is defined * restore readme.md to upstream master Co-authored-by: Tsan-Kuang Lee <tsan.kuang.lee@gmail.com>
* [Keymap] WPM-responsive OLED animation in personal keymap (#9264)James Incandenza2020-06-103-0/+432
| | | | | | | | | | | | | | | | Using the wpm feature, I create a responsive OLED animation that changes based on how fast the user types. As written there are three phases (It's bongo cat!) but can easily be reconfigured and replaced with other images. Multiple byte arrays consume considerable space so choose your usage wisely. When customized, the smaller the byte array used, the better, due to space limitations on most microcontrollers. I made this with no prior knowledge of C, so I'm looking forward to any and all suggested improvements. Credit is owed to obosob for laying the foundation for this little script as well to /u/pixelbenny for graciously providing the bongocat artwork I adapted for the animation. The config.h includes a tweak to the Kyria's LED mapping, so that the order now reflects their physical positions, making animations smoother. Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Simon Schuster <SimonSchuster@Simons-MacBook-Pro-2.local> Co-authored-by: James Incandenza <james@ij.net>
* Add bat43 rev2 (#9319)yfuku2020-06-1010-43/+208
| | | | | | | | | | | | | * add rev2 * Update keyboards/bat43/rev1/rules.mk Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/bat43/rev2/rules.mk Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Ryan <fauxpark@gmail.com>
* [Keymap] Add dual layer keymap for xd002 macropad (#9222)elmo-space2020-06-104-0/+206
| | | | Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Drashna Jaelre <drashna@live.com>
* [Keyboard] Wazowski 23-19 PCB Support (#9198)Keebz Dot Net2020-06-108-0/+382
| | | | | Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Chris Figueroa <chrisfigueroa16@gmail.com>
* adds support for the atmega328 (#9043)itsnoteasy2020-06-1012-12/+31
| | | Co-authored-by: Ryan <fauxpark@gmail.com>
* fix rgb mode selection and lighting increments for the 1894 (#9336)Chandler2020-06-102-6/+7
|
* Add Sinc keyboard (#8986)Danny2020-06-1014-0/+1535
| | | | | | | | | | | | | | | | | * Add Sinc (WIP) * Rename layouts, add keymaps * Set EEPROM VIA layout value * Update QMK Configurator json * Update VIA layout value * Add default folder * Add PR suggestions * Fix keyboard name
* Add new iris keymap 'fluffactually' (#9325)fluffactually2020-06-103-0/+101
| | | | | * Add new iris keymap 'fluffactually' * Keymap suggested changes - layer_state_t
* kbdfans/kbd67/rev2: Fix ISO layout macro (#9329)Sergey Vlasov2020-06-101-2/+2
| | | | | | | | | | | A user in Discord reported that the right bracket and ISO hash keys on KBD67 rev2 using LAYOUT_65_iso were swapped. When comparing LAYOUT_65_iso with LAYOUT_65_ansi, the problem with a wrong assignment of the right bracket key is obvious — that key is K1D in the ANSI layout macro, but the ISO layout macro had K1E there, and K1D at the position of the ISO hash key. Fix the LAYOUT_65_iso macro by swapping those arguments (and also align the K1D argument for the right bracket key properly).
* Add VIA support to KC60 (#9351)James Young2020-06-104-1/+36
| | | | | * Add VIA support to KC60 * enable Bootmagic Lite
* Fixed slave-side keyboard half unresponsiveness (#9360)Adrian2020-06-101-1/+4
| | | | | | | | | | * Fixed slave-side keyboard half unresponsiveness due to how LUFA handles USB_Disable() * changes to formatting Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Joel Challis <git@zvecr.com>
* [Docs] Japanese translation of docs/feature_wpm.md (#9254)umi2020-06-101-0/+24
| | | | | | | | | * add feature_wpm.md translation * update based on comment * update based on comment * update based on comment
* Add BDN9 rev2 (#9017)Danny2020-06-0925-159/+1835
|
* Gami Studio Lex60: Configurator Layout support (#7726)James Young2020-06-091-0/+79
| | | | | | | | | | | | | | | * Gami Studio Lex60: Configurator Layout support * correct key sizes on bottom row per lukelex * add LAYOUT_60_ansi To test, run `make gami_studio/lex60:default_60_ansi` and flash. * add 60_ansi keymap To test, run `make gami_studio/lex60:60_ansi` and flash. * remove data for 60_ansi layout
* Sidekick/qmk firmware (#9229)AlisGraveNil2020-06-107-0/+206
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 5/28/20 * Create readme 2.md * Revert inadvertently changed files * Update keyboards/clawsome/sidekick/config.h Co-authored-by: Nick Brassel <nick@tzarc.org> * Update keyboards/clawsome/sidekick/rules.mk Co-authored-by: Nick Brassel <nick@tzarc.org> * Update keyboards/clawsome/sidekick/config.h Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/clawsome/sidekick/info.json Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/clawsome/sidekick/info.json Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/clawsome/sidekick/rules.mk Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/clawsome/sidekick/rules.mk Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/clawsome/sidekick/rules.mk Co-authored-by: Nick Brassel <nick@tzarc.org> Co-authored-by: Nick Brassel <nick@tzarc.org> Co-authored-by: Ryan <fauxpark@gmail.com>
* Adding extra supported Boardwalk layout (#9341)Rolf Don2020-06-091-0/+15
| | | * Added ortho layout with 2x2u spacebars
* XD75 clanghans layout (#9313)clanghans2020-06-103-0/+96
| | | Co-authored-by: Ryan <fauxpark@gmail.com>
* [Keyboard] Add nt660 PCB (#9042)Maarten Dekkers2020-06-0911-0/+781
| | | | | | | | * Upload nt660 files * Apply suggestions from code review * Apply suggestions from code review
* [Keyboard] add prophet support (#9275)Cable Car Designs2020-06-0912-0/+1575
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * add prophet support * Update keyboards/westfoxtrot/prophet/config.h * Update keyboards/westfoxtrot/prophet/rules.mk * Update keyboards/westfoxtrot/prophet/config.h * Update keyboards/westfoxtrot/prophet/prophet.c * Update keyboards/westfoxtrot/prophet/readme.md * Update keyboards/westfoxtrot/prophet/readme.md * Update keyboards/westfoxtrot/prophet/keymaps/default/keymap.c * Update keyboards/westfoxtrot/prophet/keymaps/default/keymap.c * Update keyboards/westfoxtrot/prophet/keymaps/via/keymap.c * Update keyboards/westfoxtrot/prophet/keymaps/via/keymap.c * Update keyboards/westfoxtrot/prophet/keymaps/via/keymap.c * Update keyboards/westfoxtrot/prophet/keymaps/via/keymap.c * remove bootloader_defs fixed via keymap * Update keyboards/westfoxtrot/prophet/prophet.h * Update keyboards/westfoxtrot/prophet/keymaps/default/keymap.c * Update keyboards/westfoxtrot/prophet/keymaps/default/keymap.c * Update keyboards/westfoxtrot/prophet/keymaps/via/keymap.c * Update keyboards/westfoxtrot/prophet/keymaps/via/keymap.c * Update keyboards/westfoxtrot/prophet/keymaps/via/keymap.c * changed vendor id * changed prophet.c
* Add OS compatibility matrix for basic keycodes (#8557)Ryan2020-06-091-199/+206
|
* [Update] Japanese translation of newbs_learn_more_resources.md (#9288)Takeshi ISHII2020-06-091-15/+24
| | | | | | | | | * Updated the Japanese translation of newbs_learn_more_resources.md Updated the Japanese translation of newbs_learn_more_resources.md to 0.9.0. * update docs/ja/newbs_learn_more_resources.md * update ja/newbs_learn_more_resources.md
* [Update] Japanese translation of docs/newbs_testing_debugging.md. (#9286)Takeshi ISHII2020-06-091-14/+11
| | | | | | | | | | | | | | | | | | | | * Updated the Japanese translation of newbs_testing_debugging.md. Updated the Japanese translation of newbs_testing_debugging.md to 0.9.0. * Update docs/ja/newbs_testing_debugging.md Co-authored-by: s-show <s1shimz@gmail.com> * Update docs/ja/newbs_testing_debugging.md Co-authored-by: shela <shelaf@users.noreply.github.com> * Update docs/ja/newbs_testing_debugging.md Co-authored-by: shela <shelaf@users.noreply.github.com> Co-authored-by: s-show <s1shimz@gmail.com> Co-authored-by: shela <shelaf@users.noreply.github.com>
* [Keyboard] Add VIA support for Eon40 (#9330)Maarten Dekkers2020-06-072-0/+45
| | | Co-authored-by: Maarten Dekkers <maartenn2001@gmail.com>
* [Keyboard] Fix error_log complaint about handwired/onekey layout macro (#9263)Ryan2020-06-0710-50/+44
|
* [Docs] Japanese translation of docs/feature_ps2_mouse.md (#9030)umi2020-06-081-0/+293
| | | | | | | | | | | * add feature_ps2_mouse.md translation * update based on comment * update based on comment * update based on comment * update based on comment
* [Docs] Japanese translation of docs/feature_terminal.md (#9033)umi2020-06-081-0/+112
| | | | | | | * add feature_terminal.md translation * add header for git * update based on comment
* [Docs] Update udev rules to use TAG+="uaccess". (#8750)Pete Johanson2020-06-071-15/+12
|
* [Docs] Japanese translation of docs/feature_swap_hands.md (#9032)umi2020-06-071-0/+36
| | | | | | | * add feature_swap_hands.md translation * update based on comment * back to original translation
* [Keyboard] Add Via config for Clueboard 66 (#9010)Frothy2020-06-062-0/+50
| | | | | | | | | | | | | | | * Added Via config for Clueboard 66 * Update keyboards/clueboard/66/keymaps/via/rules.mk Co-authored-by: Ryan <fauxpark@gmail.com> * Enabled MouseKeys This required enabling LINK_TIME_OPTIMIZATION_ENABLE * Added 4th layer as per tzarc's recommendation on another PR Co-authored-by: Ryan <fauxpark@gmail.com>
* The TAGs of the original document has been updated to facilitate future ↵Takeshi ISHII2020-06-054-8/+8
| | | | verification. (#9285)
* [Keyboard] add Juliet (#9240)Derek2020-06-057-0/+411
| | | | Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Derek <sevinty7@gmail.com>
* [Keyboard] add 1894 support to qmk (#9238)Chandler2020-06-0514-0/+741
|
* [Keyboard] Gboards common - TOGG()/inject.h (#9236)Jeremy Bernhardt2020-06-051-1/+20
|
* Major enhancements to spidey3 keymaps and userspace (#9261)Joshua Diamond2020-06-0511-179/+584
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add Chrome OS specific keys to 75_ansi/spidey3 * Clean up duplicative settings in rules.mk * Refactor spidey3 userspace to use rgb layer blink * Blink green on wakeup * Improve _FN layer indicator * Glyph transformation modes: wide, script, fraktur, and enclosed characters * Add spider unicode glyph * Fix compile error when NO_ACTION_ONESHOT * Add a few more emoji * Further refinement of lighting layer usage * Fix reversed yes/no ack * Lighting layers override RGB off * Fix missing wide and incorrect script numbers * Add LOL and surprise emoji * Add missing break in switch statement * Trim firmware size * Use usage ID definitions in report.h * Some minor whitespace cleanup * Disable some unused features to reduce firmware size * Print version on startup * Seed rand() on first keystroke * Add a key to immediately sleep CrOS * Switch to Bootmagic Lite * Trim down firmware size a little bit more * Make RGBLIGHT_MODE_TWINKLE+4 my default * Scan rate debug / fix version printing Delay printing version on startup (console may not be ready) Better scan rate reporting * Disable locking caps, etc. to save more space * Enable LTO * Better seed for rand() * Set MAX_LAYER for some performance improvement * Another scan rate improvement * Set manufacturer * New startup animation * Add GUI lock for F-keys (for CrOS) * Add visual indication for glyph replacement and F-keys GUI lock * Some cleanup; run cformat on spidey3 userspace * Cycle between debug verbosity options * Fix disable RGB Lighting after wakeup on Mac
* [Keymap] add keymap for meishi2 (#9270)MakotoKurauchi2020-06-052-0/+39
| | | | | | | | | | | | * add keymap "led_status" * modified readme * Update keyboards/meishi2/keymaps/led_status/keymap.c * I modified the code to be simple. * Update keyboards/meishi2/keymaps/led_status/keymap.c
* Changes to abishalom Tada68 keymap (#9278)Abi Shalom2020-06-053-41/+15
| | | | | | * Changes to abishalom Tada68 keymap * Update keyboards/tada68/keymaps/abishalom/rules.mk
* [Keyboard] keyboards/anavi: Add ANAVI Macro Pad 8 (#9164)Leon Anavi2020-06-059-0/+507
| | | | | | | | | | | | ANAVI Macro Pad 8 is an open source mini mechanical keyboard with 8 keys, backlit, addressable RGB WS2812B LED strip on the back and mini OLED display. Powered by ATmega 32U4 microcontroller and with microUSB connector. Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com> Co-authored-by: Joel Challis <git@zvecr.com> Signed-off-by: Leon Anavi <leon@anavi.org>
* [Keyboard] Add ortho5by12 keyboard (#9141)itsnoteasy2020-06-047-0/+587
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add files via upload * Update keyboards/ortho5by12/rules.mk * Add files via upload * Add files via upload * Update keyboards/ortho5by12/ortho5by12.h * Update keyboards/ortho5by12/ortho5by12.h * Add files via upload * Add files via upload * Update keyboards/ortho5by12/readme.md * Update keyboards/ortho5by12/readme.md * Update keyboards/ortho5by12/readme.md * Update keyboards/ortho5by12/readme.md * Update keyboards/ortho5by12/readme.md * Update keyboards/ortho5by12/readme.md * Update keyboards/ortho5by12/info.json * Update keyboards/ortho5by12/ortho5by12.h * Apply suggestions from code review * Update rules.mk * Update config.h * Update config.h * Update config.h * Delete rules.mk * Delete config.h * Delete info.json * Delete ortho5by12.c * Delete ortho5by12.h * Delete readme.md * Delete keymap.c
* Fix mechlovin/pisces Configurator config (#9290)Joel Challis2020-06-041-2/+3
| | | | | | * Fix mechlovin/pisces Configurator config * Update keyboards/mechlovin/pisces/info.json
* [Keyboard] add hineybush/h10 pcb (#9036)Josh Hinnebusch2020-06-0411-0/+454
| | | | | | | | | | | | | | | | | | | | | | | | * initial h10 commit * update h10 * update files, add via keymap * edit h10 readme * update per PR requests * add copyright (i think this is what fauxpark wants) * fix comment * remove config.h files * update per PR requests * Update keyboards/hineybush/h10/info.json * Update keyboards/hineybush/h10/info.json