Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2020 November 28 Breaking Changes Update #11053

Merged
merged 79 commits into from Nov 28, 2020
Merged

2020 November 28 Breaking Changes Update #11053

merged 79 commits into from Nov 28, 2020

Commits on Oct 30, 2020

  1. Branch point for 2020 November 28 Breaking Change

    Update readme.md
    noroadsleft committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    47fff74 View commit details
    Browse the repository at this point in the history
  2. Remove matrix_col_t to allow MATRIX_ROWS > 32 (#10183)

    The matrix_col_t type was added in commit 0284431 (part of #3449),
    but then the code which used that type was removed in #6140, and no
    other users were added since that time.  The presence of that type,
    however, limits MATRIX_ROWS to 32, which probably does not matter for a
    real keyboard, but prevents doing things like making a firmware to test
    all existing pins on a board like Teensy++ 2.0 (which has 46 GPIOs).
    sigprof authored and noroadsleft committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    53ad78b View commit details
    Browse the repository at this point in the history
  3. Add support for soft serial to ATmega32U2 (#10204)

    * Add support for soft serial to ATmega32U2
    
    * Update drivers/avr/serial.c
    
    * Update drivers/avr/serial.c
    
    * Update drivers/avr/serial.c
    
    * Fix comment
    
    * Update drivers/avr/serial.c
    takai authored and noroadsleft committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    73d2075 View commit details
    Browse the repository at this point in the history
  4. Change MIDI velocity implementation to allow direct control of veloci…

    …ty value (#9940)
    
    * Initial changes to expose "real" MIDI velocity
    
    * Change MI_VELU and MI_VELD to fit new logic
    
    * Apply cleanups from fauxpark's review
    
    my bad on the errant whitespace and else {} placements
    
    * Slight changes to MI_VELD to match values when velocity is falling to when it is rising
    
    * Add keycode MI_VEL_0
    
    * Update compute_velocity() to handle MI_VEL_0
    
    * Store velocity as 7 bits to hard cap value at 127
    jakobkg authored and noroadsleft committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    bf84d35 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b1b7696 View commit details
    Browse the repository at this point in the history
  6. Actually use eeprom_driver_init().

    tzarc authored and noroadsleft committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    2f2432f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    9664723 View commit details
    Browse the repository at this point in the history
  8. Joystick 16-bit support (#10439)

    * Joystick 16-bit support
    
    * Add variable joystick axes resolution
    
    * Moved #define statements to .h files
    
    * Moved definitions to quantum/joystick.h
    
      Removed duplicate definitions from usb_descriptor.h and
      process_joysick.h
    
      Adjust process_joystick.c and usb_descriptor.c to use the pre-computed
      "JOYSTICK_RESOLUTION" value which contains the logical maximum value
      of a joystick axis
    
    * Cleaning up unnecessary code
    
    * Update docs/feature_joystick.md
    
    Co-authored-by: Ryan <fauxpark@gmail.com>
    
    * Workaround to joystick.h not being included to report.h
    
    * Removed unnecessary newlines, updated report.h
    
    Changed JOYSTICK_AXES_RESOLUTION conditional in report.h
    
    Co-authored-by: Ryan <fauxpark@gmail.com>
    2 people authored and noroadsleft committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    f728c24 View commit details
    Browse the repository at this point in the history
  9. Per-encoder resolutions (#10259)

    * Per-encoder resolutions
    
    * Resolutions for right hand
    fauxpark authored and noroadsleft committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    310662f View commit details
    Browse the repository at this point in the history
  10. Share button state from mousekey to pointing_device (#10179)

    * Branch point for 2020 November 28 Breaking Change
    
    Update readme.md
    
    * Share button state from mousekey to pointing_device
    
    Co-authored-by: Nick Brassel <nick@tzarc.org>
    
    Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
    Co-authored-by: Nick Brassel <nick@tzarc.org>
    3 people committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    eecedf0 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    b1a6b16 View commit details
    Browse the repository at this point in the history
  12. Add advanced/efficient RGB Matrix Indicators (#8564)

    * Add Advanced RGB Matrix effects
    
    Add a new option, so that we can better handle custom indicators
    
    * Switch to led min/max instead of params
    
    Because params has already been incremented and is wrong now
    
    * Add indicator color function for use with advanced indicator functions
    
    * Add docs and helper macros
    
    * Add comment for explanations
    
    * Fix macro variables
    
    * Fix typo
    
    * Run clang-format on rgb_matrix.h
    drashna authored and noroadsleft committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    08caa7a View commit details
    Browse the repository at this point in the history
  13. Naming change.

    tzarc authored and noroadsleft committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    46869dd View commit details
    Browse the repository at this point in the history
  14. Support for STM32 GPIOF,G,H,I,J,K (#10206)

    * Add GPIOF/GPIOH.
    
    * Also add GPIOI,GPIOJ,GPIOK, to match ChibiOS 20.x.
    
    * Make GPIOK opt-in, describe what a keyboard designer needs to do in order to gain access.
    tzarc authored and noroadsleft committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    53f2b5b View commit details
    Browse the repository at this point in the history
  15. Add milc as a dependency and remove the installed milc (#10563)

    * Add milc as a dependency and remove the installed milc
    
    * update doctor.py too
    
    * pyformat
    
    * remove rather than shim questions
    skullydazed authored and noroadsleft committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    fa6bd5c View commit details
    Browse the repository at this point in the history
  16. ChibiOS upgrade: early init conversions (#10214)

    * Migrate at_at/660m to use new ChibiOS early initialisation code, use generic F072 board.
    
    * Migrate cannonkeys/satisfaction75 to use new ChibiOS early initialisation code, use generic F072 board.
    
    * Migrate nebula12 to use new ChibiOS early initialisation code, use generic F072 board.
    
    * Defer GENERIC_STM32_F072XB board files to ChibiOS.
    
    * Create generic mcuconf.h file for GENERIC_STM32_F072XB.
    
    * Create generic mcuconf.h file for STM32_F103_STM32DUINO.
    
    * Create generic mcuconf.h file for GENERIC_STM32_F042X6.
    
    * Allow boards to override EARLY_INIT_PERFORM_BOOTLOADER_JUMP.
    tzarc authored and noroadsleft committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    46d7b25 View commit details
    Browse the repository at this point in the history
  17. ChibiOS upgrade: configuration file migrator (#9952)

    * Initial commit for ChibiOS conf migration.
    
    * Modify paths, normalise chconf.h and halconf.h to be common.
    
    * Allow deletion of non-overridden files.
    tzarc authored and noroadsleft committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    2e1232c View commit details
    Browse the repository at this point in the history
  18. Haptic and solenoid cleanup (#9700)

    * solenoid: remove two functions that do nothing.
    
    These functions modify the argument, and so they do nothing.
    
    Note: versions of these functions exist in mtdjr's user folder,
    however to core solenoid support and mtdjr user-specific solenoid
    support are exclusive (only one can be used at a time).
    
    So removing these confusing functions does no harm.
    
    * solenoid: bugfix: don't allow dwell time to go 1ms below minimum time.
    
    The previous code allowed dwell time to go 1ms below the configured minimum.
    This change corrects it.
    
    * solenoid: bugfix: when incrementing above maximum dwell time, jump back to minimum, not to 1
    
    The previous code used to jump back to 1, which might be way under the configured minimum setting.
    
    * solenoid: bugfix: on startup actually use the eeprom-stored dwell-time
    
    This is because the dwell time is stored in two variables.
    
    * solenoid: bugfix: on haptic_reset, actually use the newly set default dwell time.
    
    This is needed because dwell time is configured in two variables.
    
    * solenoid: on HPT_RST set buzz to a default value
    
    * solenoid: buzz: reworked to make more configurable. Previous behaviour maintained.
    
    * solenoid: documentation: clarify meaning of dwell time
    
    * solenoid: add feature SOLENOID_DWELL_STEP_SIZE
    
    * solenoid: documentation: added note about the precision of the solenoid time settings
    
    * haptic: Correctly call haptic_reset when eeprom is corrupt.
    
    * haptic: improve what happens if haptic is enabled without erasing eeprom
    
    * haptic: improve what happens if solenoid is enabled without erasing eeprom
    
    * drivers/haptic: fix compilation issue, when haptic is enabled, but solenoid isn't
    purdeaandrei authored and noroadsleft committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    c904520 View commit details
    Browse the repository at this point in the history
  19. XD75 cleanup (#10524)

    * XD75 cleanup
    
    * LAYOUT-ify keymaps
    fauxpark authored and noroadsleft committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    94fea35 View commit details
    Browse the repository at this point in the history
  20. OLED display update interval support (#10388)

    * add OLED_UPDATE_INTERVAL_MS support
    
    * update docs/feature_oled_driver.md
    
    * Update docs/feature_oled_driver.md
    
    Co-authored-by: Joel Challis <git@zvecr.com>
    
    * Update drivers/oled/oled_driver.c
    
    * Update drivers/oled/oled_driver.c
    
    Co-authored-by: Joel Challis <git@zvecr.com>
    2 people authored and noroadsleft committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    12be012 View commit details
    Browse the repository at this point in the history
  21. Add definition based on currently-selected serial driver. (#10716)

    * Add definition based on currently-selected serial driver.
    
    * Apply suggestions from code review
    
    Suggestions from zvecr.
    
    Co-authored-by: Joel Challis <git@zvecr.com>
    
    Co-authored-by: Joel Challis <git@zvecr.com>
    2 people authored and noroadsleft committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    c1295a3 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    daea43d View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    de4cbe3 View commit details
    Browse the repository at this point in the history
  24. Add housekeeping task callbacks so that keyboards/keymaps are capable…

    … of executing code for each main loop iteration. (#10530)
    tzarc authored and noroadsleft committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    c4ecae1 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    f22a61e View commit details
    Browse the repository at this point in the history
  26. Reduce Helix keyboard build variation (#8669)

    * modify helix config. 'helix/rev2' always OLED on
    
    * reduce helix build variation pattern
    
    * helix/rev2/keymaps/xulkal/rules.mk: Explicitly disable helix standard post-processing
    
    **Compilation result does not change**
    
    * helix readmes update
    
    * add temporary test script
    
    * test end. -- Revert "add temporary test script"
    
    This reverts commit 6229ed41f2ff8bac52015150837eaa51d9815e13.
    
    * rename rev2/split_common/rules.mk -> rev2/sc/rules.mk
    
    * rename pico/split_common/rules.mk -> pico/sc/rules.mk
    
    * update keymaps/default/reademe.md
    
    * add 'helix/pico/qmk_conf' and 'helix/rev2/qmk_conf' target
    
    * add ChangeLog for Helix: PR 8669
    
    * fix helix/pico/qmk_conf compile error
    
    Co-authored-by: mtei <2170248+mtei@users.noreply.github.com>
    2 people authored and noroadsleft committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    3ede17e View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    69d8bbf View commit details
    Browse the repository at this point in the history
  28. Some GPIO manipulations in matrix.c change to atomic. (#10491)

    * Changed the processing of select_xxx()/unselect_xxx() in quantum/matrix.c to be atomic.
    
    * Changed the processing of select_xxx()/unselect_xxx() in quantum/split_common/matrix.c to be atomic.
    
    * update matrix.c
    
    * add ATOMIC_BLOCK_FORCEON macro to quantum/quantum_atomic_extend.h
    
    * quantum_atomic_extend.h's contents move into quantum.h
    
    * update ATOMIC_BLOCK_xxx for unknown platform
    
    * ATOMIC_BLOCK macro support PROTOCOL_ARM_ATSAM
    
    * Add Atomic Operation section in docs/internals_gpio_control.md
    mtei authored and noroadsleft committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    75a18e6 View commit details
    Browse the repository at this point in the history
  29. qmk cformat (#10767)

    tzarc authored and noroadsleft committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    991c750 View commit details
    Browse the repository at this point in the history
  30. [Keyboard] Update the Speedo firmware for v3.0 (#10657)

    * Update the Speedo firmware for v3.0
    
    * Cleanup recommendations from the PR checklist
    
    * Address PR feedback
    
    * Update build instructions in readme
    
    * Restructure folders and restore v2 firmware
    
    * Clean up layouts in info.json
    
    * Remove unnecessary files
    
    * Address more PR feedback
    pcewing authored and noroadsleft committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    c3221d4 View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2020

  1. Configuration menu
    Copy the full SHA
    b968a53 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2020

  1. Configuration menu
    Copy the full SHA
    4cdd300 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2020

  1. Add step sequencer feature (#9703)

    * sequencer: create togglable feature
    
    * sequencer: add support for steps
    
    * sequencer: add support for tempo and resolutions
    
    * sequencer: schedule a message print at the right frequency
    
    * sequencer: send a hardcoded note
    
    * sequencer: add support for 8 tracks
    
    * sequencer: play several notes simultaneously
    
    * sequencer: only play the active tracks for a given step
    
    * sequencer: change the default behavior of the track toggler
    
    * sequencer: make number of tracks and track notes customizable
    
    * sequencer: move the keycodes down
    
    Not adding them at the end of the list apparently risks breaking
    compatibility with VIA.
    
    Source: #9703 (comment)
    
    * sequencer: add unit tests
    
    * sequencer: add unit test for matrix_scan_sequencer
    
    * sequencer: expose internal state for better unit-testability
    
    * sequencer: add unit tests for matrix_scan_sequencer
    rbelouin committed Nov 8, 2020
    Configuration menu
    Copy the full SHA
    38527f9 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2020

  1. aeboards/ext65 refactor (#10820)

    * ext65 refactor
    
    * Update rev2.c
    
    * update keymap
    
    * Update keyboards/aeboards/ext65/readme.md
    
    * update with suggestions
    Xelus22 committed Nov 9, 2020
    Configuration menu
    Copy the full SHA
    7d836cb View commit details
    Browse the repository at this point in the history
  2. Refactor xelus/dawn60 for Rev2 later (#10584)

    * refactor for rev2 incoming
    
    * fix cr
    
    * Update keyboards/xelus/dawn60/rev1/config.h
    
    * Update keyboards/xelus/dawn60/dawn60.h
    
    * Update keyboards/xelus/dawn60/config.h
    
    * Update keyboards/xelus/dawn60/dawn60.h
    
    * fix tabs
    
    * small update
    Xelus22 committed Nov 9, 2020
    Configuration menu
    Copy the full SHA
    2098d98 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2020

  1. add DEBUG_MATRIX_SCAN_RATE_ENABLE to common_features.mk (#10824)

    Add a Make variable to easily enable DEBUG_MATRIX_SCAN_RATE on the command line.
    
    eg.
    ```
    make DEBUG_MATRIX_SCAN_RATE_ENABLE=yes  KEYBOARD:KEYMAP
    ```
    mtei committed Nov 10, 2020
    Configuration menu
    Copy the full SHA
    28d6b9d View commit details
    Browse the repository at this point in the history
  2. [Core] Added add_oneshot_mods & del_oneshot_mods (#10549)

    * Added `add_oneshot_mods` & `del_oneshot_mods`
    
    Deleted undefined and unused prototypes:
    - void oneshot_enable(void)
    - void oneshot_disable(void)
    - void oneshot_toggle(void)
    
    Reordered the oneshot functions to follow the same order as other mod
    functions, that is to say : get, add, del, set, clear
    
    * Stricter conditions on add_oneshot_mods & del_oneshot_mods
    
    Prevent extending the one shot timer if the called add_oneshot_mods or del_oneshot_mods do not change anything to the current one shot mod state.
    
    Co-authored-by: David Kosorin <david@kosorin.net>
    
    Co-authored-by: David Kosorin <david@kosorin.net>
    precondition and kosorin committed Nov 10, 2020
    Configuration menu
    Copy the full SHA
    3dcb046 View commit details
    Browse the repository at this point in the history
  3. update chibios os usb for the otg driver (#8893)

    * add support for otg
    
    * update endpoint numbering for stm32f4
    
    * removed testing file
    
    * add DEBUG_MATRIX_SCAN_RATE_ENABLE to common_features.mk (#10824)
    
    Add a Make variable to easily enable DEBUG_MATRIX_SCAN_RATE on the command line.
    
    eg.
    ```
    make DEBUG_MATRIX_SCAN_RATE_ENABLE=yes  KEYBOARD:KEYMAP
    ```
    
    * [Core] Added `add_oneshot_mods` & `del_oneshot_mods` (#10549)
    
    * Added `add_oneshot_mods` & `del_oneshot_mods`
    
    Deleted undefined and unused prototypes:
    - void oneshot_enable(void)
    - void oneshot_disable(void)
    - void oneshot_toggle(void)
    
    Reordered the oneshot functions to follow the same order as other mod
    functions, that is to say : get, add, del, set, clear
    
    * Stricter conditions on add_oneshot_mods & del_oneshot_mods
    
    Prevent extending the one shot timer if the called add_oneshot_mods or del_oneshot_mods do not change anything to the current one shot mod state.
    
    Co-authored-by: David Kosorin <david@kosorin.net>
    
    Co-authored-by: David Kosorin <david@kosorin.net>
    
    * add support for otg
    
    * update endpoint numbering for stm32f4
    
    * removed testing file
    
    * added missing #endif
    
    Co-authored-by: Takeshi ISHII <2170248+mtei@users.noreply.github.com>
    Co-authored-by: precondition <57645186+precondition@users.noreply.github.com>
    Co-authored-by: David Kosorin <david@kosorin.net>
    4 people committed Nov 10, 2020
    Configuration menu
    Copy the full SHA
    55e2a42 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2020

  1. Remove HD44780 References, Part 4 (#10735)

    * remove HD44780_ENABLE rules: I-M
    
    * remove HD44780_ENABLE config: I-M
    
    * remove HD44780_ENABLE rules: N-S
    
    * remove HD44780_ENABLE config: N-S
    
    * remove HD44780_ENABLE rules: T-Z
    
    * remove HD44780_ENABLE config: T-Z
    noroadsleft committed Nov 15, 2020
    Configuration menu
    Copy the full SHA
    e3a2407 View commit details
    Browse the repository at this point in the history
  2. [Keyboard] Add Valor FRL TKL (+refactor) (#10512)

    * frl tkl
    
    * refator
    
    * removebootloaderfile
    
    * zvecr recommended changes
    
    * fix default keymap
    
    * Update keyboards/xelus/valor/frl_tkl/keymaps/default/config.h
    
    Co-authored-by: Joel Challis <git@zvecr.com>
    
    * Update keyboards/xelus/valor/frl_tkl/keymaps/via/config.h
    
    Co-authored-by: Joel Challis <git@zvecr.com>
    
    * remove accidental
    
    * move frl tkl to its own keyboard
    
    * fixup readme
    
    Co-authored-by: Joel Challis <git@zvecr.com>
    Xelus22 and zvecr committed Nov 15, 2020
    Configuration menu
    Copy the full SHA
    0bfec7b View commit details
    Browse the repository at this point in the history
  3. Fix cursor position bug in oled_write_raw functions (#10800)

    The documentation for these APIs say that they write to the buffer
    from the current current position, but they would always write
    from the start of the buffer irrespective of the current cursor.
    daveallie committed Nov 15, 2020
    Configuration menu
    Copy the full SHA
    f7ae095 View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2020

  1. Configuration menu
    Copy the full SHA
    4ef4965 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f63e3e1 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2020

  1. Add AT90USB support for serial.c (#10706)

    * Expand list of supported controllers for serial.c
    
    * Fix pin defines based on mtei's feedback
    
    * Fix EICRx checks in soft_serial_target_init
    
    * Fix copy-paste typo
    
    * Add defines for EICRx
    drashna committed Nov 19, 2020
    Configuration menu
    Copy the full SHA
    9e32e9b View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2020

  1. Merge remote-tracking branch 'origin/master' into develop

    Resolved Conflicts:
        keyboards/kc60/rules.mk
        keyboards/xd96/rules.mk
        lib/python/qmk/cli/__init__.py
    skullydazed committed Nov 22, 2020
    Configuration menu
    Copy the full SHA
    ac3b7d7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    866f853 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7d0c713 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ddf1ade View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2020

  1. Configuration menu
    Copy the full SHA
    b6bb2b8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    50b4512 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2020

  1. Configuration menu
    Copy the full SHA
    2b97c20 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    49b3aaf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f250c01 View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2020

  1. Configuration menu
    Copy the full SHA
    745e687 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cc63130 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a69d684 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b839674 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    71a49df View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    537291a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    37a2387 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    1180213 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    d2f965b View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    2d1a29b View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    b14e131 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    4b4fe1b View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    675caef View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    2076d1c View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2020

  1. Configuration menu
    Copy the full SHA
    9e9b979 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3a3571c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1528359 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    63a06fe View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2020

  1. Auto shift: support repeats and early registration (#9826)

    Fixes #7048.
    
    Co-authored-by: IsaacElenbaas <isaacelenbaas@gmail.com>
    p00ya and IsaacElenbaas committed Nov 27, 2020
    Configuration menu
    Copy the full SHA
    fd8f659 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c9e2690 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2020

  1. Configuration menu
    Copy the full SHA
    29e814e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8fc8a94 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6b3e56b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2e64269 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7baa37c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9b851ea View commit details
    Browse the repository at this point in the history