summaryrefslogtreecommitdiff
path: root/changelog.md
AgeCommit message (Collapse)Author
2019-06-06Moves the changelog to the wikiFlorian Didron
New location: https://github.com/zsa/qmk_firmware/wiki/Changelog
2019-06-06Fix debouncing issue for eager algos (#73)Drashna Jaelre
2019-06-06Add additional pins for Teensy 3.x and LC (#72)Drashna Jaelre
2019-06-06Parameterise STM32 I2C pin modes and timing parameters. (#5671) (#71)Drashna Jaelre
I2C timing parameters were seemingly set up for an STM32F303 target MCU, at a specific clock speed. This commit allows specifying the timing parameters via config.h, allowing other STM32 MCUs to be targeted, potentially at different clock frequencies. Alternate function modes for the I2C pins are now also configurable, allowing for remapping to other pins.
2019-06-06Fixes compile errors for massdrop keyboards (#70)Drashna Jaelre
2019-06-06Moving rgb typedefs into a single location (#5978) (#69)Drashna Jaelre
Because someone named the define poorly Using full relative path as handwired/promethium has a color.h file
2019-06-06upgrade gcc-arm-none-eabi from the default 5.4.1 to 6.3.1 due to ARM runtime ↵zvecr
issues
2019-06-04Smallish overhaul of Auto-Shift feature (#67)Drashna Jaelre
* Fix edge case when using One Shot Layer with Auto Shift, and it not triggering the cleanup * Remove junk code (no longer used) * Replace `(un)register_code` calls with `tap_code` where appropriate * Fixed up Switch check to be more readable (less verbose) * Simplified modifier check (if it comes back non-zero, there are mods) * Add additional function calls for autoshift settings * Made all variables static, since there are function calls to get their status * Fixed up documentation
2019-06-04Add belgian layout for sendstring (#6008) (#64)Drashna Jaelre
* belgian layout had no sendstring definition * backtick was not defined for belgian sendstring * slash definition was wrong for belgian sendstring Co-Authored-By: fauxpark <fauxpark@gmail.com> * use BE_ keys whenever we can Co-Authored-By: fauxpark <fauxpark@gmail.com> * ^ can be sent as a normal key (not a dead key) with altgr+para
2019-06-04Fixing matrix_scan so it properly returns changed status (#63)Drashna Jaelre
2019-06-04Fix TO() and DF() calling layer_state_set_[kb,user] twice (#6003) (#62)Drashna Jaelre
2019-06-04Fix up Debouncing in AVR Templates (#5964) (#59)Drashna Jaelre
2019-06-04Add Solus support to linux_install.sh scriptchax
Add Solus support to linux_install.sh script added update-repo command before install command
2019-05-20Merge branch 'master' into audio_click_delayFlorian Didron
2019-05-20Merge branch 'master' into fix/caps_lock_tap_hold_functionsFlorian Didron
2019-05-20Merge branch 'master' into fix/split_common_i2c_backlightFlorian Didron
2019-05-20Merge branch 'master' into fix/mouse_keysFlorian Didron
2019-05-20Merge branch 'master' into fix/oled_driver_for_splitsFlorian Didron
2019-05-17Adds a configurable initial delay to the audio clicky feature (#4286)Josh
* Adding an AUDIO_CLICKY_DELAY_DURATION configurable value to the AUDIO_CLICKY feature. * Tweaking my community keymap to work better with my rev 4 planck.
2019-05-17Make delay for Capslock in Hold-Tap functions configurable (#5497)Drashna Jaelre
* Increase delay for Hold-Tap register for CAPSLOCK Because it seems that the 80ms delay wasn't too much * Screw it, make the caps delay a define and make it configurable
2019-05-16Add effect range to rgblight.c (#5856)Takeshi ISHII
* add rgblight_set_effect_range() * implement effect range * Arrange the order of function list in rgblight.h . * update docs/feature_rgblight.md * fix RGBLIGHT_RAINBOW_SWIRL_RANGE default value * add example code about Utility Functions * add example code about direct operation functions * When RGBLIGHT_SPLIT is defined, the following function has no meaning and is invalidated. * rgblight_setrgb_master(r, g, b) * rgblight_setrgb_slave(r, g, b) * rgblight_sethsv_master(h, s, v) * rgblight_sethsv_slave(h, s, v) * add temporary test code for rgblight_set_effect_range * fix rgblight_effect_knight() bug * Test End. Revert "add temporary test code for rgblight_set_effect_range" This reverts commit 5680cddd012d68b2db75a532862a7fef250f8973.
2019-05-10[Split] fix split_common i2c backlight disabling (#3886)Rainer Clasen
slave backlight was always on - as get_backlight_level() doesn't indicate if the backlight is enabled or not. also updated the corosponding code for serial transport to stop peeking directly at 'internal' backlight_config structure.
2019-05-06Re-fix Mousekey Movements (#5740)Drashna Jaelre
* Re-fix Mousekey Movements After the new movement model was instroduced, it broke diagonal momement, again. Reapplying fix from #3147 to both old and new acceleration method. * Make diagonal mouse report checks more readable Co-Authored-By: drashna <drashna@live.com>
2019-05-06Fix issuse with OLED Driver and Split Keyboard codeXScorpion2
2019-05-06Merge branch 'master' into feature/unicode_map_improvementsFlorian Didron
2019-05-06Merge branch 'master' into enable_lto_optionFlorian Didron
2019-05-05New keycode macro (XP) for shifted character pairs using UNICODEMAP + bug ↵Konstantin Đorđević
fixes and improvements (#4803) * Expose unicode_saved_mods * Add UNICODEMAP shift pair functionality and XS keycode * Add XS to keycode reference documentation * Pick pair index based on both Shift and Caps Lock state * Add XS to Unicode feature docs * Clean up process_unicode* headers * Extract unicode_map index calculation into function * Pick pair index as XOR rather than OR of Shift and Caps states * unicode_input_start() has to be called before the unicode_map index is calculated * Replace unicodemap_input_error() with more generic unicode_input_cancel() * Replace register+tap+unregister with tap_code16(LCTL(LSFT(KC_U))) * UNICODE_OSX_KEY → UNICODE_KEY_OSX, UNICODE_WINC_KEY → UNICODE_KEY_WINC * Make keycode range checks more robust * Fix keycode range checks for different input modes * Add UNICODE_KEY_LNX, update docs * QK_UNICODEMAP_SHIFT → QK_UNICODEMAP_PAIR * XS → XP, update docs * Tweak Unicode docs * Use recently added MOD_MASK_SHIFT and IS_HOST_LED_ON helpers * Update Unicode table in docs/keycodes.md * Update Unicode docs per review comments * Replace references to Mac OS X with macOS in Unicode docs * As of v0.9.0, WinCompose supports all possible code points * Expand descriptions in XP docs * Update keycode table and cycling docs * Further expand cycling docs
2019-05-05Add option to enable LTO easily (#5674)Drashna Jaelre
* Add option to enable LTO easily and disable features that cause compiling errors with LTO * Add documentation about LTO option * Add to show_options
2019-05-05Space Cadet: Reducing unnecessary reported keypresses (#5781)XScorpion2
* Reducing unnecessary reported keypresses and minor docs / variable name changes * Apply suggestions from code review Co-Authored-By: XScorpion2 <rcalt2vt@gmail.com>
2019-04-26Merge branch 'master' into src_fixFlorian Didron
2019-04-24Add changelogDrashna Jaelre
2019-04-24Add changelogDrashna Jaelre
2019-04-23Merge branch 'master' into fix/rgb_matrix_initFlorian Didron
2019-04-23Merge branch 'master' into fix/avr_gcc_compilerFlorian Didron
2019-04-23Merge branch 'master' into mouse_keysFlorian Didron
2019-04-23Merge branch 'master' into feature/more_reactive_modesFlorian Didron
2019-04-23Merge branch 'master' into feature/oled_driverFlorian Didron
2019-04-22Add changelogDrashna Jaelre
2019-04-22Add changelogDrashna Jaelre
2019-04-22Add changelogDrashna Jaelre
2019-04-22Add changelogDrashna Jaelre
2019-04-22Add changelogDrashna Jaelre
2019-04-22Add ChangelogDrashna Jaelre
2019-04-18Add changelog for eager PR fixDrashna Jaelre
2019-04-18Fixes the changelog formatting.Florian Didron
2019-04-18Merge branch 'master' into feature/ws2812_matrixFlorian Didron
2019-04-18Merge branch 'master' into fix/configurator_changeFlorian Didron
2019-04-18Merge branch 'master' into fix/combo_logicFlorian Didron
2019-04-16Update changelog.mdDrashna Jaelre
2019-04-16Update changelog.mdDrashna Jaelre