| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-07-27 | Add TX Bolt protocol support for Stenography | ||
| Requires virtser; Allows QMK to speak the TX BOlt protocol used by stenography machines and software (such as Plover). The upside is that Plover can be configured to listen only to TX Bolt allow the keyboard to switch layers without need to enable/disable the Plover software, or to have a second non-Steno keyboard work concurrently. | |||
| 2017-07-24 | adds option for alt pitch standards | ||
| 2017-07-23 | adds music mode, music mode songs, music mask | ||
| 2017-07-23 | escape song playing in music | ||
| 2017-07-23 | clean-up planck and preonic keymaps, move audio stuff around | ||
| 2017-05-29 | switched to uint8 and 16 | ||
| 2017-05-25 | removed need to set customtapping term 0. defaults to 0 already | ||
| 2017-05-25 | changed -1 to 0 can't have negative unsigned ints 🤔 | ||
| 2017-05-25 | moved specific tap term to its own function | ||
| included custom_tapping_term in action struct | |||
| 2017-05-25 | Added per case tapping term, updated FF-nikchi keymap. | ||
| 2017-05-15 | emoji support but | ||
| 2017-04-13 | Fix warnings in process_printer | ||
| 2017-04-13 | Fix undefined eeprom warnings in unicode processing | ||
| 2017-03-30 | Worked around some new Makefile issues. | ||
| 2017-03-30 | Pulling and pushing troubles | ||
| 2017-03-29 | Merge branch 'master' into to_push | ||
| 2017-03-28 | Clarify the quantum license (#1042) | ||
| * Clarify the license for files we have signoff on * Update against the currently signed off files * Remove unused and not clearly licensed headers * Replace an #endif I accidentally removed while resolving merge conflicts | |||
| 2017-03-28 | Merge pull request #1112 from newsboytko/newsboytko/midi-keycodes | ||
| Flesh out MIDI support | |||
| 2017-03-02 | fix 'stop_all_notes' naming to be more consistent | ||
| 2017-02-25 | Update existing keymaps | ||
| Update existing keymaps to enable MIDI_BASIC functionality. Also added an option MIDI_ENABLE_STRICT to be strict about keycode use (which also reduces memory footprint at runtime) | |||
| 2017-02-25 | Add basic layer to sample MIDI keycap | ||
| 2017-02-25 | Factor basic note processing into respective processors | ||
| 2017-02-25 | Split MIDI functionality into MIDI_BASIC and MIDI_ADVANCED | ||
| MIDI_ENABLE = no text data bss dec hex filename 0 17080 0 17080 42b8 satan_midi.hex MIDI_ENABLE = yes MIDI_BASIC undefined MIDI_ADVANCED undefined text data bss dec hex filename 0 19494 0 19494 4c26 satan_midi.hex MIDI_ENABLE = yes #define MIDI_BASIC MIDI_ADVANCED undefined text data bss dec hex filename 0 19788 0 19788 4d4c satan_midi.hex MIDI_ENABLE = yes MIDI_BASIC undefined #define MIDI_ADVANCED text data bss dec hex filename 0 20846 0 20846 516e satan_midi.hex MIDI_ENABLE = yes #define MIDI_BASIC #define MIDI_ADVANCED text data bss dec hex filename 0 21140 0 21140 5294 satan_midi.hex | |||
| 2017-02-23 | Fix UNICODE_MAP input_mode problem | ||
| 2017-02-19 | Document size added by MIDI_ENABLE (~3800 bytes according to my experiments) | ||
| satan/keymaps/midi MIDI_ENABLE = no text data bss dec hex filename 0 17080 0 17080 42b8 satan_midi.hex MIDI_ENABLE = yes #define MIDI_TONE_KEYCODE_OCTAVES 3 // default text data bss dec hex filename 0 20846 0 20846 516e satan_midi.hex MIDI_ENABLE = yes #define MIDI_TONE_KEYCODE_OCTAVES 2 // fewer octaves text data bss dec hex filename 0 20846 0 20846 516e satan_midi.hex | |||
| 2017-02-19 | expose midi_config | ||
| 2017-02-19 | add keycodes for transpose range | ||
| 2017-02-19 | implement modulation | ||
| 2017-02-19 | add support for pedal cc messages | ||
| 2017-02-19 | remove disabled code | ||
| 2017-02-19 | Alternative version with a tone array | ||
| tone array: text data bss dec hex filename 0 25698 0 25698 6462 satan_newsboytko.hex 0x6480 bytes written into 0x7000 bytes memory (89.73%). note on array: text data bss dec hex filename 0 25802 0 25802 64ca satan_newsboytko.hex 0x6500 bytes written into 0x7000 bytes memory (90.18%). | |||
| 2017-02-19 | clean up commented code | ||
| 2017-02-19 | initial implementation of polyphony using variable length array of notes on | ||
| 2017-02-16 | fix travis and reduce warnings | ||
| 2017-02-15 | fix weirdness with arm and mods | ||
| 2017-02-15 | unique variable name | ||
| 2017-02-15 | publicise variables | ||
| 2017-02-15 | add unicode common file, get names right | ||
| 2017-02-15 | add unicode common file, get names right | ||
| 2017-02-15 | split up unicode systems into different files | ||
| 2017-02-10 | Implement tap mod dual role for right side mods. | ||
| 2017-02-06 | Merge pull request #960 from ofples/feature/combos | ||
| Keyboard combination triggers | |||
| 2017-02-06 | Merge pull request #981 from jonasoberschweiber/osx-surrogate-pairs | ||
| Add support for Unicode supplementary planes on OS X | |||
| 2017-01-29 | race condition between oneshot_mods and tap_dance | ||
| since the keycode for a tap dance process gets process only after the TAPPING_TERM timeout, you really only have ONESHOT_TIMEOUT - TAPPING_TERM time to tap or double tap on the key. This fix save the oneshot_mods into the action.state structure and applies the mods with the keycode when it's registered. It also unregisters the mod when the the tap dance process gets reset. | |||
| 2017-01-23 | turn off rgb_midi in ez | ||
| 2017-01-09 | Unregister all mods before inputting Unicode, and reregister afterwards | ||
| 2016-12-31 | Add support for supplementary planes for OS X | ||
| 2016-12-23 | add different scales for music mode | ||
| 2016-12-16 | Merge branch 'master' into feature/combos | ||
| 2016-12-16 | Refactored as well as added support for action keys in combos | ||