summaryrefslogtreecommitdiff
path: root/quantum
Commit message (Collapse)AuthorAge
...
| | * Add keymap_cyrillic.h, lots of cyrillic characterskuel2016-08-02
| | |
| * | Merge pull request #561 from 0xdec/patch-1Jack Humbert2016-08-03
| |\ \ | | |/ | |/| Clean up formatting & tiny refactor in rgblight.c
| | * Simplify HSV->RGB calculationJordi Orlando2016-07-26
| | | | | | | | | De-dupe repeated code
| | * Increament -> incrementJordi Orlando2016-07-26
| | |
| | * Clean up rgblight.cJordi Orlando2016-07-26
| | | | | | | | | Fix formatting issues, clarify comments
| * | Add IN_LIKE_FLINT songJeeBak Kim2016-07-30
| | |
| * | Most ergodox keymaps compiles on InfinityFred Sundvik2016-07-29
| | | | | | | | | | | | There are linker errors due to missing led funcitonality though
| * | tap-dance: Add some debugging supportGergely Nagy2016-07-27
| |/ | | | | | | Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
| * Merge pull request #558 from lindhe/masterJack Humbert2016-07-25
| |\ | | | | | | Fix misspelled command in Norwegian helper
| | * Change Nordic ampersand code to match the EnglishAndreas Lindhé2016-07-25
| | | | | | | | | | | | Changed from "NO_AMP" to "NO_AMPR" since the KC one is "KC_AMPR"
| | * Fix misspelled command in Norwegian helperAndreas Lindhé2016-07-25
| | |
| * | Fixes midi functionalityJack Humbert2016-07-24
| | |
| * | Merge pull request #552 from robertdale/music-play-fixJack Humbert2016-07-24
| |\ \ | | | | | | | | Fixes issue #551 - ensure there's a recording to play before playing
| | * | ensure there's a recording to play before playing; also enables the LGUI ↵Robert Dale2016-07-24
| | |/ | | | | | | | | | button to play a tone
| * | Merge pull request #550 from Darthabel/fix_bepoJack Humbert2016-07-24
| |\ \ | | | | | | | | Fix some errors in bepo mapping
| | * | Fix some errors in bepo mappingVivien Alger2016-07-24
| | |/
| * | tap-dance: Code cleanupGergely Nagy2016-07-22
| | | | | | | | | | | | | | | | | | | | | | | | Removes a number of duplicated code, by passing actions around instead of keycodes, so the various dance action functions do not have to look up the action, but the caller does that for them. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
| * | tap-dance: Support user_data for the callbacksGergely Nagy2016-07-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Refactored the code a little, so all callbacks now receive a `user_data` pointer, which can be anything. As an example, the key pairs from `ACTION_TAP_DANCE_DOUBLE` now use this, and custom, built-in functions. This makes it easier to extend the tap dance functionality, and also simplifies the code a little. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
| * | tap-dance: Support for holding keysGergely Nagy2016-07-22
| |/ | | | | | | | | | | | | | | | | | | | | | | With this change, tap dance will now store the pressed state of the tap-dance key, and allow one to make an action sooner, while the key is still held, and only unregister when the key is released. The registration must happen in the `on_dance_finished` callback, while unregistering goes to `on_reset`. The surrounding code makes sure not to call either multiple times. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
| * Merge pull request #518 from jakllsch/upstreamJack Humbert2016-07-21
| |\ | | | | | | keymap_extras changes
| | * keymap_dvorak.h: add missing shifted keys, fix whitespaceJonathan A. Kollasch2016-07-14
| | |
| | * extra_keymaps: use RALT() instead of 0x1400 for AltGrJonathan A. Kollasch2016-07-14
| | |
| | * keymap_extras: add newline at end of filesJonathan A. Kollasch2016-07-14
| | |
| * | add a couple of commentsPavlos Vinieratos2016-07-19
| | |
| * | on_each_tap_fn is called on tap down and tap upPavlos Vinieratos2016-07-19
| | |
| * | in the default case, it should be called if there is actually a tapPavlos Vinieratos2016-07-18
| | | | | | | | | | | | | | | dance happening, and in the normal case, it should be called when the tap down is happening.
| * | change naming, and remove extraneous definitionPavlos Vinieratos2016-07-17
| | |
| * | add an `anyway` and a `reset` callbackPavlos Vinieratos2016-07-16
| | | | | | | | | | | | | | | | | | | | | when using tap dance, we have the `regular` callback that is called on the last tap. this commit adds an `anyway` callback that is called on every tap, and a `reset` callback that is called on reset of the tap dance taps.
| * | in case its NULLPavlos Vinieratos2016-07-16
| |/
| * extract reset keyboard into a functionPavlos Vinieratos2016-07-13
| | | | | | | | that makes it easy to call reset_keyboard() from a function in a keymap
| * Merge pull request #477 from Smilliam/masterJack Humbert2016-07-11
| |\ | | | | | | Canceling Space Cadet state with opposite shift key
| | * Made rollover behavior for space cadet optionalSmilliam2016-07-10
| | |
| | * fixed indentation.Smilliam2016-07-04
| | |
| | * Allow Space Cadet state to be canceled by alternate Shift keySmilliam2016-07-04
| | | | | | | | | | | | Allows you to press RSHIFT to cancel the insertion of a "(" when holding down LSHIFT. Alternatively, allows you to press LSHIFT to cancel the insertion of a ")" when holding down RSHIFT. This change enables you to renege from outputting a character should you press a shift key erroneously.
| * | Move return out of event if blockTerryMathews2016-07-08
| | | | | | | | | | | | | | | According to Jack, this makes the return case not be processed. Doesn't break anything in the firmware.
| * | Create keycodes for RGB control functionsTerryMathews2016-07-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Moves RGB controls out of the macro function and assigns them their own keycodes: RGB_TOG (toggle on/off) RGB_MOD (mode step) RGB_HUI (increase hue) RGB_HUD (decrease hue) RGB_SAI (increase saturation) RGB_SAD (decrease saturation) RGB_VAI (increase brightness) RGB_VAD (decrease brightness)
| * | Fix the range for consumer keysFred Sundvik2016-07-07
| | |
| * | fixes quantum template (actually)Jack Humbert2016-07-07
| | |
| * | updates rgblight implementation, makes non-timer stuff compatible with audioJack Humbert2016-07-07
| | |
| * | Merge pull request #490 from fredizzimo/integrate_visualizerJack Humbert2016-07-07
| |\ \ | | | | | | | | Integrate visualizer for ChibiOS and Infinity Ergodox
| | * | Move the visualizer_user file to keymap folderFred Sundvik2016-07-07
| | | | | | | | | | | | | | | | Also rename it to visualizer.c
| | * | Delete lcd_backlight_hal.cFred Sundvik2016-07-07
| | | | | | | | | | | | | | | | | | | | The functionality can now be found in the infinity_erogodox.c file instead.
| | * | Fix the SERIAL_LINK_ENABLE macro in VisualizerFred Sundvik2016-07-07
| | | | | | | | | | | | | | | | Rename from USE_SERIAL_LINK -> SERIAL_LINK_ENABLE
| | * | Fix visualizer crash at startupFred Sundvik2016-07-07
| | | | | | | | | | | | | | | | | | | | | | | | Visualizer and serial link initialized in the wrong order. The LED_ENABLED define wasn't set properly uGfx is always initialized
| | * | Makefile fixes and update of VisualizerFred Sundvik2016-07-07
| | | |
| | * | Makefile changes and files to compile VisualizerFred Sundvik2016-07-07
| | | |
| * | | corrects quantum templateJack Humbert2016-07-07
| | | |
| * | | default keymap, reset sorted out for now, added serial to makefileJack Humbert2016-07-06
| |/ /
| * | Merge commit '73d890a2c9c34b905cd5e74e7146fdd4578dcb96' into add_visualizerFred Sundvik2016-07-06
| | |
| * | Delete .gitmodules from visualizerFred Sundvik2016-07-06
| | |