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

♻️ Simpler flexible SERIAL_ECHO #25928

Merged
merged 2 commits into from
Jun 12, 2023

Conversation

thinkyhead
Copy link
Member

@thinkyhead thinkyhead commented Jun 4, 2023

The multi-level macros in serial.h add some convenience and have been used to allow for local optimizations that have at times significantly reduced the size of the Marlin binary. But preprocessor macros are a strange breed and an acquired taste and there are now more modern ways to accomplish the same goal. So let's use good old template meta-programming with type specialization instead!

This PR makes the following improvements:

  • Use templates to make SERIAL_ECHO more flexible.
  • Add wrapper types and apply template specialization for float-with-precision types.
  • Remove redundant serial echo macros and functions.

Code size on AVR is a bit larger with these changes, but that might be solvable.

@EvilGremlin
Copy link
Contributor

How much larger? For real world build with some fancies.

@thinkyhead
Copy link
Member Author

How much larger? For real world build with some fancies.

For the default config the build size increases by 94 bytes. For a full-featured build the size increases by 924 bytes. With debug leveling feature added a full featured build increases by 774 bytes.

 mftest -tmega -n3 -y

Ideally the template-based code should produce a binary that is nearly identical to the build that uses macros, and smaller would be even better. If you have any ideas about how to make these templates more optimized for size, please share those ideas here and in the Discord. Many moons ago I made a lot of changes to the serial.h header refining the SERIAL_ECHO family of macros which reduced the build size significantly, so I'm all for taking a deep dive and figuring out some tricks to get the build size down to a minimum by the template approach.

Of course, it is not possible to remove the SERIAL_ECHOPGM macros without creating a huge inconvenience requiring all serial strings to be wrapped in F() throughout the codebase, something on the order of 6000 strings. In fact most of the macros in Marlin fulfill a necessary function that cannot be readily supplanted by templates. But wherever possible, I'm happy to get rid of macros and use templates, knowing that our most prolific contributors are universally averse to the study, mastery, and application of preprocessor macros but are well-versed and fluent in the use of templates.

@RV-from-be
Copy link

Just a simple reflection and personal observation. Since some time now, the base code with equal functionality has continued to grow in size. Here 94 bytes, another time 48 etc... If we look at the 3D printing market, manufacturers are orienting their hardware development for Klipper. Large motherboards with lots of Flash Memory are not suitable for entry-level and mid-range printers. Manufacturers most often equip them with motherboards with 256 kb of Flash Memory, the useful and usable quantity of which is reduced by bootloaders. Producing "aesthetic" code to the detriment of pragmatism to ultimately bring nothing in terms of functionality and on the contrary sometimes oblige the user to limit the choice of functionalities, is not an advance but a setback which will lead some to go under Klipper.

@EvilGremlin
Copy link
Contributor

Your Klipper argument contradicts itself...

@RV-from-be
Copy link

Your Klipper argument contradicts itself...

@EvilGremlin Oh yes and in what ???? Klipper doesn't need a printer motherboard with an astronomical amount of Flash Memory. The binary flashed on the motherboard in a Klipper environment is just the communication gateway between the MCU (often an Rpi or a CM4 or even a CB1) and the printer's motherboard. Klipper is on the MCU, not the MB.

@thinkyhead
Copy link
Member Author

@RV-from-be — No one is more concerned than me about keeping the size of the code small for AVR, and as I mentioned earlier: I have made many changes in the past which reduced the build size, and I am endeavoring to make sure that this PR does not increase the build size. I am glad to know that others also share my concerns.

@EvilGremlin
Copy link
Contributor

@RV-from-be It takes literally 1000 times more RAM to run klipper, among other things. Beefier MCU for marlin will be always cheaper than any klpper solution.

@thinkyhead
Copy link
Member Author

Producing "aesthetic" code to the detriment of pragmatism to ultimately bring nothing in terms of functionality and on the contrary sometimes oblige the user to limit the choice of functionalities, is not an advance but a setback which will lead some to go under Klipper.

@RV-from-be — Careful not to give away my game! It is partly my aim to demonstrate to those who have lately insisted that we strip out macros for aesthetic reasons that this comes with trade-offs in size and optimal efficiency and does not really do much to reduce complexity, attract new developers, or cause current contributors to become better or more motivated at solving reported issues.

Most of these suggestions seem to come from developers with a more "academic" background who have been taught the maxim that "simpler is better." I come from a background of assembly and machine code on systems with less resources, and I prefer a "non-pedantic" code style over "clean coding" or other principles that focus on code aesthetics rather than concision and efficiency, and which do very little to actually help the compiler do optimizations. I do take the concerns of our most skilled, broadly-experienced, and active developers seriously, but the person who must deal with this codebase all day every day is myself, and I do believe that I have reasonably high standards where it counts.

There is a lot of stuff which can be done to "improve" this codebase, but it is not primarily the low-hanging aesthetic stuff that the critics have been pointing at. Rather, it is the things which populate my longstanding TODO list, which I have written and spoken about at length in many interviews and forums, and which apparently only I have the resources, skills, and will to address. Although I have to play multiple roles in maintaining and managing the project while also building tools and doing a lot of this deep coding, we will get there and we will maintain decent parity with alternatives like Klipper which are themselves plateauing.

@EvilGremlin
Copy link
Contributor

EvilGremlin commented Jun 5, 2023

Some gradual bloating is inevietble though. i.e. better thermal and buffer protections and superior, more compicated motion algorythms (compensation is name of the game in FDM). Or optimize for faster execution where it actually matters. Some things are purely for cosmetic and convenience, but if it leads to better scalability - why not? Sticking to AVR is nice, but let's not stick too hard. These chips will get only more and more expensive with no performance increase whatsoever.

@thinkyhead
Copy link
Member Author

These chips will get only more and more expensive with no performance increase whatsoever.

Be that as it may, there are many thousands of machines out there which have an AVR mainboard, and there are many types of projects that are not 3D printers which can benefit from the "wealth of knowledge" and resources embodied in the Marlin codebase. Wherever possible I have attempted to keep the base build size of Marlin small, and it still remains under 64KB.

As for this PR, I am not going to be satisified until you and I have applied our coding skills to figure out and solve the size increase. We are wasting our considerable intelligence by only discussing things at a theoretical level and not getting down to solving this very interesting problem.

@thinkyhead thinkyhead force-pushed the bf2_serial_flex_PR branch 2 times, most recently from eab5320 to 3694941 Compare June 12, 2023 03:59
@thinkyhead thinkyhead merged commit 2ef71c6 into MarlinFirmware:bugfix-2.1.x Jun 12, 2023
@thinkyhead thinkyhead deleted the bf2_serial_flex_PR branch June 12, 2023 21:38
Djonker83 added a commit to Djonker83/Marlin that referenced this pull request Jun 16, 2023
* 🩹 Update KEDI / GODI LCD_PINS_EN pin (MarlinFirmware#25886)

* [cron] Bump distribution date (2023-05-29)

* 🩹 Fix and improve GT2560 pins (MarlinFirmware#25890)

Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

* 🔨 Install 'heatshrink' if needed (MarlinFirmware#25896)

* [cron] Bump distribution date (2023-05-30)

* 🔧 Default has Heated Bed (MarlinFirmware#25895)

Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

* 🚸 Probe Wizard display fix

* 🧑‍💻 ExtUI::onLevelingStart/Done for all leveling (MarlinFirmware#25913)

* 🌐 Update Russian translation (MarlinFirmware#25840)

* 🌐 Remove unused strings

* 🔧 Update LCD with NeoPixel Contrast (MarlinFirmware#25893)

* [cron] Bump distribution date (2023-06-02)

* 📝 M122 comment

* 🔨 Clarify env error (MarlinFirmware#25915)

* 🔨 Fix pins debugging for Simulator

* 🎨 Lowercase method / data member names (MarlinFirmware#25914)

* 🧑‍💻 numtostr use functions

* 🧑‍💻 Dump BOTH and EITHER macros (MarlinFirmware#25908)

* 🧑‍💻 Remove LOOP macros (MarlinFirmware#25917)

* [cron] Bump distribution date (2023-06-03)

* 🎨 Lowercase followup (MarlinFirmware#25923)

Followup to MarlinFirmware#25914

* 🔨 STM32H723VG (1024KB) (MarlinFirmware#25921)

* 🩹 Endstop hit state followup (MarlinFirmware#25885)

Followup to MarlinFirmware#25574

* 🧑‍💻 Fix narrowing conversions (MarlinFirmware#25924)

* 🔧 BTT SKR 3 has onboard endstop pullups (MarlinFirmware#24876)

* 🐛 Fix M25/M125 for LCDs with ui.resume_print (MarlinFirmware#24877)

* [cron] Bump distribution date (2023-06-04)

* ✏️ Fix LCD contrast typo (MarlinFirmware#25929)

* 🩹 Fix D576 buffer underrun reporting (MarlinFirmware#25931)

* [cron] Bump distribution date (2023-06-05)

* 🔧 TMC Driver axis baud for Soft Serial (MarlinFirmware#25664)

* 🎨 Detab C/C++

* 🧑‍💻 Dir change is AxisBits

Followup to MarlinFirmware#25761

* 🩹 Wrap HAS_DISPLAY for if()

Followup to MarlinFirmware#24877

* 🧑‍💻 Fix mfconfig trailing space

* [cron] Bump distribution date (2023-06-06)

* 🩹 Fix JyersUI corner pos

Followup to MarlinFirmware#25631

* 🧑‍💻 Bypass error in build_example

* 🧑‍💻 Suppress narrowing warnings

Followup to MarlinFirmware#25924

* ⚡️ Mixer label in PROGMEM

* 🩹 Conditional include probe.h

* 🧑‍💻 Use Flags<> for runout (MarlinFirmware#25938)

* [cron] Bump distribution date (2023-06-07)

* 🌐 Update Italian language (MarlinFirmware#25940)

* 🔨 Teensy 4.1 pins env check (MarlinFirmware#25937)

* [cron] Bump distribution date (2023-06-08)

* 🔧 Z-MIN as CREALITY V25 S1 probe

* 🚸 Fix TFT menu positioning (MarlinFirmware#25942)

Co-authored-by: Ed <751406+helakejr@users.noreply.github.com>

* 🔨 Clean up some BTT envs, etc. (MarlinFirmware#25934)

Followup to MarlinFirmware#25921

Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

* 🚸 General TFT cleanup

* 🚸 Portrait TS35 move axis screen (MarlinFirmware#25945)

* 🔨 Update STM32Hxx boards/variants

Followup to MarlinFirmware#25934

* 🔨 Fix serial port #error text

* [cron] Bump distribution date (2023-06-09)

* 🐛 Fix _MINMAX_TEST typo (MarlinFirmware#25954)

* 🩹 Conditional u8g for SAMD21 (MarlinFirmware#25947)

* 🔨 Simpler distinct firmware rename (MarlinFirmware#25957)

* 🐛 Fix dummy thermistors 998-999 (MarlinFirmware#25956)

* [cron] Bump distribution date (2023-06-10)

* 🔨 Firmware rename followup (MarlinFirmware#25966)

Followup to MarlinFirmware#25957

* [cron] Bump distribution date (2023-06-11)

* 🔨 SKR Mini E3 v3.0.1 XFER (MarlinFirmware#25955)

* [cron] Bump distribution date (2023-06-12)

* ♻️ Simplify SERIAL_ECHO (MarlinFirmware#25928)

Since this increases AVR code size, try to optimize further.

* 🔥 Remove VAkE 403D (MarlinFirmware#25969)

* [cron] Bump distribution date (2023-06-13)

* 🎨 Lowercase methods, functions, data members (MarlinFirmware#25939)

For: TFT, DGUS, MarlinUI, Anycubic, JyersUI, CrealityUI

* 🔧 Sanity check IA_CREALITY mesh size

* [cron] Bump distribution date (2023-06-15)

* 🎨 Lowercase followup

Followup to MarlinFirmware#25939

* 🎨 Group STM32G0 pins includes (MarlinFirmware#25977)

* 📝 Document Manta E3 EZ / E3V2 LCD custom wiring (MarlinFirmware#25976)

* ✨ BTT RAMPS 1.6+ (MarlinFirmware#25970)

* [cron] Bump distribution date (2023-06-16)

---------

Co-authored-by: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Co-authored-by: thinkyhead <thinkyhead@users.noreply.github.com>
Co-authored-by: DejitaruJin <dejitarujin@gmail.com>
Co-authored-by: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Co-authored-by: I3DBeeTech <129617321+I3DBeeTech@users.noreply.github.com>
Co-authored-by: alextrical <35117191+alextrical@users.noreply.github.com>
Co-authored-by: ellensp <530024+ellensp@users.noreply.github.com>
Co-authored-by: Manuel McLure <manuel@mclure.org>
Co-authored-by: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Co-authored-by: Andrew <18502096+classicrocker883@users.noreply.github.com>
Co-authored-by: kisslorand <50251547+kisslorand@users.noreply.github.com>
Co-authored-by: Roi Rodríguez Huertas <roiamorin69@gmail.com>
Co-authored-by: Ed <751406+helakejr@users.noreply.github.com>
Co-authored-by: Dmitry Plastinin <Uncellon@yandex.ru>
Co-authored-by: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Co-authored-by: Bart Meijer <brupje@gmail.com>
@plampix
Copy link
Contributor

plampix commented Jun 19, 2023

When I build with my configs, size increase just before and after 2ef71c6 is more than 5kB. That could be an issue on quite a lot of boards. Git bisect lied to me.

Andy-Big pushed a commit to Andy-Big/Marlin_FB_Reborn that referenced this pull request Jul 16, 2023
Since this increases AVR code size, try to optimize further.
Andy-Big pushed a commit to Andy-Big/Marlin_FB_Reborn that referenced this pull request Jul 19, 2023
Since this increases AVR code size, try to optimize further.
eveve0505 added a commit to eveve0505/Marlin that referenced this pull request Nov 1, 2023
commit 24cf29b6a8e9f5e3cd37c4160a20b0a75ff04ad5
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 1 01:19:48 2023 +0000

    [cron] Bump distribution date (2023-11-01)

commit 41a6f2bc8da53e3277c6b183bdc167399245c858
Author: Chris <52449218+shadow578@users.noreply.github.com>
Date:   Wed Nov 1 01:10:37 2023 +0100

    🧑‍💻 Improve POSTMORTEM_DEBUGGING (#26374)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit e0767f867517e49ce680b4be97fbaf3c5cb2d653
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Wed Nov 1 01:03:28 2023 +0100

    🌐 Fix long Italian string (#26378)

commit 5523c12cfd01c859a01f26575a1dfff4c43eac8e
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Wed Nov 1 01:02:11 2023 +0100

    🩹 Fix MarlinUI UTF-8 chars (#26381)

commit a6c8afc5a9487ced6249a5d0abbc53ae077db786
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Oct 29 00:21:30 2023 +0000

    [cron] Bump distribution date (2023-10-29)

commit cb8df74a9c9a1311940c113732503766295fdcb8
Author: Vladimir Sitnikov <sitnikov.vladimir@gmail.com>
Date:   Sat Oct 28 04:01:04 2023 +0300

    🚸 Move Debug menu down (#26266)

commit 050439ccba39ba2d614b2069e4d606521fe13e22
Author: Vladimir Sitnikov <sitnikov.vladimir@gmail.com>
Date:   Sat Oct 28 03:46:09 2023 +0300

    🧑‍💻 Update .editorconfig settings (#26264)

    Fixes #26219

commit 6907df0bd6af90fcb9753b54c84b3d3bd8910b2b
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Oct 28 00:18:59 2023 +0000

    [cron] Bump distribution date (2023-10-28)

commit 5a259a726670b0dbc21a58651847259d83f54c7b
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sat Oct 28 00:18:15 2023 +0200

    🌐 Update Italian language (#26208)

commit b082f1a2b882a827cb614f4c020787f6ffce2449
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Oct 28 11:15:23 2023 +1300

    ⚡️ Faster COMPACT_MARLIN_BOOT_LOGO (rle16) (#26153)

commit c666b492c4e188987e9382e6ec2e79453b5136bc
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Fri Oct 27 23:06:04 2023 +0100

    🔥 Automatic minimum planner junction speed (#26198)

commit aa0671fb32eb93d1f028764422c5fb8acc9b8fa1
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Fri Oct 27 22:10:02 2023 +0100

    🩹 Fix Input Shaping max_isr_rate with Distinct E factors (#26167)

commit f82d0109e491756b0f004b31fe8fe0da25615aa8
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 27 00:19:27 2023 +0000

    [cron] Bump distribution date (2023-10-27)

commit 2a88e7600298fef27e8cbbe01b708959515677fb
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Oct 25 19:41:32 2023 -0500

    🧑‍💻 Misc. LCD / string updates

commit b25f523acabde814397b9c2eddc2e77792fb86a9
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Oct 26 00:23:31 2023 +0000

    [cron] Bump distribution date (2023-10-26)

commit 046439a5a1bcbc9baac156f9fbb7686edbf7bbeb
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Oct 25 14:27:22 2023 -0500

    🧑‍💻 Echo by default in dev mode

commit bcd07c2c91a1148b34c5929f29e746ca1158cce7
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Oct 24 00:19:54 2023 +0000

    [cron] Bump distribution date (2023-10-24)

commit e9b04ada1d2f14f124a0d449205deda8c372340b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 23 18:51:34 2023 -0500

    🩹 Fix PLR debug with NO_VOLUMETRICS

commit ff5eb5de29e889c972bfda73cce01796205d47f0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 23 18:54:11 2023 -0500

    🩹 No GET_TEXT with DGUS_TFT

    Followup to #26164

commit fd62c42faa15998d6771a18a5f704e24f7bfa1f8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 23 17:07:04 2023 -0500

    🩹 No GET_TEXT with DGUS_TFT

    Followup to #26164

commit 089d075c8fd8f9c76df5eb03df9451aca3af5160
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 23 00:20:43 2023 +0000

    [cron] Bump distribution date (2023-10-23)

commit 45a6e9614e671ed97a1de33a966e25cd28329a14
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Oct 22 18:33:36 2023 -0500

    📝 Community Reporting

commit 9e6d0ea6109157941179c67eed063b8ab68ef99b
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Sun Oct 22 16:22:16 2023 -0600

    🩹 Fix FTDI Eve Touch UI meshGetter, etc. (#26342)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit c345087b415e73e2a405c0088bd1f1e02ea6dd6a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Oct 22 13:46:34 2023 -0700

    🔨 Add MKS Eagle FD Envs (#26346)

commit 8de007021ac357f44b06aec7df6d8d9522c3663b
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Oct 22 13:44:29 2023 -0700

    🧑‍💻 Don't Recommend DevContainer (#26348)

commit f72588595b4a4d3a0c40e26e1bad248ee0a062c9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Oct 22 15:17:30 2023 -0500

    🚸 SD refresh UI update with NO_SD_DETECT (#26366)

    Co-authored-by: Sascha <k.puligheddu@alice.it>

commit 797ea5efa741ef96827870bb44b48fac7a41f1a0
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Oct 22 13:15:38 2023 -0700

    🚸 Fix MarlinUI expanded label alignment (#26339)

    Co-authored-by: ellensp <530024+ellensp@users.noreply.github.com>
    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 156e7c1c5453e9b9fcd103fb1874eb5803ebea54
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Oct 23 08:25:28 2023 +1300

    🐛 Fix TFT compile, K8400 pins (#26359)

commit b8b1aa345cfeaa59e9d377edc3c143fc67cf16cc
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Oct 21 00:19:15 2023 +0000

    [cron] Bump distribution date (2023-10-21)

commit b0ece8f8df130709f97da6c1474cd20cbd9119ed
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 20 17:21:30 2023 -0500

    🧑‍💻 MarlinUI menu tweaks

    Changes in prep for #26339

commit 4b0b00c8da5eb193bb157d42e788da9586ed5ba7
Author: studiodyne <42887851+studiodyne@users.noreply.github.com>
Date:   Fri Oct 20 03:23:23 2023 +0200

    ✨ Tool Migration-specific settings (#26244)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 6d3122d4e8525dea64cf83a98354a95f2a1d9a29
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Thu Oct 19 21:22:04 2023 -0400

    🚸 Misc. JyersUI tweaks (#26228)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 0f27e38eb92396b49a60f9d51cf0afa9527f3518
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Oct 20 13:34:22 2023 +1300

    🎨 Update GT2560 V41b (#26351)

commit 6156050024d1edfa59c1d6e1955c50706396b589
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 20 00:20:00 2023 +0000

    [cron] Bump distribution date (2023-10-20)

commit cacbe005b53dd833a5300c1e6636d917583d7fd3
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Thu Oct 19 19:01:43 2023 -0400

    🩹 Fix ProUI G-code preview (#26213)

commit caca5636cec69ba3afe28353abecc218dd8c05fa
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Oct 15 06:05:56 2023 +0000

    [cron] Bump distribution date (2023-10-15)

commit 6a35ab6557f8450845379c90724dc14b55be4b0c
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Sat Oct 14 22:54:54 2023 -0600

    ✨ Z_PROBE_ERROR_TOLERANCE (expose) (#26229)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 87de4c134b7e9eb8a845987e666fbf4589a2a92a
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 13 18:06:12 2023 +0000

    [cron] Bump distribution date (2023-10-13)

commit 7944628400273d1b78eab3ffc71aa7c07ffaaaac
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 13 09:48:14 2023 -0500

    🧑‍💻 IA Creality optional code

commit 251a84b741c7232a84a744d8fdcb0e1f8d6951c6
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Oct 12 18:20:54 2023 +0000

    [cron] Bump distribution date (2023-10-12)

commit d695e5f7bc409bc3d8ede798db5205c2c6a162f1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Oct 12 12:56:44 2023 -0500

    🔧 Misc. probe opts

commit 4744997c164931f8c1f8753ba4112e466b7c83a7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Oct 12 12:14:57 2023 -0500

    📝 GCode => G-Code

commit 5bd39ba73f5a704ccaf370bc98201c10b380d20d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Oct 12 12:14:26 2023 -0500

    🧑‍💻 FxdTiCtrl => FTMotion redux

commit 7f887f2342d2da112ba2058177c53492d3c2903f
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Thu Oct 12 10:14:58 2023 -0600

    🚸 Update FTDI Eve / CocoaPress UI (#26233)

commit e7e77d9612253cf7106cfc9e69f69e52f4083294
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Oct 12 09:44:46 2023 -0500

    🧑‍💻 FxdTiCtrl => FTMotion

commit a7a3abb9bf04c0dd6edfadb4f1c3c80ed7dd627c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Oct 12 09:21:00 2023 -0500

    📝 Macro comments

commit 6f68da5be4dcc56cc6577f3727f0e240e4086785
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Oct 11 06:06:33 2023 +0000

    [cron] Bump distribution date (2023-10-11)

commit e9b9d634c4ef5d48791de84545ef86d46909fec0
Author: Andrew Bortz <andrew@abortz.net>
Date:   Tue Oct 10 20:24:48 2023 -0700

    ✨ Nonlinear Extrusion Control (M592) (#26127)

commit 6d301a282ebb38cee2a7d526adad27467b2bd55f
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Oct 10 00:19:51 2023 +0000

    [cron] Bump distribution date (2023-10-10)

commit 61591fd23369a03063a42f57a174c51f995c7efb
Author: studiodyne <42887851+studiodyne@users.noreply.github.com>
Date:   Tue Oct 10 00:50:09 2023 +0200

    🐛 Fix tool-change E prime (#26237)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit e97d82f77beadf7001e569dc7e683ba287afa56e
Author: Marcella Cavalcanti <marcellabcavalcanti@gmail.com>
Date:   Mon Oct 9 22:52:59 2023 +0100

    ✨ FYSETC Cheetah v3.0 (#26314)

commit b58d5dabf8939658334db3e0d98c03b1b934df7c
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Oct 8 18:07:09 2023 -0700

    🔧 BTT_MINI_12864_V1 => BTT_MINI_12864 (#26160)

commit 047bce0cdd8599d3ea9b85d173f8d79a0802adf1
Author: Dipl.-Ing. Raoul Rubien, BSc <rubienr@sbox.tugraz.at>
Date:   Mon Oct 9 02:22:40 2023 +0200

    🔧 More angles for 2x Servo Switching Nozzle (#26303)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit c81e217334222aa18c23d02d34f1a78ac7ed23fa
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 9 00:20:31 2023 +0000

    [cron] Bump distribution date (2023-10-09)

commit 9cd341c2c3b2ea4e38852325bec98c349addf7f8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Oct 8 18:09:49 2023 -0500

    🩹 Patches for MSC SD (#26332)

commit f0ad1e9b70210f7f3713cc09e471367875a44c49
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Oct 8 15:11:19 2023 -0500

    🧑‍💻 Update dev scripts

commit 414b1f83271e5dbc85568c3ac8f9d2beabdbc1c4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Oct 8 15:10:18 2023 -0500

    🩹 Serial warning followup

    Followup to #26306

commit e68320ee2b10ae5c7bf3bf816e80c3621a20fcd2
Author: Erkan Ozgur Yilmaz <eoyilmaz@gmail.com>
Date:   Sun Oct 8 21:39:46 2023 +0100

    🐛 Fix MMU late init (#26331)

commit 7fa643a11eb97907eb23fb72ffd86100c7630e39
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Oct 9 09:16:28 2023 +1300

    🔨 Specify LPC toolchain 1.100301.220327 (#26249)

commit 375e724deebac8a71a3c37c84b6f1170922e302a
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Oct 8 00:21:49 2023 +0000

    [cron] Bump distribution date (2023-10-08)

commit 6c0f4bbafd4b95d770c4aacf7d9d9df4be50b892
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Oct 6 23:21:41 2023 -0700

    ✅ CI test for STM32G0 (#26327)

commit 4cab75115fe559e702ebe7a8dc040ebe0d6d4d0b
Author: Orel <37673727+0r31@users.noreply.github.com>
Date:   Sat Oct 7 08:10:22 2023 +0200

    🩹 Fix G33 output (#26299)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 014609ad87d3556b44a00fef4c4983894f9d4354
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Oct 7 00:29:34 2023 -0500

    🔧 Move some config options

commit f7a3172c20cfed3178ab9ab099ff386f61560ad9
Author: Bob Kuhn <bob.kuhn@att.net>
Date:   Fri Oct 6 23:53:52 2023 -0500

    🐛 Fix DELTA Z when not using probe for homing (#26297)

commit b799f7d1f3447b5431c29c1a92323febcfa57eda
Author: Bob Kuhn <bob.kuhn@att.net>
Date:   Fri Oct 6 23:45:32 2023 -0500

    🔧 Forbid UBL Hilbert Curve on DELTA (#26296)

commit f3851408fe599a97a3f1a2337b3eda92c1aeeccf
Author: Vladimir Sitnikov <sitnikov.vladimir@gmail.com>
Date:   Sat Oct 7 07:44:27 2023 +0300

    🔧 No TMC_HOME_PHASE on tandem steppers (#26310)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 03cf2b577be63a8f630c2ad9547d0e2ab3b73e00
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 6 19:15:28 2023 -0500

    misc. formatting, grid condition

commit b3b6f23320d9ad8b8891a71d1ff289ccaf329edf
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Sat Oct 7 04:03:02 2023 +0300

    🧑‍💻 Tweak an 'if' block (#26300)

commit 821ba43131a5d3c1c291f6a6086f66e83d44384d
Author: Piotr Piatkowski <pp@idea7.pl>
Date:   Sat Oct 7 02:56:10 2023 +0200

    🩹 Fix Endstop Test debug menu (#26326)

commit 31bf73b89bc92a385c8c51bdd804471b84c251f5
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Oct 7 00:19:28 2023 +0000

    [cron] Bump distribution date (2023-10-07)

commit 229ea71421debe36fe77a371bab3c4b40ce38fe8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 6 19:02:34 2023 -0500

    📝 Update dgus_e3s1pro comment

commit f085e2ca9352840bb62ce1dc5a6228406ee61996
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 6 17:20:08 2023 -0500

    🩹 Remove extraneous 'inline'

    See #26085

commit db98f0611004efd6e042c4cf53c881d7b1f3c10c
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Oct 6 15:09:58 2023 -0700

    🚸 Warning alerts for non-fatal errors (#26306)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit bbb5aacc48db7bc875f3099018455cb07ae74f61
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 6 16:12:23 2023 -0500

    📝 Update config sections

commit 91ab18d1d2825b85cbd17e8ef1eb0675754a4043
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 6 16:08:30 2023 -0500

    📝 Some settings units

commit 273cbc6871491a3c1c5eff017c3ccc5ce56bb123
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Oct 5 06:06:14 2023 +0000

    [cron] Bump distribution date (2023-10-05)

commit 596d1ff104aa809165862bdf272caa6cc1f8ddb1
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Thu Oct 5 07:47:23 2023 +0300

    🩹 Fix TFT string code (#26292)

commit 896492442c3e1ae8335f7011fb44b368667a3067
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Oct 4 00:36:20 2023 +0000

    [cron] Bump distribution date (2023-10-04)

commit b9e58cd3eae21b0df94e8db16cd503730c7510a8
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Oct 3 13:23:40 2023 -0700

    🔧 BigTreeTech Manta M4P is v2.1 (#26226)

commit d961dbae8d5c037b76725ee999016773bb2f3f68
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Oct 4 09:21:53 2023 +1300

    🔧 Fix SanityCheck typo (#26223)

commit be031e18509884c42051fba6849af06e089e383f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Oct 3 14:57:07 2023 -0500

    📝 More ExtUI documentation

commit 15dfbabc9cbfde0551571b550e56f5d2d5271dd4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Oct 3 14:52:04 2023 -0500

    🔧 Temp report precision option (#26253)

commit 102de7dac3cbfa088180375ee0a550a35828ffba
Author: kisslorand <50251547+kisslorand@users.noreply.github.com>
Date:   Tue Oct 3 22:50:33 2023 +0300

    🚸 More precision in G30 output (#26255)

commit 7338a2fec82caf7ccc469274c8ecef1d75c3abbd
Author: kisslorand <50251547+kisslorand@users.noreply.github.com>
Date:   Tue Oct 3 22:48:52 2023 +0300

    🚸 Use SERIAL_FLOAT_PRECISION for SERIAL_ECHO(float) (#26254)

commit d56136f06cca075e801aabcff76bd207d4da349f
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Sep 30 00:19:06 2023 +0000

    [cron] Bump distribution date (2023-09-30)

commit 34a0c9d143ff5c5018c4713a1ed5dad32c8c3a5d
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Sep 30 12:12:29 2023 +1300

    📝 Update BTT SKR Mini E3 v3.0 comments (#26318)

commit 11f98adcce51f06a85ef0dd64e6e6b16139a34bd
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 26 00:22:53 2023 +0000

    [cron] Bump distribution date (2023-08-26)

commit 209fadd2e6039e050e33eaed9c59465ffa5c30f0
Author: jaysuk <github@jayuk.org>
Date:   Sat Aug 26 00:43:57 2023 +0100

    ✨ Mellow Fly E3 V2 (STM32F407VG) (#26081)

commit 8fa6a4da2eebc1dbe120dcac87b159e389e17dc3
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Fri Aug 25 19:33:49 2023 -0400

    🚸 Fixes for ProUI, JyersUI, backlight, etc. (#26086)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 4613f85bb754991b1ea4fa5218ae94e758be0e8a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Aug 24 15:09:03 2023 -0500

    🧑‍💻 Encapsulate ProUI G-code preview

commit e1121a4cd009ee447eaef2ab49a2de896e5a5eef
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Aug 25 00:19:03 2023 +0000

    [cron] Bump distribution date (2023-08-25)

commit 20fec98f70208546b90ccc0b8f6766de6f2f8230
Author: lukasradek <lukasradek@users.noreply.github.com>
Date:   Thu Aug 24 19:41:30 2023 +0200

    🧑‍💻 Adjust LCD string draw (#26154)

commit adfc787a45432e918f024241d5ba4387724cd6e9
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Aug 24 00:18:43 2023 +0000

    [cron] Bump distribution date (2023-08-24)

commit 86be9a85d0f819fc0f3f6cfe743906ac3309f366
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Aug 23 13:44:40 2023 -0500

    📝 Thermistor info updates (#26202)

commit f6de698fc8bf284c76a2ae09b1c7b5041c74d495
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Aug 23 00:25:27 2023 +0000

    [cron] Bump distribution date (2023-08-23)

commit edc737954653cd174c51cced37917ff4df2867e1
Author: Anson Liu <ansonl@users.noreply.github.com>
Date:   Tue Aug 22 20:21:41 2023 -0400

    ✨ G-code 'T' report current tool (#26151)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit ab8af7fa9cb7007ac710f62137e91f73446f8b60
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 22 19:16:35 2023 -0500

    🔧 Allow arbitrary BLOCK_BUFFER_SIZE

commit fb74caebb5d9e17c5b6c369cbc8965130e1ec93f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Aug 22 16:40:59 2023 -0700

    🔧 Fix Linear Leveling grid size sanity check (#26199)

commit 88cdf487b433bf2187f2dad31587882ebf02cc59
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 22 17:36:53 2023 -0500

    🚸 Avoid LCD messages starting with "Error:" (#26164)

commit be91eaed2c707924cbaa8a4d79a0495b43495870
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Wed Aug 23 00:13:53 2023 +0200

    🩹 Fix FT Motion menu Back item (#26175)

commit b5a08c251853e0b7122bc33d1c6fcd3de967e478
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 22 00:18:52 2023 +0000

    [cron] Bump distribution date (2023-08-22)

commit b02ea02dbb89892916045079423ca91532adc61c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 21 16:52:26 2023 -0500

    ✅ Fix unused test

commit d69ce775032bc254bf3da67088ebdfcaad0612b5
Author: Yuri D'Elia <wavexx@users.noreply.github.com>
Date:   Mon Aug 21 21:39:49 2023 +0200

    🐛 Fixes for G2/G3 arcs (#26170)

commit d1803ec04434a9b5a9e18c12cc392cee15d8f5c6
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 21 00:19:10 2023 +0000

    [cron] Bump distribution date (2023-08-21)

commit f2665e597f944d7a054a72302349a6edf9c4c082
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jul 25 18:36:50 2023 -0500

    🎨 FTDI cleanup

commit db5ead4230eda3e05d8beb919c8e7d5bdef960a9
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 20 00:19:51 2023 +0000

    [cron] Bump distribution date (2023-08-20)

commit f7d5188b2f0a59b752fbabf6b96ff1ed4aed8112
Author: GHGiampy <83699429+GHGiampy@users.noreply.github.com>
Date:   Sat Aug 19 22:53:45 2023 +0200

    🐛 Fixes for ProUI, build rename (#26177)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 1d17c34e123f74d820f42fcd179104c884719007
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Aug 18 00:18:38 2023 +0000

    [cron] Bump distribution date (2023-08-18)

commit 49ead19d008dd54403b37818b21e79b8ccfa4b89
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Fri Aug 18 02:13:10 2023 +0300

    🔧 Reversible file alpha sorting (#26130)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 7e7dcb869257bb82adffbb349699560dc34a1f09
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Aug 16 06:08:59 2023 +0000

    [cron] Bump distribution date (2023-08-16)

commit cf50240e82e9bf187b9d6733d9dd0aed1fe57806
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 15 21:03:42 2023 -0500

    📝 Update INO (c)

commit 79f6d9bdaca7764271809b8a92df5e7e38318528
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 14 00:19:27 2023 +0000

    [cron] Bump distribution date (2023-08-14)

commit 6af6060aa0240ccc03020edba661fe42125d3713
Author: Martin Turski <turningtides@outlook.de>
Date:   Sun Aug 13 22:57:38 2023 +0200

    🔧 Configurable SD card retry/timeout (#25340)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 2bac7835e801c413c3d9e75a1dbe3e94dc689f3d
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 8 00:22:24 2023 +0000

    [cron] Bump distribution date (2023-08-08)

commit fd41757aef29c167fb8284ff8a8fc94ef566018a
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Tue Aug 8 00:54:27 2023 +0300

    🐛 Fix MKS Robin Mini servo timer (#26150)

commit f338f65bdfc7e6b629e939db49dbe6f6731986de
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Mon Aug 7 23:51:22 2023 +0200

    🚸 Adjust ColorUI chamber bmp (#26149)

commit 867f5e90697451429ae2fa7760089d165f9319eb
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Mon Aug 7 16:16:33 2023 -0500

    🚸 UI Sound off/on with M300 E<0|1> (#26142)

commit 88f5e2c6394cde42969fd4a21ba579cf2cd2db77
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Mon Aug 7 16:11:12 2023 -0500

    🐛 Fix UBL probe_entire_mesh skips points (#26141)

    Fixes #26132

commit ca0209b868be80d1438e1d695e2f103ab1025f92
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Aug 7 14:00:50 2023 -0700

    🔨 Fix USB FD env names (#26131)

commit 4f691e622f3dc1de5a64bcaf42d3de56c9808322
Author: Ari-SSO <85907917+Ari-SSO@users.noreply.github.com>
Date:   Mon Aug 7 06:35:22 2023 -0300

    🩹 PROBING_TOOL followup (#26122)

    Followup to #24411

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit fecadaca82e49c2558b42684382ede121274bfea
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 7 04:24:04 2023 -0500

    🔧 Clarify WIFISUPPORT (#26097)

commit 709def5e7baa57911d604ffec701c3ba7ef61ffa
Author: Aleks <96996458+alx3dev@users.noreply.github.com>
Date:   Mon Aug 7 11:09:26 2023 +0200

    🩹 Fix M3 `uninitialized` warning (#26091)

commit a5e4b4bd7d18f84c29a13430c636ecae289c352a
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Mon Aug 7 10:30:24 2023 +0200

    🚸 FT_MOTION menu updates (#26083)

commit a8177944443a7a1186a77cefbe1ae7be19722ddd
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 7 06:51:07 2023 +0000

    [cron] Bump distribution date (2023-08-07)

commit ffef8f1b297e83aa37eeb5ffcc5369e5c9c42a09
Author: Mark <niujl123@sina.com>
Date:   Mon Aug 7 12:33:20 2023 +0800

    🚸 BD Sensor Z axis stop height (#26015)

commit 205a679959432dff54352b390354a4324f29a97a
Author: Bart Meijer <brupje@gmail.com>
Date:   Mon Aug 7 06:12:30 2023 +0200

    ⚡️ SAMD21 LCD uses HW SPI with media (#26012)

commit b956001d8175b3f01ef0be2ef6b07825a8509317
Author: lukasradek <lukasradek@users.noreply.github.com>
Date:   Mon Aug 7 05:08:35 2023 +0200

    🚸 Update LCD Manual Leveling display (#26088)

commit 1dd3c9e73f59ddac098173c4cc3642e798f18623
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Aug 6 20:04:11 2023 -0700

    📝 STM32G0B0 SKR Mini E3 V3.0 / Manta M4P (#26087)

commit 8d74a63e4bc210ce96ef7cf148f3598afc9fe1ad
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 6 21:04:40 2023 -0500

    📝 Update a config comment

commit 27fd97a8bbb63f676c32c307afd491dd865a271f
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 6 00:21:12 2023 +0000

    [cron] Bump distribution date (2023-08-06)

commit 4d89db52095cb4f182bc11d4cfd72ceef8e2273f
Author: magicmaker3 <66371323+magicmaker3@users.noreply.github.com>
Date:   Sun Aug 6 07:10:49 2023 +0800

    ✨ MM-JOKER (ESP32) board (#25897)

commit f66323ecfbe067667234df286e14d43d409bfaea
Author: Pagliarulo Onofrio <78806035+oponyx@users.noreply.github.com>
Date:   Sat Aug 5 07:03:10 2023 +0200

    ✨ Geeetech GT2560 V4.1B board (#25888)

commit 863198a73f8a07663a6a5f7c088631aa72b5fb45
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sat Aug 5 06:56:40 2023 +0200

    ✨ VOLUMETRIC_EXTRUDER_LIMIT_MAX (#25884)

commit ad112b4d3d47ff841334b16dcf497917fb8c1ec6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Aug 4 23:49:38 2023 -0500

    🐛 Fix case TRRunaway

commit c088081c0009d3eb2f218d39266cc08e902d03cf
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 5 00:54:22 2023 +0000

    [cron] Bump distribution date (2023-08-05)

commit 06d46a0ef96a766b114db5902beccb86829ba57c
Author: Alexey D. Filimonov <alexey@filimonic.net>
Date:   Sat Aug 5 03:07:56 2023 +0300

    ✨ AUTO_POWER_SPINDLE_LASER (#25739)

commit 27e68a61fa0b1ec46084603880679810c53b3da3
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Aug 4 18:29:52 2023 -0500

    🧑‍💻 Update some SDSUPPORT

commit 4e31fa66e2f402ac574ec4afa52447824444d90d
Author: Dmitry Pogrebnyak <aterlux@mail.ru>
Date:   Fri Aug 4 22:59:17 2023 +0300

    ✨ STATUS_HEAT_POWER (#25268)

commit 87231b625f3cf36b57352d3d89cfb05cfde0e777
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Aug 4 06:06:04 2023 +0000

    [cron] Bump distribution date (2023-08-04)

commit 3baa318ec737a67cec6087194ab04fb2242279e0
Author: Martin Turski <turningtides@outlook.de>
Date:   Fri Aug 4 05:56:40 2023 +0200

    🧑‍💻 Option to reset AVR pin states (#25364)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 820d2b58b3cfe16affd421f4925ae924cb60826f
Author: Martin Turski <turningtides@outlook.de>
Date:   Fri Aug 4 04:40:38 2023 +0200

    🚸 Option to report temperature on error (#25341)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit fe4819a9c16325fcac6aa58071a4f42b6e2d2c56
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Aug 3 08:45:07 2023 +0000

    [cron] Bump distribution date (2023-08-03)

commit 8ae19e45d6e069afa169548fa781fce928ea110d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Aug 3 01:28:06 2023 -0500

    🔨 Prevent variant overwrite

    Co-Authored-By: Martin Turski <turningtides@outlook.de>

commit aaa590855a26032d049ae797e092a4571d04e2d7
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Aug 3 15:55:29 2023 +1200

    📝 E3S1PRO is T5L (#26143)

commit a629471ed74b78f909224075832db64b5b3bc6ac
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Aug 2 06:06:02 2023 +0000

    [cron] Bump distribution date (2023-08-02)

commit bed26734a28175f7ef9669d5190bf7ebc6227223
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 1 23:03:06 2023 -0500

    🔧 More endstops refactoring (#25758)

commit 5da7143fe5a73f7aa636c833e95cf695d070faf1
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Jul 30 00:24:18 2023 +0000

    [cron] Bump distribution date (2023-07-30)

commit 2c9bc872e788a2281ca9b64a135ca1a53004f9b5
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Jul 30 11:34:16 2023 +1200

    🔧 Check AVR Rx/Tx conflict w/ LCD_EN (#26069)

commit abd1896ce2cd37a184fc1a237482b2b0a3c16ae2
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Jul 30 11:30:56 2023 +1200

    🔧 STM32 support 9 UARTs (#26072)

commit 347a7dc71e185f7ad7144d69e66cda10eb4cdc9e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 29 00:21:43 2023 +0000

    [cron] Bump distribution date (2023-07-29)

commit ae9f2710f0a0a1c47bd384a803e3345117b6dd49
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 28 16:53:01 2023 -0500

    🔨 Old renamed AVRs

commit 2a82ca87b03ab3b819f69b571ca44dd0a0e1afdf
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jul 27 23:03:36 2023 -0500

    🩹 Fix ProUI compile without Advanced Pause

commit 6f8178598f417a7963b26ebe091c0b3ee69f46dd
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 28 00:21:36 2023 +0000

    [cron] Bump distribution date (2023-07-28)

commit 6cc4dd10bc5504c38263b57ecf7e8b1e3d06e44e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jul 27 17:20:03 2023 -0500

    🐛 Fix hotend idle timeout checks

commit d036097bca52b128b421342afcdb908cb1d8d5ab
Author: lukasradek <lukasradek@users.noreply.github.com>
Date:   Thu Jul 27 23:08:21 2023 +0200

    🚸 Fix HD44780 EDIT_ITEM position (#26073)

commit 6ba50aa6ea519ab5e80ec0152b100a0425c181a2
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Jul 27 00:21:22 2023 +0000

    [cron] Bump distribution date (2023-07-27)

commit fdad658e5feb93943b1ab0ea9bc2420258e4f2e4
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Thu Jul 27 01:38:59 2023 +0200

    🐛 Fix runout extra length (#26082)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
    Co-authored-by: justvlade <7622616+justvlade@users.noreply.github.com>

commit 79be07f9a4aff5c010a0f454c24fb147725bcf2a
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jul 24 06:06:23 2023 +0000

    [cron] Bump distribution date (2023-07-24)

commit 5bcaae62f2c7965ee7f99eb44a44022f1cbad959
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Jul 24 15:31:39 2023 +1200

    ⚡️ Compact RGB565 TFT boot images (#26011)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit e451dec674d9093c8c10f953c5f6bcc7f9ed42b0
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 22 06:05:47 2023 +0000

    [cron] Bump distribution date (2023-07-22)

commit 6379d4dbca389b264cf5b404bd6fd9f5c3221be8
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Jul 22 15:05:04 2023 +1200

    🩹 Suppress G33 string warning (#26095)

commit 91c6a7180d8aa3f2ab8b9bbb486d68dc9657dbff
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 21 06:06:24 2023 +0000

    [cron] Bump distribution date (2023-07-21)

commit 9135e3f7d3fd0d634656f1c54c70a0ba1f878bfd
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jul 20 21:10:03 2023 -0500

    🚸 Revert M206 Home Offset behavior (#25996)

commit a0e3dea8b879aba8e0d2d7e4dc6a6447b3fe76ad
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jul 20 20:25:39 2023 -0500

    🚸 ColorUI Touch Calibrate in CW order

commit 6bc42300a1ce3fcbf2b396a6e1fbf11453f77544
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Jul 20 06:06:07 2023 +0000

    [cron] Bump distribution date (2023-07-20)

commit 45193b4a1d82023f1b763c0340e40ec5b6fcc51c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jul 19 21:12:32 2023 -0500

    🔥 Always use ISR for BABYSTEPPING (#26035)

commit 885e9cc0576af2c6a79d8bfa9a4f1560c6748b27
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jul 18 00:41:02 2023 +0000

    [cron] Bump distribution date (2023-07-18)

commit 244de2458ac6fd48f3031d0179ca1bcad6808583
Author: Alexander Gavrilenko <jmz52@users.noreply.github.com>
Date:   Mon Jul 17 10:53:36 2023 +0300

    🧑‍💻 Improve TFT Color UI layout / theme (#26077)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 4d6e5c12b3d40747ff62cb140fdc3c293c9dbab5
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jul 17 06:20:28 2023 +0000

    [cron] Bump distribution date (2023-07-17)

commit a5d47f84ae9eeb5c29280b279bfc844bac559c0d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jul 17 01:01:36 2023 -0500

    🎨 Rename Helvetica 14 (2)

commit 5fd0247239445976dc38c1d238ebc718e2bfe9ce
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jul 17 01:01:14 2023 -0500

    🎨 Rename Helvetica 14 (1)

commit 821d77fe4c2ea0260d63e02ae65ab575da840801
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jul 16 23:43:50 2023 -0500

    🎨 Misc. comment open

commit fef772ef29e502c8fd2f53e10de383dbcb3529fe
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Jul 16 21:32:16 2023 -0700

    🩹 Fix SPI TFT build on SKR V2 & V3/EZ (#26041)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 381515721481d09c4f30ca8a526e90fc39602fd9
Author: Scott Mikutsky <smikutsky@gmail.com>
Date:   Mon Jul 17 00:29:56 2023 -0400

    🐛 Ensure BLTouch deploy in HS Mode (#26033)

commit 810c1693aca079c6ecdb1584292c65b384ca1f5f
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Jul 16 06:08:45 2023 +0000

    [cron] Bump distribution date (2023-07-16)

commit fc2272c4b473a45f2033d4dd82aef4b259b99759
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Sat Jul 15 21:10:42 2023 -0400

    🩹 Fix, clean up ProUI, JyersUI (#26078)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 45f7ebb92b11ced03998d590ae1431609c9da68f
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Sun Jul 16 02:06:21 2023 +0100

    🩹 Fix Input Shaping "enable" for SHAPING_FREQ_[XY] == 0 (#26075)

commit 28f69a052c197b07ef7d404e738f2fa9ba641d0d
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 15 00:26:39 2023 +0000

    [cron] Bump distribution date (2023-07-15)

commit ef3054d1a8d368f5789a07ad5f0b14224ec1ce19
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Jul 14 16:24:17 2023 -0700

    ✨ BTT Octopus Pro V1.1 (STM32H723ZE) (#26043)

commit bcf61cc91c00b2c0d82aa0e88d0f88e5a18bbe8b
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Jul 6 00:27:11 2023 +0000

    [cron] Bump distribution date (2023-07-06)

commit 57d26f7e4f614ee4e05e7e97fdc7109d8cfdc702
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Wed Jul 5 08:21:54 2023 +0200

    🩹 Fix HOST_STATUS_NOTIFICATIONS compile (#26040)

commit 67a9a7e66f1706b56ab76fa9866470fe85e7612a
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jul 5 00:32:14 2023 +0000

    [cron] Bump distribution date (2023-07-05)

commit 16f19b2c1fa6b64abd4de2558c13c9fdc162d600
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jul 4 19:19:44 2023 -0500

    🩹 Fix ProUI tramming

commit ed4e22b548a3ffb348e9d20f995f67a9aa7d2dd6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jul 4 18:31:20 2023 -0500

    🧑‍💻 print_pos => print_xyz

commit 929497d52762f87243d1b521d9703f75b7501aa4
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Jul 4 14:07:56 2023 -0700

    📝 Update config URLs (#26049)

commit f479f8377d4a6b21ef3b429ed6a6d627c16ffd88
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Jul 4 13:25:26 2023 -0700

    🎨 Clean up TFT Colors (#26050)

commit 1feb70c91beced527e2abd29d9465e5d998a694b
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jul 4 06:06:45 2023 +0000

    [cron] Bump distribution date (2023-07-04)

commit 179260878feb6fd575f8d341454e7c4a5add6c2e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 1 20:38:17 2023 -0500

    🎨 Misc. fixes and formatting

commit 7b8a2180ff0a0924a0558a6fbf4c75903f250511
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jul 3 00:25:59 2023 +0000

    [cron] Bump distribution date (2023-07-03)

commit 3ea87ad54c1e445a1c8cfef1489809edae5decb3
Author: Alexander Gavrilenko <jmz52@users.noreply.github.com>
Date:   Sun Jul 2 04:16:12 2023 +0300

    ✨ SPI TFT / Touchscreen for STM32H7 (#25784)

    Co-authored-by: thisiskeithb <13375512+thisiskeithb@users.noreply.github.com>
    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit c483fe76c7c750d1ee08a6d5fdfe363f1beb4e03
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 1 20:01:45 2023 -0500

    🩹 Fix ProUI _remain_time

    Followup to #25982

commit b50add4694e66209acd3c5d6fe62f062817fd79e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 1 19:54:39 2023 -0500

    🔨 Wrapper for GCC < 8

commit 275642b2977af95024e2c8b55538a5dbc0fa09c5
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Jul 2 00:31:20 2023 +0000

    [cron] Bump distribution date (2023-07-02)

commit 38e92b522b8abc2a5b2c4050dd8d8231127d1aeb
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 1 18:56:53 2023 -0500

    📝 mm/m => mm/min

commit 7f5b0b4008c4e4853903f4f790392451f82362c2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 1 18:20:36 2023 -0500

    🩹 Define drawTrinamicConfigMenu

    Followup to #25982

commit 60f74f3cb3c95e9d1c6408b80a489d422cf945e6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 1 18:20:22 2023 -0500

    🔨 Suppress truncation warning

commit 1a241e6e86512b570267d672e2f00a80df41b2e9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 1 16:50:42 2023 -0500

    🐛 Fix M105 (MString append TS) and EEPROM ver

    Followup to #24390

commit 4985acafada69dcb17b813d76b359bcfb5b57b43
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 1 04:33:53 2023 -0500

    🐛 Prevent MString infinite recursion (#26037)

    Followup to #24390

commit f9c8703e778a10f0a2a46c199712a7555f2aca33
Author: Anson Liu <ansonl@users.noreply.github.com>
Date:   Sat Jul 1 03:19:16 2023 -0400

    🩹 Fix missing include cycles.h (#25927)

commit b77e2a5020714ad17fc12052093231ad4520ce14
Author: Christophe Huriaux <c.huriaux@gmail.com>
Date:   Sat Jul 1 06:06:08 2023 +0200

    ✨ Ender 3 S1 Pro/Plus stock touchscreen (#25905)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit f766a90f5ff300d02eb6ac7917f2355b71f1f237
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 1 00:53:49 2023 +0000

    [cron] Bump distribution date (2023-07-01)

commit 0878b99b2cb38ffd40faa12d9e3de3bd659af205
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 30 19:21:56 2023 -0500

    🌐 Language Import/Export (#25889)

commit 1bc155e8101001c75b867017fc5fcd31cc5d2f31
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Jun 30 17:21:37 2023 -0700

    🎨 Simplify BTT Octopus Max EZ LCD Pins (#26019)

commit f14f1be168ebf252dd458c935271aed1a57cfa0b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 30 19:16:00 2023 -0500

    🎨 Standardize naming (ProUI) (#25982)

commit 7247acdece4bb20bfd49960c44a7bebe1ea0f74c
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 30 00:24:45 2023 +0000

    [cron] Bump distribution date (2023-06-30)

commit 7b23fd3548f5aabc269ba24ec947d6fdfd225072
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Fri Jun 30 00:06:05 2023 +0200

    🐛 Fix FT Motion runout in progress (#26020)

commit d9349caeee7307d660ec729052210dfba7036432
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Jun 29 13:27:25 2023 -0700

    ⚡️ Ethernet Buffer for Input Shaping on LPC (#26027)

commit 97e15812fa15cf3ee9f260089282eb5e69915c4e
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Thu Jun 29 13:21:14 2023 -0400

    🔨 Makefile + 256K Creality Maple + Heater IDs (#26018)

commit cb12114a7eeaefc227aa7aa94a8e382bfd3aa95a
Author: Krzysztof Błażewicz <blazewicz.krzysztof@gmail.com>
Date:   Thu Jun 29 09:18:32 2023 +0200

    🩹 Fix JyersUI typos (#26029)

    Followup to #24390

commit aee8e15fd2b1b701a5f16e92a0c557c6dccb13de
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Jun 29 00:25:22 2023 +0000

    [cron] Bump distribution date (2023-06-29)

commit 6474773555274527ac4a24162dfdd9ea4b2b59da
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Thu Jun 29 00:06:50 2023 +0200

    🐛 Fix AD4985 with 5V input, add AD595 3.3V warning (#26021)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit be18edd604d10aba6fb7a3210e90bf711cc436dc
Author: Krzysztof Błażewicz <blazewicz.krzysztof@gmail.com>
Date:   Wed Jun 28 05:51:47 2023 +0200

    🚸 JyersUI MPC menu (#26017)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit bbfaf7474c50f81d606c2dde91035bc40835e830
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jun 27 21:44:42 2023 -0500

    🎨 CrealityDWIN => JyersDWIN (#26026)

commit 46b5753f5653401bc2d1d3120041a897384db48d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jun 27 20:33:57 2023 -0500

    🎨 Indent temp structs

commit a5ac50fcbf541dcd33fe35979b767bbcf0568884
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jun 28 00:25:35 2023 +0000

    [cron] Bump distribution date (2023-06-28)

commit 574dd34c49fde76e1e736b8a7e1ea579d724ff22
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jun 27 13:19:36 2023 -0500

    ♻️ String helper class (#24390)

commit 4a734e4de436d9f497ef432744902c12bab9a257
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 26 00:26:36 2023 +0000

    [cron] Bump distribution date (2023-06-26)

commit 402c4ef5d3de2b22efd73111222ee7d1f1f6b25f
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jun 25 15:32:56 2023 -0700

    🚸 M86-M87 Hotend Idle Timeout (#25015)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 0138aff890c458f78b68aa21753bcf5d6e5bf488
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 25 12:07:25 2023 +0000

    [cron] Bump distribution date (2023-06-25)

commit f281fb473d499d8805fb29d7dd13ec9ef6b10c41
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 25 01:31:07 2023 -0500

    🎨 Minor code cleanup

commit a256e47b9c282bd69cd9d1d69970d41e9676e3dc
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jun 24 12:07:28 2023 +0000

    [cron] Bump distribution date (2023-06-24)

commit 9bf95418a7fbc0da0a6dc8bfb5024b624b94a51a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jun 24 02:57:58 2023 -0500

    🐛 Fix TFT_LTDC::writeReg

    Followup to #25939

commit 60f591f3b6e06fdef903e10f81ac96f65e30d78e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 23 12:11:03 2023 +0000

    [cron] Bump distribution date (2023-06-23)

commit 858916d628526b5d56c34c5c9663e3535bfc7788
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Fri Jun 23 04:57:22 2023 -0500

    🚸 Update DWIN ProUI (#26003)

commit 2218bab542c839f4d1d09640f7c7a1444e38a23b
Author: mjbogusz <mjbogusz@users.noreply.github.com>
Date:   Fri Jun 23 11:56:34 2023 +0200

    🚸 Color UI remaining time (#24843)

commit a58e530f921e6197089a678d4a667cf3a10de3bc
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Fri Jun 23 11:52:10 2023 +0200

    🩹 Fix 'M493 S12' (#26007)

commit 1fbeac7b5255634bb5aca209a3d3dcb6b5e43193
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 23 00:15:54 2023 -0500

    🎨 Adjust TFT code/comments

commit 18ccc404432f4b9a71cd8bd855ccc243414abcab
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Jun 22 12:06:59 2023 +0000

    [cron] Bump distribution date (2023-06-22)

commit 8c9172cf5d21fd57aed16edbe825a872ae064ad0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jun 22 02:54:21 2023 -0500

    🍻 Fixed-Time Motion integration (#25719)

commit 2dc76689ea186a6c6334a728253ede95c6c6203e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jun 20 00:21:56 2023 +0000

    [cron] Bump distribution date (2023-06-20)

commit 91401d7e5f36f1b2d27bfbeef96ae54953c3d3ae
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 19 15:05:51 2023 -0500

    🔧 Move non-DUE conditions

commit 733209f9a2cfa347e072738c76860c08a4e74500
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Jun 18 22:12:50 2023 -0700

    🔧 MPC adjustments (#25986)

commit d79b42c710cadcc7dede4e806e94f16c6451d3d7
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 19 00:24:00 2023 +0000

    [cron] Bump distribution date (2023-06-19)

commit 441416728cd7f0e9b6ebf94f895d1d27fe59d25a
Author: Mark <niujl123@sina.com>
Date:   Sun Jun 18 17:18:08 2023 +0800

    🚸 Bed distance sensor improvements (#25847)

commit dd1792bdfce1ff5ff679f20dbf9bf66789e743b0
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Sun Jun 18 00:19:28 2023 -0400

    🔨 Update CMakeLists.txt (#25983)

commit 927b3cc41a0a53f95e1fca78430b116e0fc8806a
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 18 00:25:52 2023 +0000

    [cron] Bump distribution date (2023-06-18)

commit c180a99c793493e10102b04b58239e32e793ea93
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Jun 18 09:44:49 2023 +1200

    📝 Update BTT SKR V3 board comments (#25973)

commit a3df3d40eec8e3d4b82feed5b92d50ba15b47acf
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sat Jun 17 22:55:02 2023 +0200

    🐛 Fix G2/G3 limiting_speed (#25988)

commit 1e5c279da37270ec8d084cd9c46e6abec2f70a42
Author: discip <53649486+discip@users.noreply.github.com>
Date:   Sat Jun 17 22:53:03 2023 +0200

    🔨 Fix marlin_STM32H723VG mcu value (#25991)

    Followup to #25921

commit 5b8b8e005b87fad983314bb78bb62604bd8aa8af
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Sat Jun 17 23:49:22 2023 +0300

    🔧 BLTOUCH_HS_MODE hex value check (#25992)

commit 238951a966204ce9bc109e06fdb4027125b28feb
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 16 18:08:59 2023 -0500

    🎨 More more lowercase (partial ProUI)

    Followup to #25939

commit 78b342661a07fae8d7152f369c3c9fe16ed9b9cb
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jun 17 00:22:04 2023 +0000

    [cron] Bump distribution date (2023-06-17)

commit 41a5fbb16ad985220f1cee1b823950c3bb771186
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 16 18:12:01 2023 -0500

    🎨 More lowercase

    Followup to #25939

commit eca80db9b6846a05313df81c583828809684478f
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 16 00:24:24 2023 +0000

    [cron] Bump distribution date (2023-06-16)

commit 8261af3010efce783dc2063d7fa75e17be89e88a
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Jun 15 12:57:15 2023 +1200

    ✨ BTT RAMPS 1.6+ (#25970)

commit 9728d79ade1c3d72bba368f5c072a8fe402c2048
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jun 14 17:43:24 2023 -0700

    📝 Document Manta E3 EZ / E3V2 LCD custom wiring (#25976)

commit 067091458a684a5f5529ef31860a89892750f5bc
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jun 14 17:41:43 2023 -0700

    🎨 Group STM32G0 pins includes (#25977)

commit 166ed289953fe25ff4dabd2541934e7364684168
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jun 14 19:37:35 2023 -0500

    🎨 Lowercase followup

    Followup to #25939

commit 5cfe3af0ef1b64d8cbb87335a7e996bf3e1f41a4
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Jun 15 00:26:48 2023 +0000

    [cron] Bump distribution date (2023-06-15)

commit d26955bde6d64430ed46422f3ec575317c648837
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jun 14 19:06:17 2023 -0500

    🔧 Sanity check IA_CREALITY mesh size

commit c3694f1c038fa20ad749118b0a1c7aa88e3dd5f2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jun 14 17:24:50 2023 -0500

    🎨 Lowercase methods, functions, data members (#25939)

    For: TFT, DGUS, MarlinUI, Anycubic, JyersUI, CrealityUI

commit 1726ba5bda1deb9b71e2d9644c789e806b7d1127
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jun 13 00:23:25 2023 +0000

    [cron] Bump distribution date (2023-06-13)

commit aa2f4051bb335a24d062b56ec65162633af9dc6d
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Jun 12 14:39:49 2023 -0700

    🔥 Remove VAkE 403D (#25969)

commit 2ef71c6ebaa1f1b496eb369879fe22c69cf9adb4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 12 16:38:14 2023 -0500

    ♻️ Simplify SERIAL_ECHO (#25928)

    Since this increases AVR code size, try to optimize further.

commit d9d2dae88391b0bbfa131f56fa49d3f472683023
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 12 00:25:11 2023 +0000

    [cron] Bump distribution date (2023-06-12)

commit bea1a914bee6caf6ff63a4c0ab65a2b7ddea9de8
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Jun 11 14:49:37 2023 -0700

    🔨 SKR Mini E3 v3.0.1 XFER (#25955)

commit 85067e14b5cd9a1d4d8ac8f38a763e9745d4fe61
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 11 00:29:06 2023 +0000

    [cron] Bump distribution date (2023-06-11)

commit 00ab015de7b728082196c203626dd215dc8427d3
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Jun 10 17:20:50 2023 -0700

    🔨 Firmware rename followup (#25966)

    Followup to #25957

commit b5d3d0141f5169ba79a99876af7b0c274cb382be
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jun 10 00:22:22 2023 +0000

    [cron] Bump distribution date (2023-06-10)

commit 3706c16729ba095a9845128022408a0c07cde221
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Jun 9 19:59:23 2023 +1200

    🐛 Fix dummy thermistors 998-999 (#25956)

commit 0ed46406d1d4b4280f8458d56b45b7bdab33e113
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 9 02:56:25 2023 -0500

    🔨 Simpler distinct firmware rename (#25957)

commit 82ddd55a1a4800e478b937da49d396cb2fb351f1
Author: Bart Meijer <brupje@gmail.com>
Date:   Fri Jun 9 04:55:26 2023 +0200

    🩹 Conditional u8g for SAMD21 (#25947)

commit 34e23bcf950fa89737289c76953af7b24d5c22c4
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Thu Jun 8 20:47:35 2023 -0500

    🐛 Fix _MINMAX_TEST typo (#25954)

commit f3cda01b959274e7930c2050f5e34aa1460791bc
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 9 00:30:56 2023 +0000

    [cron] Bump distribution date (2023-06-09)

commit 2a79aad2dda922e35260750db90e7e243e24fc43
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jun 8 19:22:17 2023 -0500

    🔨 Fix serial port #error text

commit bbbd6045cb6e76cca44c973e1922ce5220ab29c4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jun 8 19:18:59 2023 -0500

    🔨 Update STM32Hxx boards/variants

    Followup to #25934

commit 683916e17a6fe35c9726ad7e57e73c519fc96222
Author: Dmitry Plastinin <Uncellon@yandex.ru>
Date:   Thu Jun 8 07:14:34 2023 +0300

    🚸 Portrait TS35 move axis screen (#25945)

commit 9360e13cdd1e21799eb3aedcd23015469da6798d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jun 7 22:37:16 2023 -0500

    🚸 General TFT cleanup

commit 9d830d72077fd42927e0a1396fa752b8a6c449cd
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jun 7 20:16:30 2023 -0700

    🔨 Clean up some BTT envs, etc. (#25934)

    Followup to #25921

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 54a82b4337a5e65e53ef8b28749546c18d05ba79
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jun 7 20:58:55 2023 -0500

    🚸 Fix TFT menu positioning (#25942)

    Co-authored-by: Ed <751406+helakejr@users.noreply.github.com>

commit d1e995670d2ce345b42ac8d8f9b0cebda7d87632
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jun 7 20:28:15 2023 -0500

    🔧 Z-MIN as CREALITY V25 S1 probe

commit 10947a463ba50ec31434e775e006d192906f7a83
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Jun 8 00:23:27 2023 +0000

    [cron] Bump distribution date (2023-06-08)

commit e8f5f9d7321bb681ecbb1f787a381bf3885ec302
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jun 7 01:03:35 2023 -0700

    🔨 Teensy 4.1 pins env check (#25937)

commit 984f9fe7d6a0c86f045010d294c316fe05835587
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Wed Jun 7 10:01:07 2023 +0200

    🌐 Update Italian language (#25940)

commit 322d5dc29c136b5e2f1a8e4712fc10a781b9d4c3
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jun 7 00:25:18 2023 +0000

    [cron] Bump distribution date (2023-06-07)

commit 8f1d80b0ba425b6d927d99aad8340e22a71da7ff
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jun 6 15:30:28 2023 -0500

    🧑‍💻 Use Flags<> for runout (#25938)

commit 35016633d843ba393eb17cf5fd1dba03764821dd
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jun 6 02:58:28 2023 -0500

    🩹 Conditional include probe.h

commit 4b8e4ef38e1f395d394314f54bacff8def9527c8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 5 23:49:09 2023 -0500

    ⚡️ Mixer label in PROGMEM

commit 17cc5fa8723eed59106e925472baf37383a5ac5b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 5 21:08:43 2023 -0500

    🧑‍💻 Suppress narrowing warnings

    Followup to #25924

commit a6b32a5a915e17eaa73dede2f9a98fc042b4904d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 5 20:39:14 2023 -0500

    🧑‍💻 Bypass error in build_example

commit e116a99eda1bbfd97e4af1136618d80dcceb169e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 5 20:13:15 2023 -0500

    🩹 Fix JyersUI corner pos

    Followup to #25631

commit bfd6be3799627f87da29f7281b14f9e9be515a69
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jun 6 00:24:34 2023 +0000

    [cron] Bump distribution date (2023-06-06)

commit 6a29d5d5af1b6ef0bee4125a9fc00aaf2c1b6695
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 5 17:25:42 2023 -0500

    🧑‍💻 Fix mfconfig trailing space

commit fbc5bd0d0424d365eaaddad47c58b733557ef42d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 5 16:24:20 2023 -0500

    🩹 Wrap HAS_DISPLAY for if()

    Followup to #24877

commit 7680fe2b59c9861c0e6acb13cf085ca55d7deddc
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 5 16:01:32 2023 -0500

    🧑‍💻 Dir change is AxisBits

    Followup to #25761

commit 70288c6c4fae6a6334d7c48b9ef17da7ecf3c173
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 5 00:43:31 2023 -0500

    🎨 Detab C/C++

commit 3b681f7b7450582e0fca2425aabf47b37624cbda
Author: Roi Rodríguez Huertas <roiamorin69@gmail.com>
Date:   Mon Jun 5 07:13:57 2023 +0200

    🔧 TMC Driver axis baud for Soft Serial (#25664)

commit 6e8035e5aa59454600cd359665a34954dac80a70
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jun 5 00:24:02 2023 +0000

    [cron] Bump distribution date (2023-06-05)

commit f8423f9da09a8d67074b4243917953a6b2b8d279
Author: kisslorand <50251547+kisslorand@users.noreply.github.com>
Date:   Sun Jun 4 12:49:27 2023 +0300

    🩹 Fix D576 buffer underrun reporting (#25931)

commit 1a2816284c0e92f39840e8688d617faa1e32cd2f
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Sun Jun 4 05:20:07 2023 -0400

    ✏️ Fix LCD contrast typo (#25929)

commit f8c51523694e5ccc6473bc9791f3fa0135ad395f
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 4 00:27:30 2023 +0000

    [cron] Bump distribution date (2023-06-04)

commit 6136e48df5c8e2aee3447b99beb8464231895b69
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sat Jun 3 23:09:29 2023 +0200

    🐛 Fix M25/M125 for LCDs with ui.resume_print (#24877)

commit b8655ca0ed05e077ac89ff377bff3e4db7ff5b3a
Author: Manuel McLure <manuel@mclure.org>
Date:   Sat Jun 3 13:39:41 2023 -0700

    🔧 BTT SKR 3 has onboard endstop pullups (#24876)

commit ba08dcfb76804a912380603b3f69831ea0d1d6eb
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jun 3 04:40:07 2023 -0500

    🧑‍💻 Fix narrowing conversions (#25924)

commit ac954b57f764cf958000314efc20b725c2b8e054
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Jun 2 20:50:45 2023 -0700

    🩹 Endstop hit state followup (#25885)

    Followup to #25574

commit 739f1027f8e12da28d15e1de78a5b7ecc49c3b12
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Jun 3 15:47:57 2023 +1200

    🔨 STM32H723VG (1024KB) (#25921)

commit a6b56d171d855429d1f0249fcc1ffe64881994f4
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Jun 3 15:37:29 2023 +1200

    🎨 Lowercase followup (#25923)

    Followup to #25914

commit ad0d700a3e783943a722fec00ee3ac24020691ba
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jun 3 00:22:16 2023 +0000

    [cron] Bump distribution date (2023-06-03)

commit 86c811660ebf0b3fcbae2f34273d4c9d0c22abc4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 2 14:30:34 2023 -0500

    🧑‍💻 Remove LOOP macros (#25917)

commit 2691167afe02fbbe74b0fdca2c28a49fac635741
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 2 14:26:02 2023 -0500

    🧑‍💻 Dump BOTH and EITHER macros (#25908)

commit 32be4065efeafe781e007ca6ff47bd5a3fc22184
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed May 31 16:47:05 2023 -0500

    🧑‍💻 numtostr use functions

commit bc385122e94d7eda79bdf1573a7c2071c4589da2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 2 13:34:13 2023 -0500

    🎨 Lowercase method / data member names (#25914)

commit e45eddfd6c4008d82b3aefe4764793b0669dc60a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 2 12:46:23 2023 -0500

    🔨 Fix pins debugging for Simulator

commit 500415955051a3295756668b3aae3c383bc1b4bf
Author: alextrical <35117191+alextrical@users.noreply.github.com>
Date:   Fri Jun 2 17:32:43 2023 +0100

    🔨 Clarify env error (#25915)

commit d9659d3177ff3ffd3530fac2db850a5384b67af9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jun 1 22:58:17 2023 -0500

    📝 M122 comment

commit 2de2185d970ce63dab078bfdd7eb9e49a64a39c2
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 2 01:38:48 2023 +0000

    [cron] Bump distribution date (2023-06-02)

commit 49134a9467f79037cc6ea643b8ac9634e5f7eb36
Author: I3DBeeTech <129617321+I3DBeeTech@users.noreply.github.com>
Date:   Fri Jun 2 04:58:34 2023 +0530

    🔧 Update LCD with NeoPixel Contrast (#25893)

commit 6044cb99559e0bb29a697f346fd1507c59ffbba5
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jun 1 17:39:08 2023 -0500

    🌐 Remove unused strings

commit ded810cebfbde80ebbb64afe1f4fd277c94e12f1
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Fri Jun 2 01:35:42 2023 +0300

    🌐 Update Russian translation (#25840)

commit 9e0dcd4a2b6d0262ee2b09170aff0c1f21d9175e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jun 1 16:53:02 2023 -0500

    🧑‍💻 ExtUI::onLevelingStart/Done for all leveling (#25913)

commit ad23b8c559d55bfbc81d077a129c256c9ef9a585
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jun 1 14:54:23 2023 -0500

    🚸 Probe Wizard display fix

commit 3999d67e514c1e752128df2a6dc80ec0579ee504
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Jun 1 12:44:19 2023 -0700

    🔧 Default has Heated Bed (#25895)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 67f0d6ae5ea89fe1cdfc7ac4b25ea2947df1772b
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue May 30 00:33:07 2023 +0000

    [cron] Bump distribution date (2023-05-30)

commit 47616c7dfa7f3f7fddd8fa8d207929d65d2291a6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon May 29 19:00:09 2023 -0500

    🔨 Install 'heatshrink' if needed (#25896)

commit d926d4dea413f70303ae38a74bc627aaaf21d97e
Author: DejitaruJin <dejitarujin@gmail.com>
Date:   Sun May 28 21:22:00 2023 -0400

    🩹 Fix and improve GT2560 pins (#25890)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit b4ba3dd7f37a6214ed8a3e62f45f9d2aac3917c9
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon May 29 00:21:30 2023 +0000

    [cron] Bump distribution date (2023-05-29)

commit 0b4500155e8c61aecf41090b41f34a3452593b78
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun May 28 13:24:45 2023 -0700

    🩹 Update KEDI / GODI LCD_PINS_EN pin (#25886)

commit ef93b401c38eb1748721be74c9fdbae77f375792
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat May 27 00:22:42 2023 +0000

    [cron] Bump distribution date (2023-05-27)

commit 154e48ba22ceedb01e9058a7f8da9457a445ee19
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 26 18:54:50 2023 -0500

    🎨 Misc. spacing

commit f73fe76b6c5f9088222265e47494611e9d8bc379
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri May 26 17:50:42 2023 -0500

    🌐 Language export to CSV

commit d20ce5ff0a4d45e2ac7091832c86d4441f0356a9
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri May 26 00:21:31 2023 +0000

    [cron] Bump distribution date (2023-05-26)

commit a3eace117ced5ad72227046465a6d878f66261d9
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Thu May 25 10:32:04 2023 +0300

    🧑‍💻 Improve missing translations script (#25841)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 772e19aab988b5d6466bdf2e8948c8c7eee3cafd
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed May 24 22:10:40 2023 -0500

    ✨ EP_BABYSTEPPING (#25869)

commit 1a4e208c6901cf3727940e98f12748aa14a52f5d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed May 24 21:22:54 2023 -0500

    🩹 Fix card.ls call (in easythreed_ui)

    Fix regression in #24679

commit e2a724990762dab554ce5bab092327eb604d3d83
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu May 25 00:20:08 2023 +0000

    [cron] Bump distribution date (2…
thinkyhead pushed a commit that referenced this pull request Dec 3, 2023
burlizzi pushed a commit to burlizzi/Marlin that referenced this pull request Dec 4, 2023
classicrocker883 pushed a commit to classicrocker883/Marlin that referenced this pull request Dec 26, 2023
classicrocker883 pushed a commit to classicrocker883/Marlin that referenced this pull request Dec 26, 2023
classicrocker883 pushed a commit to classicrocker883/Marlin that referenced this pull request Dec 26, 2023
classicrocker883 pushed a commit to classicrocker883/Marlin that referenced this pull request Dec 26, 2023
The-EG added a commit to The-EG/Marlin that referenced this pull request Jan 1, 2024
thinkyhead pushed a commit that referenced this pull request Jan 4, 2024
chrisheib pushed a commit to chrisheib/Marlin that referenced this pull request Jan 6, 2024
smiksky added a commit to smiksky/Marlin that referenced this pull request Feb 4, 2024
commit 5003681
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Feb 4 10:14:49 2024 -0800

    🩹 Fix HOTEND_IDLE_TIMEOUT with no heated bed (MarlinFirmware#26746)

commit d939692
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Feb 4 10:13:03 2024 -0800

    🩹 Update BTT GTR v1.0 DIAG jumper/pin (MarlinFirmware#26764)

commit 1dee4d9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Feb 4 12:09:08 2024 -0600

    🔧 TOUCH_IDLE_SLEEP_MINS => DISPLAY_SLEEP_MINUTES

    Follow up to MarlinFirmware#26517

commit 9364cbb
Author: Smokey Pell <brentpell81@gmail.com>
Date:   Sun Feb 4 09:37:32 2024 -0600

    🚸 Tronxy V10 w/ TFT_TRONXY_X5SA + MKS_ROBIN_TFT43 (MarlinFirmware#26747)

commit 755b661
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Sun Feb 4 10:03:08 2024 -0500

    🔧 Fix USE_Z_MIN conditions (MarlinFirmware#26762)

commit 7f4792e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Feb 4 00:22:42 2024 +0000

    [cron] Bump distribution date (2024-02-04)

commit e6837b2
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Feb 3 15:19:19 2024 -0800

    🩹 Fix STM32 HW Serial 6 (MarlinFirmware#26763)

    Followup to MarlinFirmware#26328

commit 9e21330
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Feb 3 00:20:49 2024 +0000

    [cron] Bump distribution date (2024-02-03)

commit c476e62
Author: Davide Rombolà <davide.rombola@gmail.com>
Date:   Fri Feb 2 02:31:39 2024 +0100

    🩹 Fix STM32 HW Serial (MarlinFirmware#26531)

    Followup to MarlinFirmware#26328

commit 4c5d783
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Feb 2 00:20:22 2024 +0000

    [cron] Bump distribution date (2024-02-02)

commit 9a5cfb3
Author: Abdullah YILMAZ <h.abdullahyilmaz@hotmail.com>
Date:   Thu Feb 1 05:11:08 2024 +0300

    🌐 Turkish language update (MarlinFirmware#26739)

commit 5a87bea
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Wed Jan 31 20:24:08 2024 -0500

    🚸 Fix repeating "Power Off" message (MarlinFirmware#26755)

commit d62f45b
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Feb 1 00:21:39 2024 +0000

    [cron] Bump distribution date (2024-02-01)

commit f9d5ee0
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Feb 1 07:33:42 2024 +1300

    🩹 Patch STM32 serial UUID (MarlinFirmware#26737)

    Followup to MarlinFirmware#26715

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit ef04680
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 31 06:06:35 2024 +0000

    [cron] Bump distribution date (2024-01-31)

commit 1c6cfc3
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Jan 30 21:00:02 2024 -0800

    🐛 Fix I/J/K chopper timing (MarlinFirmware#26736)

    Followup to MarlinFirmware#19112

commit 0266e7f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Jan 30 20:58:06 2024 -0800

    📝 Biqu => BIQU (MarlinFirmware#26735)

commit 610ea0a
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Jan 31 17:56:46 2024 +1300

    🔨 No strlcpy in Windows (MarlinFirmware#26748)

commit 70d942a
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 30 06:06:23 2024 +0000

    [cron] Bump distribution date (2024-01-30)

commit 5639237
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 29 20:38:03 2024 -0600

    🎨 Misc. cleanup 29-01

commit 541bd26
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 29 00:21:02 2024 +0000

    [cron] Bump distribution date (2024-01-29)

commit 7a4d601
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Jan 28 14:13:23 2024 -0800

    🩹 Temp constraints followup (MarlinFirmware#26744)

    Followup to cb291e8

commit bf8675b
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 28 00:22:35 2024 +0000

    [cron] Bump distribution date (2024-01-28)

commit ebea672
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 27 11:45:54 2024 -0600

    🐛 Protect EEPROM bytes 916-926

    Followup to MarlinFirmware#26729

    Ender-3S1 STM32F401 Bootloader

commit ce8535f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 26 15:18:38 2024 -0600

    🧑‍💻 Fix warning, adjust tests

commit 0ba4cd2
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 27 00:19:36 2024 +0000

    [cron] Bump distribution date (2024-01-27)

commit afc2dd6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 25 22:09:06 2024 -0600

    🎨 Misc. cleanup 25-01

commit 5768b42
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 25 22:06:09 2024 -0600

    Add Conditionals_type.h

commit ee8630c
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 26 00:42:39 2024 +0000

    [cron] Bump distribution date (2024-01-26)

commit 01094ea
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Thu Jan 25 19:18:49 2024 -0500

    ✨🔨 EEPROM exclusion zone (MarlinFirmware#26729)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 6c1fd1f
Author: qwertymodo <qwertymodo@qwertymodo.com>
Date:   Thu Jan 25 16:16:32 2024 -0800

    🩹 Fix single Neo strip M150 K (MarlinFirmware#26709)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 4f65466
Author: sargonphin <85966195+sargonphin@users.noreply.github.com>
Date:   Fri Jan 26 00:48:06 2024 +0100

    🔧 HYBRID_THRESHOLD sanity checks (MarlinFirmware#26681)

commit 9b31193
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Jan 26 12:39:09 2024 +1300

    🩹 Followup to EDITABLE_STEPS_PER_UNIT (MarlinFirmware#26677)

    Followup to MarlinFirmware#26618

commit 8594e94
Author: ejhoness <72996067+ejhoness@users.noreply.github.com>
Date:   Thu Jan 25 20:37:35 2024 -0300

    ✏️ Fix draw_dialog.cpp typo (MarlinFirmware#26684)

commit 16acb57
Author: Cesar Guillermo Montiel <cesarweb@hotmail.com>
Date:   Thu Jan 25 20:12:49 2024 -0300

    ✨ Creality v2.4.S4_170 (Ender 2 Pro, HC32F460KCTA) (MarlinFirmware#26730)

commit 04c8a31
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 25 15:07:34 2024 -0600

    🎨 Misc. LCD pins comments

commit 3856037
Author: engrenage <32837871+petaflot@users.noreply.github.com>
Date:   Thu Jan 25 21:24:57 2024 +0100

    🔧 Allow float Z_PROBE_LOW_POINT (MarlinFirmware#26711)

commit ffbf4a6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 25 13:41:39 2024 -0600

    🩹 Fix IA Creality IDEX case

commit a215bc2
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 25 00:28:09 2024 +0000

    [cron] Bump distribution date (2024-01-25)

commit cbc674f
Author: minding-myown-business <jyoung12345.accounts@skiff.com>
Date:   Thu Jan 25 00:24:25 2024 +0000

    📝 Fix dead LCD link (MarlinFirmware#26669)

commit 97546bf
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Jan 25 09:33:02 2024 +1300

    🚸 PLR recover chamber temp (MarlinFirmware#26696)

commit ed1391e
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Wed Jan 24 22:21:00 2024 +0200

    🔧 Wrap POWER_LOSS_RETRACT_LEN (MarlinFirmware#26695)

commit 7fbd9ec
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jan 24 10:55:59 2024 -0800

    🔧 Allow RAMPS FAN1_PIN override (MarlinFirmware#26725)

commit 6398902
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jan 24 10:54:37 2024 -0800

    🔧 Update SKR_MINI_SCREEN_ADAPTER error (MarlinFirmware#26726)

commit e668d5a
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Jan 25 07:50:48 2024 +1300

    🔧 STM32 UID followup (MarlinFirmware#26727)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit a222827
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 24 00:22:20 2024 +0000

    [cron] Bump distribution date (2024-01-24)

commit 3ef192e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 23 16:05:41 2024 -0600

    🎨 Cosmetic cleanup 23-01

commit 5fea79f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 23 16:02:33 2024 -0600

    🔧 Fix ROTATIONAL_AXIS_GANG

    Co-Authored-By: DerAndere <26200979+DerAndere1@users.noreply.github.com>

commit 18e65f5
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 23 15:55:13 2024 -0600

    🩹 Fix _U and other conflicts

    Fix MarlinFirmware#26220

commit 5ed6bf6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 23 15:44:51 2024 -0600

    🔧 Allow for no STOP pin

    Co-Authored-By: DerAndere <26200979+DerAndere1@users.noreply.github.com>

commit d79bcef
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Tue Jan 23 21:09:31 2024 +0100

    🔧 Sanity check Z_CLEARANCE_FOR_HOMING (MarlinFirmware#26721)

commit f1a5340
Author: Anson Liu <ansonl@users.noreply.github.com>
Date:   Tue Jan 23 08:24:49 2024 -0800

    🚸 DOGM active extruder indicator (MarlinFirmware#26152)

commit 4309e6a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 22 23:31:04 2024 -0600

    🧑‍💻 Fix build_all_examples

commit 0c3d1cf
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 23 00:50:39 2024 +0000

    [cron] Bump distribution date (2024-01-23)

commit aa7d571
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 22 17:32:01 2024 -0600

    ♻️ LCD pins migration precursor (MarlinFirmware#26719)

    Preliminary changes for MarlinFirmware#25650

commit 604d3e8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 22 16:38:08 2024 -0600

    🎨 Move EXIT_M303

commit 22fc07d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 2 15:03:02 2023 -0500

    🧑‍💻 ExtUI::onPlayTone optional duration

commit dd3b5a1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 21 22:00:37 2024 -0600

    Misc. aesthetic adjustments

    Co-Authored-By: Andrew <18502096+classicrocker883@users.noreply.github.com>

commit 416f94f
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 22 00:23:03 2024 +0000

    [cron] Bump distribution date (2024-01-22)

commit 204de72
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Jan 21 04:01:25 2024 -0800

    ✨ BIQU MicroProbe (MarlinFirmware#26527)

commit 80cd89d
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Sun Jan 21 13:11:03 2024 +0200

    🩹 Fix M592 report (MarlinFirmware#26680)

commit 624226c
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Jan 22 00:09:36 2024 +1300

    🩹 Fix STM32 CPU serial UUID (MarlinFirmware#26715)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 3adf73a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Jan 20 21:47:26 2024 -0800

    🔥 Remove ALLOW_LOW_EJERK (MarlinFirmware#26712)

commit eb7b207
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 21 00:24:10 2024 +0000

    [cron] Bump distribution date (2024-01-21)

commit d7e4536
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Jan 20 19:24:30 2024 +1300

    🔨 Fix POLAR build (MarlinFirmware#26687)

commit 388c701
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 20 00:21:13 2024 +0000

    [cron] Bump distribution date (2024-01-20)

commit da96607
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Sat Jan 20 00:38:25 2024 +0200

    🔧 Adjust DEFAULT_EJERK settings (MarlinFirmware#26665)

commit fb49645
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Jan 20 08:49:35 2024 +1300

    📝 Fix Anet pins typo (MarlinFirmware#26660)

commit 7d751a2
Author: German Borisov <Borisov.German@gmail.com>
Date:   Fri Jan 19 22:17:36 2024 +0300

    ✨ Status Screen flow adjustment (MarlinFirmware#26627)

commit 9f7d5bb
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 19 00:22:09 2024 +0000

    [cron] Bump distribution date (2024-01-19)

commit 0df25b1
Author: Abdullah YILMAZ <h.abdullahyilmaz@hotmail.com>
Date:   Fri Jan 19 03:00:43 2024 +0300

    🌐 Update Turkish language (MarlinFirmware#26676)

commit cef623b
Author: engrenage <32837871+petaflot@users.noreply.github.com>
Date:   Fri Jan 19 00:57:46 2024 +0100

    🔧 Clarify M600 sanity-check (MarlinFirmware#26702)

commit 12434e7
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Thu Jan 18 18:55:37 2024 -0500

    🔨 Improve CMakeLists.txt (MarlinFirmware#26700)

commit 2200607
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 17 06:06:41 2024 +0000

    [cron] Bump distribution date (2024-01-17)

commit c313811
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 16 23:15:04 2024 -0600

    ✨ Minor Orca update

    Followup to MarlinFirmware#26534

commit 76dce41
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 16 06:06:41 2024 +0000

    [cron] Bump distribution date (2024-01-16)

commit 1f1ca34
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 15 22:22:08 2024 -0600

    🧑‍💻 Tweak limit_and_warn

commit 8d4ab15
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 15 21:36:15 2024 -0600

    🧑‍💻 Tweak planner debug

commit 7455776
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 15 00:22:58 2024 +0000

    [cron] Bump distribution date (2024-01-15)

commit 3019af1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 13 18:30:43 2024 -0600

    🔨 Make / pins-format patches

commit 8916e6f
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 14 00:24:03 2024 +0000

    [cron] Bump distribution date (2024-01-14)

commit b2fd631
Author: Robherc <68039049+robherc@users.noreply.github.com>
Date:   Fri Jan 12 23:03:34 2024 -0500

    🔧 Fix SD connection defaults (MarlinFirmware#26666)

    Co-authored-by: thisiskeithb <13375512+thisiskeithb@users.noreply.github.com>
    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit cadef64
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 13 00:21:34 2024 +0000

    [cron] Bump distribution date (2024-01-13)

commit ab34971
Author: ThomasToka <117008525+ThomasToka@users.noreply.github.com>
Date:   Fri Jan 12 06:56:45 2024 +0100

    🐛 Fix PLR pos/sdpos (MarlinFirmware#26365)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 46f370a
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 12 00:21:50 2024 +0000

    [cron] Bump distribution date (2024-01-12)

commit 0f43ac7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 10 18:25:17 2024 -0600

    ⏪️ Revert encoder changes

    Reverts MarlinFirmware#26501

commit ef92b6c
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 11 00:21:50 2024 +0000

    [cron] Bump distribution date (2024-01-11)

commit f44f9eb
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 10 14:49:28 2024 -0600

    🎨 Misc. style adjustments

commit 854f331
Author: plampix <plampix@users.noreply.github.com>
Date:   Wed Jan 10 07:33:54 2024 +0100

    ✨ EDITABLE_STEPS_PER_UNIT (MarlinFirmware#26618)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 1d46e67
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Wed Jan 10 07:13:10 2024 +0200

    ✨ PLR_BED_THRESHOLD (MarlinFirmware#26649)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 85ded0b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 9 22:41:54 2024 -0600

    🩹 Clarify servo µs min/max

commit cb291e8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 9 22:41:00 2024 -0600

    🩹 Fix some temp constraints

commit 25caae1
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Jan 10 15:55:20 2024 +1300

    🩹 Fix PID / MPC tune background tasks (MarlinFirmware#26652)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 12d7995
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 9 18:45:17 2024 -0600

    🎨 Minor temp / UI refactor

commit 320b7a9
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 10 00:21:58 2024 +0000

    [cron] Bump distribution date (2024-01-10)

commit a533e9e
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Tue Jan 9 23:42:08 2024 +0200

    🩹 Fix edit Z jerk step size (MarlinFirmware#26650)

    Followup to MarlinFirmware#25514

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit f6ecdae
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Jan 10 10:19:47 2024 +1300

    🔧 Base NUM_SERVO_PLUGS on SERVO PINS (MarlinFirmware#26640)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 477b70e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 9 00:22:16 2024 +0000

    [cron] Bump distribution date (2024-01-09)

commit b2dd2dc
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Mon Jan 8 05:26:34 2024 +0100

    🚸 FT Motion M493 report less precision (MarlinFirmware#26643)

commit b106f59
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Mon Jan 8 05:17:43 2024 +0100

    🐛 Refine FT Motion, I2S Stepping (MarlinFirmware#26628)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 38f483c
Author: mikemerryguy <57319047+mikemerryguy@users.noreply.github.com>
Date:   Sun Jan 7 23:14:24 2024 -0500

    🩹 Skip post-G28 XY move for untrusted X or Y (MarlinFirmware#26644)

    Followup to MarlinFirmware#26469

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit f4eafed
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 7 21:59:25 2024 -0600

    🔧 Z_PROBE_END_SCRIPT => EVENT_GCODE_AFTER_G29

commit 5987a54
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 7 19:34:34 2024 -0600

    🎨 Use float CEIL/FLOOR

commit 3a888e9
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 8 00:30:52 2024 +0000

    [cron] Bump distribution date (2024-01-08)

commit 4cddc61
Author: Alexander Gavrilenko <jmz52@users.noreply.github.com>
Date:   Mon Jan 8 03:18:18 2024 +0300

    🐛 Fix SPI TFT for STM32F1/F4 (MarlinFirmware#26052)

commit 2a8c00b
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 6 00:21:22 2024 +0000

    [cron] Bump distribution date (2024-01-06)

commit 4ae2a76
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 5 12:34:50 2024 -0600

    🎨 Clean up ws

commit a5d097a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 4 18:50:23 2024 -0600

    ✏️ Fix CTC_A10S_A13 typo

    Followup to MarlinFirmware#26514

commit 5e0a8d2
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 5 00:21:26 2024 +0000

    [cron] Bump distribution date (2024-01-05)

commit 994aa9f
Author: plampix <plampix@users.noreply.github.com>
Date:   Fri Jan 5 00:09:53 2024 +0100

    ⚡️ Slimmer null T command (MarlinFirmware#26615)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 6e67ad5
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Thu Jan 4 18:07:53 2024 -0500

    🎨 Followup to optional M111/M115 (MarlinFirmware#26626)

    Followup to MarlinFirmware#26603

commit 52693f7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 4 13:01:45 2024 -0600

    🎨 Clean up some checks & includes

commit 991f433
Author: Jason Smith <jason.inet@gmail.com>
Date:   Wed Jan 3 19:14:17 2024 -0800

    🐛 Fix hangs in DUE native USB (MarlinFirmware#26572)

commit 54b7da1
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Wed Jan 3 21:45:50 2024 -0500

    🩹 Fix Bed PID Autotune output (MarlinFirmware#26606)

    Followup to MarlinFirmware#25928

commit f8771e9
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 4 00:21:47 2024 +0000

    [cron] Bump distribution date (2024-01-04)

commit be1dee7
Author: Orel <37673727+0r31@users.noreply.github.com>
Date:   Wed Jan 3 21:02:20 2024 +0100

    🎨 Clean up old #includes (MarlinFirmware#26621)

commit 68b7802
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Wed Jan 3 20:19:19 2024 +0100

    📝 Update M493 (FT_MOTION) comments (MarlinFirmware#26620)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 6d40776
Author: plampix <plampix@users.noreply.github.com>
Date:   Wed Jan 3 16:43:18 2024 +0100

    🔧 CONFIGURE_FILAMENT_CHANGE - Optional M603 (MarlinFirmware#26613)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 4a9e102
Author: I3DBeeTech <129617321+I3DBeeTech@users.noreply.github.com>
Date:   Wed Jan 3 06:23:41 2024 +0530

    📺 I3DBEE TECH Beez Mini 12864 (MarlinFirmware#26596)

commit 1ac6428
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Jan 3 13:52:12 2024 +1300

    🔪 Options to slim M111, remove M115 (MarlinFirmware#26603)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 7c159a2
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 3 00:21:14 2024 +0000

    [cron] Bump distribution date (2024-01-03)

commit 5b74e25
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Jan 2 20:25:26 2024 +1300

    🔨 BSD string workaround (MarlinFirmware#26532)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit f02fa63
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 2 00:21:06 2024 +0000

    [cron] Bump distribution date (2024-01-02)

commit 3b6f1bf
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 1 00:50:46 2024 -0600

    🧑‍💻 Update pinsformat

commit 1d61571
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 31 03:30:53 2023 -0600

    🧑‍💻 Python version of pins formatting script

commit 99c5702
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 1 00:24:20 2024 +0000

    [cron] Bump distribution date (2024-01-01)

commit 13e82fa
Author: nagubash <40751501+nagendras176@users.noreply.github.com>
Date:   Mon Jan 1 02:33:04 2024 +0530

    🔨 Fix formatting issue in Makefile (MarlinFirmware#26599)

commit 95878df
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Sun Dec 31 22:00:57 2023 +0100

    🐛 Fix homing with FT_MOTION (MarlinFirmware#26595)

commit 5d1ede0
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Dec 31 22:54:26 2023 +1300

    ✨ CTC_A10S_A13 (MarlinFirmware#26514)
luizbgomide added a commit to luizbgomide/Marlin that referenced this pull request Feb 14, 2024
commit 9e879a5b1f801e7572e7948be38a6dad16ad35d8
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Feb 11 00:22:45 2024 +0000

    [cron] Bump distribution date (2024-02-11)

commit 9974327d333c3db443a7627b476f02c91a1ace0e
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Feb 11 03:28:37 2024 +1300

    extend uart checks

commit 4eba643ae1fe90f8aa2831a359efafbd78933fbe
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Feb 10 06:17:34 2024 +0000

    [cron] Bump distribution date (2024-02-10)

commit 8d7be79108ecb481761527516782830890a28de7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Feb 9 19:11:56 2024 -0600

    👷 Improve BIGTREE_GTR_V1_0 tests

commit 76b568830475d218a5229ff9736a155c5a0cb620
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Feb 9 19:11:37 2024 -0600

    🚸 Optional encoder multipliers

commit 1e8fbb7bbb8611194c9d7242a860b153412694c5
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Feb 9 00:20:11 2024 +0000

    [cron] Bump distribution date (2024-02-09)

commit 20c6a6233bc3d749335d3f761c61131355a6e534
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Feb 8 16:49:13 2024 -0600

    🧑‍💻 HC32 endstop interrupts for X2/Y2/Z4

commit 1d295f7983a90be9eddc830bc7be621c6dcb14c7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 7 23:44:55 2024 -0600

    🔥 Clean up SCARA/TPARA

commit 669814d0d408a622f020a55971ba04030e4fa4bf
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 7 23:40:54 2024 -0600

    ✨ MARLIN_SMALL_BUILD option (#26775)

commit 4aa48beb378fec6a6e7de0c8c3c7fe47f6551c24
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 7 18:25:13 2024 -0600

    🚸 Adjust encoder multiplier

commit 371fb5a256d968712d6180bf6faf9090c75246e4
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Feb 8 00:20:32 2024 +0000

    [cron] Bump distribution date (2024-02-08)

commit 0829a511f03d75121f2a8aa557fc0b45f5f2069c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 7 18:09:36 2024 -0600

    🧑‍💻 "static_warning"

commit a3c78c45101fd13066eae944ba4dcdfcec3e57f4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 7 14:00:29 2024 -0600

    🎨 Delete old FTDI Eve bootscreen

commit a3211253a05f6f0380fa3bee8eb32b2f02c7bd3a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 7 13:58:01 2024 -0600

    🩹 Fix FTDI Eve Touch UI M84

commit 2c8e7bd5a58c338bad5111891497e8cb35f2fed6
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 7 12:07:15 2024 +0000

    [cron] Bump distribution date (2024-02-07)

commit 005d6879d998ccd900d1a311185f7069541dc623
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Feb 7 19:33:54 2024 +1300

    🔧 Restore probe XY edit defaults, remove arbitrary Z limit (#26774)

commit 3dd22349a9c9daa7039e86c9a617efe063283beb
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Feb 6 06:06:16 2024 +0000

    [cron] Bump distribution date (2024-02-06)

commit e61a84a717cc80d4583278fdbdeff72becf3d9b5
Author: Scott Mikutsky <smikutsky@gmail.com>
Date:   Tue Feb 6 00:37:29 2024 -0500

    🚸 Keep Filament Change near the top (#26172)

commit d8e73d30362e17523bd50133344f7782fdf1be5e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Feb 5 00:21:40 2024 +0000

    [cron] Bump distribution date (2024-02-05)

commit b12340b1d57288945633ad926136ab2c27d25c12
Author: Robherc <68039049+robherc@users.noreply.github.com>
Date:   Sun Feb 4 17:10:11 2024 -0500

    🔧 Fix extraneous DIAG warnings (#26694)

commit ec46a5953956a5e7f3d213439a1fd2bea793860e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Feb 4 16:06:43 2024 -0600

    🧑‍💻 Fix uncrustify config

commit 5003681414eac2f2953ff4430148d23d80036d62
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Feb 4 10:14:49 2024 -0800

    🩹 Fix HOTEND_IDLE_TIMEOUT with no heated bed (#26746)

commit d9396929aab56121698d4acde1b04add1574f43d
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Feb 4 10:13:03 2024 -0800

    🩹 Update BTT GTR v1.0 DIAG jumper/pin (#26764)

commit 1dee4d92c61b14458cd394d1f609f0dc80282092
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Feb 4 12:09:08 2024 -0600

    🔧 TOUCH_IDLE_SLEEP_MINS => DISPLAY_SLEEP_MINUTES

    Follow up to #26517

commit 9364cbb4b53a5ef77cf2b843ba228afffb4c1725
Author: Smokey Pell <brentpell81@gmail.com>
Date:   Sun Feb 4 09:37:32 2024 -0600

    🚸 Tronxy V10 w/ TFT_TRONXY_X5SA + MKS_ROBIN_TFT43 (#26747)

commit 755b661c2d9e3beb2ba6b7602715d43891ecff3a
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Sun Feb 4 10:03:08 2024 -0500

    🔧 Fix USE_Z_MIN conditions (#26762)

commit 7f4792e47c909cef2b46a11a0a8a80cf6858b80d
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Feb 4 00:22:42 2024 +0000

    [cron] Bump distribution date (2024-02-04)

commit e6837b2b8dd70e5a282fff1508e01215ff85c14d
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Feb 3 15:19:19 2024 -0800

    🩹 Fix STM32 HW Serial 6 (#26763)

    Followup to #26328

commit 9e21330d7ae8b4979fee10099294e9e61c939613
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Feb 3 00:20:49 2024 +0000

    [cron] Bump distribution date (2024-02-03)

commit c476e62a6f32bc4d197dc31a8587d53376505f4a
Author: Davide Rombolà <davide.rombola@gmail.com>
Date:   Fri Feb 2 02:31:39 2024 +0100

    🩹 Fix STM32 HW Serial (#26531)

    Followup to #26328

commit 4c5d7831c11c859e5e378d1ff588cb8fe20eb58a
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Feb 2 00:20:22 2024 +0000

    [cron] Bump distribution date (2024-02-02)

commit 9a5cfb3f26315822c7ae8ea043525c0e30ac08ac
Author: Abdullah YILMAZ <h.abdullahyilmaz@hotmail.com>
Date:   Thu Feb 1 05:11:08 2024 +0300

    🌐 Turkish language update (#26739)

commit 5a87bea7622207b78503cc171a0544ee6bd9d6a2
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Wed Jan 31 20:24:08 2024 -0500

    🚸 Fix repeating "Power Off" message (#26755)

commit d62f45bdc17f36ceb6105345df9ce2946369da10
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Feb 1 00:21:39 2024 +0000

    [cron] Bump distribution date (2024-02-01)

commit f9d5ee04b4930fa7b876c278e80072060463f55c
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Feb 1 07:33:42 2024 +1300

    🩹 Patch STM32 serial UUID (#26737)

    Followup to #26715

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit ef04680cc556fb5aa8637fb767f7ce11be30ca2a
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 31 06:06:35 2024 +0000

    [cron] Bump distribution date (2024-01-31)

commit 1c6cfc3ffeac8fdf2cd6d61529ad864578a4803f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Jan 30 21:00:02 2024 -0800

    🐛 Fix I/J/K chopper timing (#26736)

    Followup to #19112

commit 0266e7fe535cbdd2a10850fd0fd71f1ae2617db2
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Jan 30 20:58:06 2024 -0800

    📝 Biqu => BIQU (#26735)

commit 610ea0a9d30f1bc566eacda7ceab7976e228957d
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Jan 31 17:56:46 2024 +1300

    🔨 No strlcpy in Windows (#26748)

commit 70d942a18483e28d7306c0edd4280ff354cf4350
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 30 06:06:23 2024 +0000

    [cron] Bump distribution date (2024-01-30)

commit 5639237e2b174715413f9ffc6f6421db9150d9d6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 29 20:38:03 2024 -0600

    🎨 Misc. cleanup 29-01

commit 541bd26cd7d0d31d1f81298fb5ddc2d43f9c4c03
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 29 00:21:02 2024 +0000

    [cron] Bump distribution date (2024-01-29)

commit 7a4d601f4d8b88acffe62b31d614773ad0f20a57
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Jan 28 14:13:23 2024 -0800

    🩹 Temp constraints followup (#26744)

    Followup to cb291e8d

commit bf8675b44a43c82a1ee8595fa3f7a1f1e5dca61e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 28 00:22:35 2024 +0000

    [cron] Bump distribution date (2024-01-28)

commit ebea672240ba49067194e9a6959ba2604da2d4c2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 27 11:45:54 2024 -0600

    🐛 Protect EEPROM bytes 916-926

    Followup to #26729

    Ender-3S1 STM32F401 Bootloader

commit ce8535f01ca4b85ca1f7cae3908d3174ac11fff6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 26 15:18:38 2024 -0600

    🧑‍💻 Fix warning, adjust tests

commit 0ba4cd2b3bcf404fcd533e4a87992e86f3366c7f
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 27 00:19:36 2024 +0000

    [cron] Bump distribution date (2024-01-27)

commit afc2dd6cab2c50ddca1506350a8845b82a4ffce7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 25 22:09:06 2024 -0600

    🎨 Misc. cleanup 25-01

commit 5768b42c398c232a3f891093e87d18de0331f2f1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 25 22:06:09 2024 -0600

    Add Conditionals_type.h

commit ee8630c28270bf3281f798660d43c6e88d2b8eb4
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 26 00:42:39 2024 +0000

    [cron] Bump distribution date (2024-01-26)

commit 01094ea6aa7b843f830ec350e5886fcab6b652ff
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Thu Jan 25 19:18:49 2024 -0500

    ✨🔨 EEPROM exclusion zone (#26729)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 6c1fd1f69c349b24ded49d7c5a1118fe7a5e37dd
Author: qwertymodo <qwertymodo@qwertymodo.com>
Date:   Thu Jan 25 16:16:32 2024 -0800

    🩹 Fix single Neo strip M150 K (#26709)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 4f65466161c39bee82a8fa98263989a01b706927
Author: sargonphin <85966195+sargonphin@users.noreply.github.com>
Date:   Fri Jan 26 00:48:06 2024 +0100

    🔧 HYBRID_THRESHOLD sanity checks (#26681)

commit 9b3119393f0c7fe3eb08734e097df09c7466acc3
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Jan 26 12:39:09 2024 +1300

    🩹 Followup to EDITABLE_STEPS_PER_UNIT (#26677)

    Followup to #26618

commit 8594e9462ca429cbaccd2b3d0e2eb15684bd27ae
Author: ejhoness <72996067+ejhoness@users.noreply.github.com>
Date:   Thu Jan 25 20:37:35 2024 -0300

    ✏️ Fix draw_dialog.cpp typo (#26684)

commit 16acb57b22747b495953ecef065ba625f4dc3df8
Author: Cesar Guillermo Montiel <cesarweb@hotmail.com>
Date:   Thu Jan 25 20:12:49 2024 -0300

    ✨ Creality v2.4.S4_170 (Ender 2 Pro, HC32F460KCTA) (#26730)

commit 04c8a3138e3ce1edcd59c8e6c1ba4abeba28e30d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 25 15:07:34 2024 -0600

    🎨 Misc. LCD pins comments

commit 38560378fcb99bcdb4b889f3b8e08c7dc5abe366
Author: engrenage <32837871+petaflot@users.noreply.github.com>
Date:   Thu Jan 25 21:24:57 2024 +0100

    🔧 Allow float Z_PROBE_LOW_POINT (#26711)

commit ffbf4a6a9002827daf09a5f36bd28fdf3d61a0e8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 25 13:41:39 2024 -0600

    🩹 Fix IA Creality IDEX case

commit a215bc2ca3b27afb5de7fbf69d9b19da5ac7466e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 25 00:28:09 2024 +0000

    [cron] Bump distribution date (2024-01-25)

commit cbc674ff997b3bffc92cbb2f61a9a5c8952c3446
Author: minding-myown-business <jyoung12345.accounts@skiff.com>
Date:   Thu Jan 25 00:24:25 2024 +0000

    📝 Fix dead LCD link (#26669)

commit 97546bf55b20f10fa8952efbd232481e11e9f916
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Jan 25 09:33:02 2024 +1300

    🚸 PLR recover chamber temp (#26696)

commit ed1391ee5d5c272240b8fe18716c340d7688cb8e
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Wed Jan 24 22:21:00 2024 +0200

    🔧 Wrap POWER_LOSS_RETRACT_LEN (#26695)

commit 7fbd9ec5f4c450e062663dbe1964dc95e705733b
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jan 24 10:55:59 2024 -0800

    🔧 Allow RAMPS FAN1_PIN override (#26725)

commit 63989023b8f179ee67dea44b008ea03e314482e6
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jan 24 10:54:37 2024 -0800

    🔧 Update SKR_MINI_SCREEN_ADAPTER error (#26726)

commit e668d5afd75039fbbbc9a3a8c8357c74c399ccb7
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Jan 25 07:50:48 2024 +1300

    🔧 STM32 UID followup (#26727)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit a2228276bbc3908faa8ad3fe021b8961d0c11ec6
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 24 00:22:20 2024 +0000

    [cron] Bump distribution date (2024-01-24)

commit 3ef192e7c7b18804ec7e3964a1366bd08355dc93
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 23 16:05:41 2024 -0600

    🎨 Cosmetic cleanup 23-01

commit 5fea79fd07e5d874fbd217d8d9e8afceec60ef9e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 23 16:02:33 2024 -0600

    🔧 Fix ROTATIONAL_AXIS_GANG

    Co-Authored-By: DerAndere <26200979+DerAndere1@users.noreply.github.com>

commit 18e65f5eb4a1dc4b08d4bece67f2c182e8359ff6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 23 15:55:13 2024 -0600

    🩹 Fix _U and other conflicts

    Fix #26220

commit 5ed6bf65ba32e97b8cad133730a602fc67cda4f9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 23 15:44:51 2024 -0600

    🔧 Allow for no STOP pin

    Co-Authored-By: DerAndere <26200979+DerAndere1@users.noreply.github.com>

commit d79bcef802de4c0b55e6ea74bab5faee663a752a
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Tue Jan 23 21:09:31 2024 +0100

    🔧 Sanity check Z_CLEARANCE_FOR_HOMING (#26721)

commit f1a53407e7c99559f9073f11ab91e7b305ec7770
Author: Anson Liu <ansonl@users.noreply.github.com>
Date:   Tue Jan 23 08:24:49 2024 -0800

    🚸 DOGM active extruder indicator (#26152)

commit 4309e6ab76528a8e64343148d81caa2d231c8c13
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 22 23:31:04 2024 -0600

    🧑‍💻 Fix build_all_examples

commit 0c3d1cf566c43d28bd99487c1352a7c019eecf32
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 23 00:50:39 2024 +0000

    [cron] Bump distribution date (2024-01-23)

commit aa7d5714867df05348ca63ad113ea9cf7ccc3271
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 22 17:32:01 2024 -0600

    ♻️ LCD pins migration precursor (#26719)

    Preliminary changes for #25650

commit 604d3e8fadc1fd3603409f0d22d8a49de6f46cc2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 22 16:38:08 2024 -0600

    🎨 Move EXIT_M303

commit 22fc07d72ba08df8db9545da4286ccd2558ecf30
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 2 15:03:02 2023 -0500

    🧑‍💻 ExtUI::onPlayTone optional duration

commit dd3b5a10a09e2a83918af1cf6f8782fd0c473f98
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 21 22:00:37 2024 -0600

    Misc. aesthetic adjustments

    Co-Authored-By: Andrew <18502096+classicrocker883@users.noreply.github.com>

commit 416f94f03a40e907c2c0bbe3e187c79d4d8754b3
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 22 00:23:03 2024 +0000

    [cron] Bump distribution date (2024-01-22)

commit 204de723f1c08f83e281f0629b60822b334097ed
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Jan 21 04:01:25 2024 -0800

    ✨ BIQU MicroProbe (#26527)

commit 80cd89d8f7f656be4e190c2c97064966905ce8a9
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Sun Jan 21 13:11:03 2024 +0200

    🩹 Fix M592 report (#26680)

commit 624226c91d23941ac8fe2bd8c3a20bb364e6393a
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Jan 22 00:09:36 2024 +1300

    🩹 Fix STM32 CPU serial UUID (#26715)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 3adf73a2cd45556859a6499bf2ed27509e49f0ff
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Jan 20 21:47:26 2024 -0800

    🔥 Remove ALLOW_LOW_EJERK (#26712)

commit eb7b207e4c63e17c2e63e89c30a1e1ea7c04cfa3
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 21 00:24:10 2024 +0000

    [cron] Bump distribution date (2024-01-21)

commit d7e45367afaf6a6007b6a89ff7eeefe5fa0c59ff
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Jan 20 19:24:30 2024 +1300

    🔨 Fix POLAR build (#26687)

commit 388c7018c44036ee75af9dac39f2f0b386bf7089
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 20 00:21:13 2024 +0000

    [cron] Bump distribution date (2024-01-20)

commit da96607b65ecc910178413d6979c128add9d098e
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Sat Jan 20 00:38:25 2024 +0200

    🔧 Adjust DEFAULT_EJERK settings (#26665)

commit fb49645b3233caa2701ebdab1e5322d73d3545a0
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Jan 20 08:49:35 2024 +1300

    📝 Fix Anet pins typo (#26660)

commit 7d751a20b1fc6ef920cbc56a68450302ac1eb973
Author: German Borisov <Borisov.German@gmail.com>
Date:   Fri Jan 19 22:17:36 2024 +0300

    ✨ Status Screen flow adjustment (#26627)

commit 9f7d5bbc86032a646f14eb6ca246723118ae9fb0
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 19 00:22:09 2024 +0000

    [cron] Bump distribution date (2024-01-19)

commit 0df25b100854008907a68393eaa6027941917a48
Author: Abdullah YILMAZ <h.abdullahyilmaz@hotmail.com>
Date:   Fri Jan 19 03:00:43 2024 +0300

    🌐 Update Turkish language (#26676)

commit cef623b7d2a5e1c49911ce539b3e031d5e307ad6
Author: engrenage <32837871+petaflot@users.noreply.github.com>
Date:   Fri Jan 19 00:57:46 2024 +0100

    🔧 Clarify M600 sanity-check (#26702)

commit 12434e78e4478b8d098793a382db109e54cee0e8
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Thu Jan 18 18:55:37 2024 -0500

    🔨 Improve CMakeLists.txt (#26700)

commit 220060798930227fea158a81b5f83e241b7630ff
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 17 06:06:41 2024 +0000

    [cron] Bump distribution date (2024-01-17)

commit c31381183b0daeb4361249bb20b74b7b2e0940f1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 16 23:15:04 2024 -0600

    ✨ Minor Orca update

    Followup to #26534

commit 76dce41580e5fbe527e2b8939f358a624b3c0e04
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 16 06:06:41 2024 +0000

    [cron] Bump distribution date (2024-01-16)

commit 1f1ca34ea6c37d8d22808f3fb25992776abfe4f2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 15 22:22:08 2024 -0600

    🧑‍💻 Tweak limit_and_warn

commit 8d4ab15748eb9c6bcbc1dd30c1b8f51d2cc94dc5
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 15 21:36:15 2024 -0600

    🧑‍💻 Tweak planner debug

commit 745577693d1dd27d209aa547ca1745d6ca6ecc1b
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 15 00:22:58 2024 +0000

    [cron] Bump distribution date (2024-01-15)

commit 3019af1c9398da0172b5d5f5bb0d3a5506e56e4d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 13 18:30:43 2024 -0600

    🔨 Make / pins-format patches

commit 8916e6f826aa86b4b0a2b08c72d0128fce8c28c4
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 14 00:24:03 2024 +0000

    [cron] Bump distribution date (2024-01-14)

commit b2fd631d82b9b3e64226ceac6a132ec917aaee21
Author: Robherc <68039049+robherc@users.noreply.github.com>
Date:   Fri Jan 12 23:03:34 2024 -0500

    🔧 Fix SD connection defaults (#26666)

    Co-authored-by: thisiskeithb <13375512+thisiskeithb@users.noreply.github.com>
    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit cadef644180ecb049826159612853411e111c4f0
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 13 00:21:34 2024 +0000

    [cron] Bump distribution date (2024-01-13)

commit ab3497161a37ae309e030a23e0f8e3f3eb61daea
Author: ThomasToka <117008525+ThomasToka@users.noreply.github.com>
Date:   Fri Jan 12 06:56:45 2024 +0100

    🐛 Fix PLR pos/sdpos (#26365)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 46f370ae3cc1501bd831c495b46ab0e571e99f10
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 12 00:21:50 2024 +0000

    [cron] Bump distribution date (2024-01-12)

commit 0f43ac79f610df25d865667e41baef707aaf40da
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 10 18:25:17 2024 -0600

    ⏪️ Revert encoder changes

    Reverts #26501

commit ef92b6c369fdf6ea99d7c79a663c7f6b308e31ec
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 11 00:21:50 2024 +0000

    [cron] Bump distribution date (2024-01-11)

commit f44f9eb9f831e007156e310de09ab3ba03100cf0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 10 14:49:28 2024 -0600

    🎨 Misc. style adjustments

commit 854f3315af645775e7b0aa39bd05db66187bcc38
Author: plampix <plampix@users.noreply.github.com>
Date:   Wed Jan 10 07:33:54 2024 +0100

    ✨ EDITABLE_STEPS_PER_UNIT (#26618)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 1d46e67de202ae436958c344506f14d2da975076
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Wed Jan 10 07:13:10 2024 +0200

    ✨ PLR_BED_THRESHOLD (#26649)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 85ded0b9bd9550a4b2a7e0326de7e098dd465a70
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 9 22:41:54 2024 -0600

    🩹 Clarify servo µs min/max

commit cb291e8d00a6c1ee0a778625e0170b6b7430a004
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 9 22:41:00 2024 -0600

    🩹 Fix some temp constraints

commit 25caae1e8c238422cb8ee00637d463ae837c5273
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Jan 10 15:55:20 2024 +1300

    🩹 Fix PID / MPC tune background tasks (#26652)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 12d7995a18d3ce59c871e11c4940bbaeb9c352fc
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 9 18:45:17 2024 -0600

    🎨 Minor temp / UI refactor

commit 320b7a9ac33e908860191b27626753e76f103f21
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 10 00:21:58 2024 +0000

    [cron] Bump distribution date (2024-01-10)

commit a533e9e637cb3c7e1c86513bdce9a7802f921d44
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Tue Jan 9 23:42:08 2024 +0200

    🩹 Fix edit Z jerk step size (#26650)

    Followup to #25514

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit f6ecdae972c1e54f52daec5c63252281962da5b9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Jan 10 10:19:47 2024 +1300

    🔧 Base NUM_SERVO_PLUGS on SERVO PINS (#26640)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 477b70eccf3210dc2fff2e84555830320bea9655
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 9 00:22:16 2024 +0000

    [cron] Bump distribution date (2024-01-09)

commit b2dd2dc217af35011bcded3f8603c954f5fed95a
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Mon Jan 8 05:26:34 2024 +0100

    🚸 FT Motion M493 report less precision (#26643)

commit b106f59eb495718d7158e27347eca5deb11fbe86
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Mon Jan 8 05:17:43 2024 +0100

    🐛 Refine FT Motion, I2S Stepping (#26628)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 38f483c4a6a0b6c814e5ee88747f58eed17fa61e
Author: mikemerryguy <57319047+mikemerryguy@users.noreply.github.com>
Date:   Sun Jan 7 23:14:24 2024 -0500

    🩹 Skip post-G28 XY move for untrusted X or Y (#26644)

    Followup to #26469

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit f4eafed188189d2a77c53a2a68bd931ee838b584
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 7 21:59:25 2024 -0600

    🔧 Z_PROBE_END_SCRIPT => EVENT_GCODE_AFTER_G29

commit 5987a5464bc8622d77ab52990b88d5ae035074e1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 7 19:34:34 2024 -0600

    🎨 Use float CEIL/FLOOR

commit 3a888e956b081a9cde1f496b6c24fa39b5061f39
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 8 00:30:52 2024 +0000

    [cron] Bump distribution date (2024-01-08)

commit 4cddc61eda70d9e78ef7767fc052995855e34a79
Author: Alexander Gavrilenko <jmz52@users.noreply.github.com>
Date:   Mon Jan 8 03:18:18 2024 +0300

    🐛 Fix SPI TFT for STM32F1/F4 (#26052)

commit 2a8c00bdeb5268b11a3bbddfc8797a3f09a92947
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 6 00:21:22 2024 +0000

    [cron] Bump distribution date (2024-01-06)

commit 4ae2a76492b176c831647e29cc6150e7d8c0605a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 5 12:34:50 2024 -0600

    🎨 Clean up ws

commit a5d097abe6e8cbad3dead9086439b3c0f44c7cb2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 4 18:50:23 2024 -0600

    ✏️ Fix CTC_A10S_A13 typo

    Followup to #26514

commit 5e0a8d21245d21eafdc55e77645cb20eef750017
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 5 00:21:26 2024 +0000

    [cron] Bump distribution date (2024-01-05)

commit 994aa9f6923e2307d13badd26a15e6d57525955f
Author: plampix <plampix@users.noreply.github.com>
Date:   Fri Jan 5 00:09:53 2024 +0100

    ⚡️ Slimmer null T command (#26615)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 6e67ad51b70ce4f02be967bb14e5557a021e48eb
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Thu Jan 4 18:07:53 2024 -0500

    🎨 Followup to optional M111/M115 (#26626)

    Followup to #26603

commit 52693f72afca243ace00a7a57365301f5f8c42c0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 4 13:01:45 2024 -0600

    🎨 Clean up some checks & includes

commit 991f433ac1375cca0b8fcd76fcbacbe43b307ac3
Author: Jason Smith <jason.inet@gmail.com>
Date:   Wed Jan 3 19:14:17 2024 -0800

    🐛 Fix hangs in DUE native USB (#26572)

commit 54b7da18cbbbed49fee93f0f39b7093c527c25ea
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Wed Jan 3 21:45:50 2024 -0500

    🩹 Fix Bed PID Autotune output (#26606)

    Followup to #25928

commit f8771e9ad5d572f22ec89c199e81cd53106ffc5c
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 4 00:21:47 2024 +0000

    [cron] Bump distribution date (2024-01-04)

commit be1dee7caf8197f10811574265714e78ca08ec83
Author: Orel <37673727+0r31@users.noreply.github.com>
Date:   Wed Jan 3 21:02:20 2024 +0100

    🎨 Clean up old #includes (#26621)

commit 68b7802fc17cd4160fa3923897ab69dbea09f4ed
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Wed Jan 3 20:19:19 2024 +0100

    📝 Update M493 (FT_MOTION) comments (#26620)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 6d407767e7692d66bc93a0012d71268770e4835c
Author: plampix <plampix@users.noreply.github.com>
Date:   Wed Jan 3 16:43:18 2024 +0100

    🔧 CONFIGURE_FILAMENT_CHANGE - Optional M603 (#26613)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 4a9e102c2ef96b75378195ad3b89cb1646ac4df4
Author: I3DBeeTech <129617321+I3DBeeTech@users.noreply.github.com>
Date:   Wed Jan 3 06:23:41 2024 +0530

    📺 I3DBEE TECH Beez Mini 12864 (#26596)

commit 1ac6428c82aa72cc41c0c9f758659b71e7fce1cf
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Jan 3 13:52:12 2024 +1300

    🔪 Options to slim M111, remove M115 (#26603)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 7c159a20e538e42af5185c80c660c90c0377b909
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 3 00:21:14 2024 +0000

    [cron] Bump distribution date (2024-01-03)

commit 5b74e25108a47acad41d9a50560cd1fbae38040a
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Jan 2 20:25:26 2024 +1300

    🔨 BSD string workaround (#26532)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit f02fa6339f003a8a5074131b50e0905f102ee8e4
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 2 00:21:06 2024 +0000

    [cron] Bump distribution date (2024-01-02)

commit 3b6f1bff8b3fc31b1d82ea420b3b74a50f599692
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 1 00:50:46 2024 -0600

    🧑‍💻 Update pinsformat

commit 1d615717e80e4c39bfa49f34d9b8f3955d7f8d47
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 31 03:30:53 2023 -0600

    🧑‍💻 Python version of pins formatting script

commit 99c570212ddfd39a749b07419a3d3fb9213d7acd
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 1 00:24:20 2024 +0000

    [cron] Bump distribution date (2024-01-01)

commit 13e82fa44a842e2d2f3569fb62131b206442ec4a
Author: nagubash <40751501+nagendras176@users.noreply.github.com>
Date:   Mon Jan 1 02:33:04 2024 +0530

    🔨 Fix formatting issue in Makefile (#26599)

commit 95878df30d737fd08f337491f7e19332fe7ac5ac
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Sun Dec 31 22:00:57 2023 +0100

    🐛 Fix homing with FT_MOTION (#26595)

commit 5d1ede08aa8a045463d4d33333fd90abead2871e
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Dec 31 22:54:26 2023 +1300

    ✨ CTC_A10S_A13 (#26514)

commit 2203505182e95544cebfc0f1e5b87b6f19f0610a
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 31 00:23:28 2023 +0000

    [cron] Bump distribution date (2023-12-31)

commit 06dc7f4f526833aaab37725e2e95e68030acb94e
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Dec 31 00:18:42 2023 +1300

    🔧 Fix, extend FAN / AUTOFAN confict check (#26591)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit e6f1b074df409cab5c231954ad542e0ffcf20f31
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 30 05:01:48 2023 -0600

    🩹 Restore usleep for native / sim

commit f605c045e3198c1c21dda75e5913ef192fc58580
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 30 00:20:29 2023 +0000

    [cron] Bump distribution date (2023-12-30)

commit 2d97f082e5e8de2973857cc9f88bafcb4a20e1ea
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Dec 28 20:50:52 2023 -0800

    ✨ BigTreeTech Manta M8P V2.0 (STM32H723ZE) (#26578)

commit ba91fa09b7f16f788f441d6385d813cb64b5f508
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Fri Dec 29 05:41:34 2023 +0100

    ⚡️ Optimize FT_MOTION (#26557)

commit 1aeee2cd1f77c91b73daf1567f6ef94ab05fca3b
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Dec 28 18:10:45 2023 -0800

    🔧 TriGorilla Pro default to ONBOARD_SDIO (#26586)

commit 4e23e52a895ded5ce0e96f054c16714cb758a982
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 29 00:17:32 2023 +0000

    [cron] Bump distribution date (2023-12-29)

commit 88cf3cb1e0878ac09e988d2a873eb97f079e766a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Dec 28 16:07:52 2023 -0800

    📌 Specify U8glib-HAL@0.5.4 (#26582)

commit 59d26e463a19f657c425e8e52ccf2552d978df7f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Dec 28 15:38:19 2023 -0800

    🔨 Newer Platform & Toolchain for STM32G0 (#26585)

commit cc641d796de55b61ea6ad531203cd4f63aaf7553
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Dec 28 00:21:10 2023 +0000

    [cron] Bump distribution date (2023-12-28)

commit 9d324f7b1f58872cdac9068f0c53bff72f4012b3
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 27 15:16:58 2023 -0600

    🎨 Remove unused usleep

commit 654e7a84ff79e49bcf43c940b08d094482b7b2ba
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 27 15:16:21 2023 -0600

    🩹 Minor MKS UI fix

commit d903a5ef4363a1fb05d8e23381c9a62b9c0d6b42
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 27 01:27:43 2023 -0600

    ✨ Initial support for HC32 U8G LCD (#26568)

    Co-authored-by: Chris <52449218+shadow578@users.noreply.github.com>

commit 15f26b402123d087f62728e1f1763a2b96f8d21d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 27 01:25:51 2023 -0600

    🧑‍💻 AS_CHAR => C (#26569)

commit 10d80eb89438b403a37b907b2c4d5995ee3bd023
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Wed Dec 27 02:24:16 2023 -0500

    📝 Docs: Binary File Transfer (BFT) Protocol (#26570)

commit 858954baad45b0edb31429a2b50a5fff9c4067fe
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 27 00:13:26 2023 -0600

    🧑‍💻 Update Uncrustify config

commit 38406634107fe90c4be452858d17eed541129b09
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 27 00:28:24 2023 +0000

    [cron] Bump distribution date (2023-12-27)

commit bd36644d85bef0ff02f701203365ce16c5db3dc0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Dec 26 17:52:46 2023 -0600

    🧑‍💻 Move U8G defines to HALs

commit c485f513d70acc838b7a1554c955fdaf5ef3df7f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Dec 26 15:45:42 2023 -0800

    ✨ BigTreeTech Kraken V1.0 (STM32H723ZG) (#26565)

    Co-authored-by: bigtreetech <38851044+bigtreetech@users.noreply.github.com>

commit 06b9e400423c0e03ff1abac0c294661e44f5b93f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Dec 26 15:43:06 2023 -0800

    🧑‍💻 Use MAX31865 flag (#26574)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 76030239283577ba1baca705e07182bb34345b64
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Dec 25 20:58:38 2023 -0600

    🔨 Apply signature.py help

commit dbf81f40de4b47b2374c6f7f229e01b504e4eb7f
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Dec 26 00:20:41 2023 +0000

    [cron] Bump distribution date (2023-12-26)

commit bb557e5195a6177bc7386fce0176274aede60b64
Author: Dennis <16547088+soligen2010@users.noreply.github.com>
Date:   Sun Dec 24 22:40:20 2023 -0500

    🩹 Fix string buffer warning (#26550)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 89fdfcfaf9df44b0782d3ef900aa28531d777058
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Dec 24 19:37:20 2023 -0800

    🩹 Fix MARKFORGED_INVERSE typos (#26558)

    Followup to #26516

commit d9a388bab86381843691af939dd023c6d534cf50
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 24 21:31:54 2023 -0600

    🩹 Fix some serial chars

commit b44e68e2ab5be3804d67eb646ebd567c2ffaee84
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Dec 25 00:21:58 2023 +0000

    [cron] Bump distribution date (2023-12-25)

commit 0f0955492994f4a7f4649c22e0f3aa5cc71541d7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 24 14:53:09 2023 -0600

    🧑‍💻 DWIN icon updates, etc.

commit 18b0dbb5018dafbb298d043e15b0623c3f0f72b3
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Dec 25 07:07:00 2023 +1300

    🐛 Creality Free Runs fixups (#26562)

    Followup to #25636, #26533

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit fa8d2bd108725eb9b23468e3823e5936e03a4209
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 24 00:23:04 2023 +0000

    [cron] Bump distribution date (2023-12-24)

commit d1ebaba71d4256485f0e306b548f52d921718679
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 23 16:25:55 2023 -0600

    🔨 Remove signature.py debug

commit 71e0275a4c1c54b5083ac49b9a12e19e149f055e
Author: Skopus <71988971+skopusdotorg@users.noreply.github.com>
Date:   Sat Dec 23 13:54:19 2023 +0330

    ✨ Orca 3D Modular Controller (#26534)

commit 205b0a679e3ca7cbf7ca590279d1cd4ed0c284c1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 23 04:19:23 2023 -0600

    🎨 Whitespace in the rightplace

commit 3029a6b1aa4c436cdda352e2add5cd421beaf104
Author: Mihai <299015+mh-dm@users.noreply.github.com>
Date:   Sat Dec 23 09:45:37 2023 +0200

    🩹 Jerk correction for LIN_ADVANCE + CLASSIC_JERK (#26551)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 342048b1dfbf41e64bc39cf5c448cbb0bb238651
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 23 00:20:19 2023 +0000

    [cron] Bump distribution date (2023-12-23)

commit ec060f979f0c836610b7fc1b02eb166df2143f28
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 22 17:47:29 2023 -0600

    📝 Clean up variant labels

commit 56ac5d03ed0901b721d816a41126854a96b1d67f
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Fri Dec 22 13:57:06 2023 -0500

    🚸 Update ProUI Plot graph (#26539)

commit ec7ab5a277a0210e1349f9e8608c372e40fdb6e6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Dec 21 22:35:51 2023 -0600

    🔨 Build flag tweaks

commit 2c5468ce333cd4a8c6ddfde8d4ad66d8417f32bd
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Dec 21 22:34:19 2023 -0600

    🎨 Planner indent

commit dbdb2ecdf756e657322977911460f43e76a9962b
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 22 00:21:13 2023 +0000

    [cron] Bump distribution date (2023-12-22)

commit c18294d83cc891c47d5abe56a4842adbe6fbb1aa
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Dec 21 15:30:03 2023 -0600

    🔧 Optional FAN_INVERTING

commit 401ba6613b1f9079ebd392adc8b0692c1525ab4f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Dec 21 15:25:48 2023 -0600

    🔧 Up to 12 PWM fans

commit 19617b79dbf5aedc62d5124c28e687c92d8a7e09
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Dec 21 06:06:34 2023 +0000

    [cron] Bump distribution date (2023-12-21)

commit eeacf76cfd1e936c44f53e05efb05fbac946996a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 20 22:07:59 2023 -0600

    🔧 config.ini / JSON dump by @section (#26556)

commit 738584d342768311845bebf8bc45494db2418eb6
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 20 06:06:01 2023 +0000

    [cron] Bump distribution date (2023-12-20)

commit f69effd2eb595fce676a2af625b8626686b814fd
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Dec 19 20:57:26 2023 -0600

    🚸 Just "warn" on SD fail

commit 67d7562609986fae14d80036ad1e7a7f3aaa49d0
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Wed Dec 20 02:56:47 2023 +0100

    🐛⚡️ FT_MOTION improvements (#26074)

    Co-Authored-By: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 0ede16cd5ab75278e6b4a599ee451ba4bb5ac739
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Dec 18 00:22:22 2023 +0000

    [cron] Bump distribution date (2023-12-18)

commit 4a89ef6273c6b0fafd3132900863e5a1f332b579
Author: geijt <3473304+geijt@users.noreply.github.com>
Date:   Sun Dec 17 23:33:46 2023 +0100

    Fix Creality E3 "Free-runs" (#26533)

    Followup to #25636

commit 145ab7b1ec99f24d8e6a5e9857e1e4a08e459b7d
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 16 06:05:48 2023 +0000

    [cron] Bump distribution date (2023-12-16)

commit 3f9c2f89fc61819331ec332eff1df939f47d82b5
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 15 23:40:26 2023 -0600

    🔧 Fix IDEX home check

    Followup to #25780

commit 00298e6681bfdc6231eeb5624dda1eebbd7fe075
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 15 20:23:59 2023 -0600

    🔧 Update fan 0 conflict check

    Followup to #25568

commit 68ab7f6bb7d93ed24054b033334c5821ea4e4cbf
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 15 00:21:58 2023 +0000

    [cron] Bump distribution date (2023-12-15)

commit 7ab63cde62e35aa80f1c6fd65f35cb0bdc200b1d
Author: Bob Kuhn <bob.kuhn@att.net>
Date:   Thu Dec 14 17:37:40 2023 -0600

    ✨ Creality E3 Free-runs Silent Motherboard (#25636)

commit b90133813a96ce839e17da039b2679601ee59afc
Author: Mihai <299015+mh-dm@users.noreply.github.com>
Date:   Thu Dec 14 22:16:15 2023 +0200

    🐛 Fix planner jerk limits (#26529)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 75da3555ee0910f3d572f4b8176afecdc941524b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Dec 14 10:03:11 2023 -0600

    🔧 Update CLASSIC_JERK conditionals

commit 8bce9dec906d59c3091e870d614f834c73aaeb89
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Dec 14 00:21:11 2023 +0000

    [cron] Bump distribution date (2023-12-14)

commit fef74398e41a1b492792837941af55057eb694f5
Author: jesterhead82 <mclauss82@gmail.com>
Date:   Wed Dec 13 08:44:11 2023 +0100

    ✨ MARKFORGED_INVERSE (#26516)

commit 775c6bb20ef1bc09632baaf4359efeea6e441451
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 13 06:12:17 2023 +0000

    [cron] Bump distribution date (2023-12-13)

commit 06710e54de8c83af77a4f57d458f6463fbfcad93
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Wed Dec 13 00:33:03 2023 -0500

    ✨ EDITABLE_DISPLAY_TIMEOUT (#26517)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 81cfa2388236820f4ed498ede01fde502a0fdca0
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Dec 12 06:09:34 2023 +0000

    [cron] Bump distribution date (2023-12-12)

commit f3fd9e28f5d6fae59c55742a2e70e2d6a3330aeb
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Dec 12 14:30:28 2023 +1300

    🐛 Fix MKS TS35 with BTT SKR 1.3/1.4 (#26176)

commit b94a3354932dbcf6680e8d378219e9f41f29873e
Author: rondlh <77279634+rondlh@users.noreply.github.com>
Date:   Tue Dec 12 08:48:02 2023 +0800

    ✨ SERIAL_DMA (for some STM32Fx) (#26328)

commit 01aa87c3077c9bac8e075818a87e52098dbde999
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 10 00:23:34 2023 +0000

    [cron] Bump distribution date (2023-12-10)

commit 473817f2f4758924c56351a3672354a141834929
Author: mikemerryguy <57319047+mikemerryguy@users.noreply.github.com>
Date:   Sat Dec 9 02:38:31 2023 -0500

    🚸 Adjust Progress / Completion (#26466)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit a1c3a2b03a531606b3f6d850b324707efb89c1a0
Author: David Buezas <dbuezas@users.noreply.github.com>
Date:   Sat Dec 9 07:48:57 2023 +0100

    🚸 Encoder improvements (#26501)

commit bdfe4a108c347544d4aa50936ac15e71550cb545
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 8 23:18:50 2023 -0600

    🩹  Fix UBL debug output

commit 10fe229aadc05a32575d8a6c609c2dc7c730cde4
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 9 00:20:55 2023 +0000

    [cron] Bump distribution date (2023-12-09)

commit dfec58e5dced9fd794cc4a8e7a88a4d34f0cacda
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 8 00:47:18 2023 -0600

    ⚡️ Use strlcpy with buffer size (#26513)

commit 6c04cf40f441fb884e049d25c439969a6f618ed6
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 8 06:06:47 2023 +0000

    [cron] Bump distribution date (2023-12-08)

commit fe7203ee5533ecb0436a301aea46bedeff311624
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Dec 7 20:35:34 2023 -0800

    🔨 Use PIO versioning (including HC32) (#26512)

commit 483b8dcc05c2f0ef4c83d8ec7f4f0065ec9d240f
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 6 06:06:45 2023 +0000

    [cron] Bump distribution date (2023-12-06)

commit a41e16ffee0ae828ecb73eeea3caab2f4aed82a8
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Wed Dec 6 00:11:41 2023 -0500

    ✨ Voxelab Aquila N32 (via Maple) (#26470)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 425af4240b222448ab2ebe5c5d152adeed2079a4
Author: studiodyne <42887851+studiodyne@users.noreply.github.com>
Date:   Wed Dec 6 06:05:48 2023 +0100

    🐛 Fix tool-change E prime (#26494)

    Followup to #17248

commit 4a4c1db606ece3a235244c90fc397946d0c863a6
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Dec 5 06:06:24 2023 +0000

    [cron] Bump distribution date (2023-12-05)

commit 2b1375c8eaf72c5145fdf5e85de934c494cb5e9d
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Dec 5 18:27:58 2023 +1300

    🐛 Fix thermistor 14 & 60 constexprness (#26499)

commit 065440891be1be8caeb03a065ccc4a3cd68ba23f
Author: Alexander Gavrilenko <jmz52@users.noreply.github.com>
Date:   Tue Dec 5 07:46:39 2023 +0300

    🚸 UI refresh for some events (#26487)

commit d58168a03f32ba5f12d2dc280849e759d64b6c40
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Dec 5 17:19:02 2023 +1300

    🩹 Fix a NeoPixel override (#26492)

commit 8cf936ccb144fa8a23712d181ad7c743709eb683
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Dec 5 16:35:12 2023 +1300

    🩹 Fix ftostrX3sign (#26497)

commit d5d45e85e4b88e531e4c519f8c40281ea2826364
Author: David Buezas <dbuezas@users.noreply.github.com>
Date:   Tue Dec 5 04:31:34 2023 +0100

    ✨ DOUBLE_LCD_FRAMERATE (#26500)

commit 0d4f41fb6dfd1a4f5efde4bb2d5a66b3543462de
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Dec 4 00:22:06 2023 +0000

    [cron] Bump distribution date (2023-12-04)

commit 1c1c4739105790c31424810aedfca8c526bcce12
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 3 01:22:14 2023 -0600

    ✅ Fix auto-label action comments

commit dde878db049357199bd14be1b36564b80244ca8b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 3 00:32:28 2023 -0600

    ✅ Use actions/github-script@v7

commit 1a42c38e0eefdf62976bf7a5a35224d3c675f9ff
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Dec 2 22:03:46 2023 -0800

    🩹 Replace more DEBUG_ECHOF (#26495)

    Followup to #25928

commit e695c473afb0a1546951d5759e50d03a595b99a1
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 3 00:23:05 2023 +0000

    [cron] Bump distribution date (2023-12-03)

commit bd6eb832500478c9e3be55f1126d0139aa013bb0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 1 09:19:13 2023 -0600

    🩹 Fix some minor issues

commit c484228c56f031b2bf44ea2194b0a84b47e2ae98
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Fri Dec 1 22:18:24 2023 -0500

    ✅ Fix some action labels (#26490)

    Co-authored-by: thisiskeithb <13375512+thisiskeithb@users.noreply.github.com>
    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit f265fb59436e91369461efd8b5a6bf92aa0b3a96
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 2 00:20:23 2023 +0000

    [cron] Bump distribution date (2023-12-02)

commit b17d3d3e9c68032d4b7e4ad03a7f65fb9f0fd5d0
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Dec 2 04:25:57 2023 +1300

    🧑‍💻 More num-to-string digits / precisions (#26343)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit c53844ff91b65576f60f8060a296d68d1d25c92a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 1 04:45:55 2023 -0600

    ✅ Temporary CI Tests for 2.1.x

commit e393c7fa0e00264308b66c6a332b60f6fca6cb80
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Nov 30 20:51:55 2023 -0600

    ✅  Temporarily allow PR against 2.1.x

commit b55678a7d08f75a44993381e056fa5c537c9a4dd
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 1 00:23:41 2023 +0000

    [cron] Bump distribution date (2023-12-01)

commit fe8266b59105c24a6dced92bfd604374e5e9ef8d
Author: Erkan Ozgur Yilmaz <eoyilmaz@gmail.com>
Date:   Thu Nov 30 22:52:11 2023 +0000

    🚸 Fix BLTouch HSMode deploy (#26311)

commit 3d8e3c3c9a2e955b7075783b8a95c3526b2936a5
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Nov 30 16:25:11 2023 -0600

    🐛 Touch fixes (#26455)

commit 61349dc6d30f0df8175ac176852ae81065ef2da4
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Nov 30 00:21:18 2023 +0000

    [cron] Bump distribution date (2023-11-30)

commit 95821b07b11fc94c00269cbab075bec8b1b6c05a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 29 16:45:37 2023 -0600

    ✅ Auto-label older open [BUG] issues

commit d62ee95d283105b4260a1e6542fb35123bd9eea4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 29 14:24:20 2023 -0600

    🔨 Update config/schema scripts (#26483)

commit b9620140874d01da533f0bb604fc61c654e52859
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 29 14:19:27 2023 -0600

    ✅ Label bug reports

commit 921198e81ce246d38d2675db14b7884ef37093f3
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Nov 28 21:11:23 2023 -0600

    🧑‍💻 More SAMD51 ADCs

commit 3457952854eb612c88a790dfcccb68fcde26e8f0
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 29 00:27:28 2023 +0000

    [cron] Bump distribution date (2023-11-29)

commit f4228cc4c1e1ed499a07f9357afa6a978c1fd7a5
Author: mikemerryguy <57319047+mikemerryguy@users.noreply.github.com>
Date:   Tue Nov 28 18:55:21 2023 -0500

    ✨ XY_AFTER_HOMING, EVENT_GCODE_AFTER_HOMING (#26469)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit dabcd6590350a3096309647cc51bd289fbc4554a
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Nov 29 11:23:18 2023 +1300

    🚸 Fix ProUI hostui.notify('finished') (#26478)

commit 8fa4f5a40faed43e20389432fd7be89303216b28
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Nov 28 12:08:12 2023 +0000

    [cron] Bump distribution date (2023-11-28)

commit b95aa36b01801a7d8ad6cba4172058f708f635a6
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Nov 27 22:46:21 2023 -0800

    📝 Community Reporting redux (#26368)

commit 7a96a082b70deeed8648f7c1bebe21a3a0aaab56
Author: I3DBeeTech <129617321+I3DBeeTech@users.noreply.github.com>
Date:   Tue Nov 28 12:13:17 2023 +0530

    ✨ BlackBeezMini 3D by I3DBEE (#26406)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
    Co-authored-by: thisiskeithb <13375512+thisiskeithb@users.noreply.github.com>

commit b78f0012e99739de337254f7b8681ea7a6aa5f3d
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Tue Nov 28 01:10:18 2023 -0500

    📝 Fix comment dates (#26472)

commit e958b6da9eaff0a4a2c1a0ff9ebf7480a5ecfce7
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Nov 27 00:23:10 2023 +0000

    [cron] Bump distribution date (2023-11-27)

commit 86338ca835540d522145a3f05e498518ecf90756
Author: Chris <52449218+shadow578@users.noreply.github.com>
Date:   Mon Nov 27 00:58:56 2023 +0100

    ✨ HAL for HC32F460 (#26414)

commit 8a110b80bf859a0e038a3a8f4e4febff48cb80e2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Nov 26 14:26:20 2023 -0600

    ✅ Use Python 3.9 for CI

commit 9a12f06f199e86ca18ff2d40119805330c4ff6c6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Nov 25 21:17:18 2023 -0600

    🎨 Update file headers

    Marlin is collectively © by the Organization, with individual contributors having © on their original work as documented in the commit history.

commit 7d334775d0d7f038c03afe5f93d8befd34d12dcb
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Nov 26 23:05:50 2023 +1300

    Update MinSerial.cpp

    Add missing commas

commit 0a86a5f39c560f324e65b539b5be8da1ed91c60a
Author: David Buezas <dbuezas@users.noreply.github.com>
Date:   Sun Nov 26 02:55:51 2023 +0100

    ✨ MAX Thermocouples for Heated Bed (#26441)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit e7cf0e12ea2f122b80e5567e878e8f545eb37bee
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Nov 26 00:27:32 2023 +0000

    [cron] Bump distribution date (2023-11-26)

commit e41df97c42e1be0b0c2b7bfbef2664a32cdf577b
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Nov 26 12:15:38 2023 +1300

    🔧 Pins for FYSETC Spider King 4.07 (#26461)

commit 20a26d5053b15e44d2be86c24ec074b43f159074
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Sat Nov 25 17:45:39 2023 -0500

    🧑‍💻 Use ftpl for item strings (#26462)

commit 924d7769ec3dd65f89b53b45b94998c5d5cb1748
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Nov 25 14:31:53 2023 -0800

    ✨ BD_SENSOR_PROBE_NO_STOP (#26353)

commit 8ff937c7d861d72da46fb10ce29e28b44b49cc2c
Author: Jason Smith <jason.inet@gmail.com>
Date:   Fri Nov 24 23:26:02 2023 -0800

    🐛 Fix PANDA ZHU missing #endif (#26460)

commit ae695e83093d234aecf6849c5107b0bc29bd687b
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Nov 25 16:27:55 2023 +1300

    👽️ Update Teensy 4.0/4.1 Serial (#26457)

commit e98e307d17cccddc35b7af364c1198e448891518
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Nov 25 00:20:09 2023 +0000

    [cron] Bump distribution date (2023-11-25)

commit bd872a7a98528da6e1fab95382488ce703fe24c1
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Fri Nov 24 21:03:06 2023 +0200

    🔧 Configurable FR/Flow edit ranges (#26446)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit fd3de02a37cec8fc5395a2d486fd229a2b71e8a9
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Nov 24 00:20:39 2023 +0000

    [cron] Bump distribution date (2023-11-24)

commit 1bee537a09376da015dfa63ed0a74b948cef3e24
Author: Jason Smith <jason.inet@gmail.com>
Date:   Thu Nov 23 10:17:41 2023 -0800

    🧑‍💻 Add sim launch example for Windows (#26456)

commit ded942a4e4d116b36177993371b0ddaa4b14bf4c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 22 22:18:41 2023 -0600

    🐛 Fix expand_u8str_P string substitution

    Fixes #26424

commit bf61e5239083fad148c84b7a3bce355c9e32ec6a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 22 21:06:47 2023 -0600

    ⚡️ Tiny string optimization

commit 2d9262cc5a9b24d5900126f3498da7f3a8f31e66
Author: Erkan Ozgur Yilmaz <eoyilmaz@gmail.com>
Date:   Thu Nov 23 02:39:40 2023 +0000

    ⚡️ Fix MMU2 sscanf bug, optimize (#26449)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 993cc9463ebb7e9c46696e50469bbd69a72eabb0
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Nov 23 00:21:17 2023 +0000

    [cron] Bump distribution date (2023-11-23)

commit c2376d62e232b952923cdda55bdb0bbc3c59063c
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Wed Nov 22 03:40:50 2023 -0500

    🩹 Fix JyersUI/ProUI narrowing (#26453)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit f3473495d0ecc61e4d768e88759e9a7f9a263770
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Wed Nov 22 03:19:29 2023 -0500

    🚸 Fixes for ProUI popup, abort (#26308)

commit c5b267162cf00feb965154b9d96e21bef61a9336
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Wed Nov 22 03:07:44 2023 -0500

    🌐 Regenerate Russian font data (#26428)

commit 8322848c35364afa23caa283e5bbe513f4aba0e8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 22 01:35:46 2023 -0600

    ✅ Smarter use_example_configs

commit 61cb98dc0fc7b97915c839eafcafeeff6838eee5
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 22 00:21:52 2023 +0000

    [cron] Bump distribution date (2023-11-22)

commit 2b1666fcb0834dbdae4030f464778e0a7c391d57
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Nov 21 13:59:30 2023 -0600

    ✏️ GT2560_V41b followup

commit 6ae2cde6637282b431b90c92cad7e3de6587affc
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Nov 22 06:43:08 2023 +1300

    🐛Fix GT2560_V41b Z2 pin (#26370)

    * Update pins_GT2560_V41b.h

    Fix Z2_STOP_PIN

    * use mega2560ext

    when board has pins > D69

    * Allow overrides, consistent with other pins in this file

    ---------

    Co-authored-by: Jason Smith <jason.inet@gmail.com>

commit cc8f7c83dabdff51a0980d8fa066833aeaa3d97d
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Tue Nov 21 04:57:31 2023 -0500

    🚸 Fix, clean up ProUI (#26434)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 20445b8e832b11139b17ff87b771beb6d3ddd95b
Author: Jason Smith <jason.inet@gmail.com>
Date:   Tue Nov 21 01:42:44 2023 -0800

    🧑‍💻 Update pins formatter script (#26450)

commit 12881d55761da2ffcb056e19cbccc37b37907d83
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Nov 21 00:21:26 2023 +0000

    [cron] Bump distribution date (2023-11-21)

commit b88cb86069462a28f02671cd468d67556f5b3883
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Nov 20 11:55:27 2023 -0800

    ✨ BTT Octopus Pro V1.0.1 (STM32H723ZE) (#26159)

commit 3d3be15665d8140574a1dbd665fd0807e7b234c0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Nov 20 02:18:53 2023 -0600

    🔨 Fix Ender-5 S1 env

commit 014278383645bdfe50313ffd15a2287f377ac8f0
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Nov 19 23:24:32 2023 -0800

    🚸 Fix more MarlinUI title centering (#26440)

    Followup to #26339

commit 006768ab58ff426fa7cfdaa72dba135b10a47ed7
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Mon Nov 20 02:23:07 2023 -0500

    🚸 Fix MarlinUI axis move / UBL strings (#26439)

    Followup to #26344

commit 376673df284333ed499dd6a1e8ab52c317d2af73
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Nov 20 00:53:35 2023 -0600

    🚸 Minor touch calibration improvement (#26445)

commit f8307563561b066f4f58210a7c9404b1a10dcbf3
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Nov 20 00:21:38 2023 +0000

    [cron] Bump distribution date (2023-11-20)

commit 1fceb7c580398c510474f5ac0dbb5b9831bfc0d6
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Nov 19 13:57:03 2023 -0800

    🔥 Remove VAkE 403D part deux (#26443)

    Followup to #25969

commit 5287cfbb5974fe324c82f135a17a79c2b5cd5da9
Author: Jason Smith <jason.inet@gmail.com>
Date:   Sun Nov 19 13:23:20 2023 -0800

    🐛 Fix rotational AxisFlags (#26444)

    Followup to #26438

commit f345f60f7386e8d04232e1a7b128a70f78b41b13
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Nov 18 23:49:44 2023 -0600

    🔨 Similar board name errors

commit e2c801519969eed8cf304e996f37f331b23b86e9
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Nov 19 00:22:58 2023 +0000

    [cron] Bump distribution date (2023-11-19)

commit aed577271ff94c822e861d8f652f2bdf46b2aeb9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Nov 17 22:39:00 2023 -0600

    🔨 Rotational move items (#26438)

commit f50ca52c57e53a5f93e1c99994f1a977f28bf9f8
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Nov 18 00:20:36 2023 +0000

    [cron] Bump distribution date (2023-11-18)

commit 36e66bdd9ff22ddfdcaa36ac8a9b9448c78ca44c
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Nov 18 09:11:59 2023 +1300

    🔧 Define MarlinUI axis moves with lists (#26344)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 19869d3a7db80b875e8d3706d3bbf1c62d3d1cb1
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Fri Nov 17 04:57:00 2023 +0300

    🔨 Creality STM32F401RC w/out bootloader (#26373)

commit c8118c3a58244d844e616c4b90f292dbe801edbe
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Nov 17 00:20:53 2023 +0000

    [cron] Bump distribution date (2023-11-17)

commit 7fe07dc4ce0f34a1f04ff1c050c6b94fd4c3976a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Nov 16 16:05:31 2023 -0600

    🩹 Fix runout state in menu (#26394)

    Fixes #26386

commit 3e8a5b6151d2843396945aa8ee8cfbd2c8893486
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 15 00:20:46 2023 +0000

    [cron] Bump distribution date (2023-11-15)

commit 28bc19720a1118681d39e91fd11c4905de5497ff
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Nov 14 21:33:15 2023 +1300

    🐛 Put I2C init ahead of LCD init (#26409)

commit a8cb89b3da1cf8742a43bb14fdf980535d919ced
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Nov 14 21:31:13 2023 +1300

    🐛 Fix BTT SKR Mini E3 pins (#26410)

commit df2251e23efdfdc74ddc90ce0531eb0b9b510818
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Nov 14 00:29:07 2023 -0800

    🔨 Fix PINS_DEBUGGING for some STM32H7 (#26416)

commit 31154278b3841f382a0faf3444cfbb24c1a09be7
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Tue Nov 14 03:27:05 2023 -0500

    🔨 Fix legacy auto_build.py (#26427)

commit 613b4105a2f07075bfb66cb33685dbdb67b17c5f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Nov 13 23:52:22 2023 -0800

    🔨 Fix updated build script (#26423)

    Followup to #26265

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 10e06e197039acf50f6ffb65b7ea01f0018c06a1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Nov 14 01:23:37 2023 -0600

    🧑‍💻 Prevent mixed bitmap encoding

    Followup to #26419

commit c751dcfcf915a67b87306ac0e6a8e93e683a3668
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Tue Nov 14 00:48:01 2023 -0500

    🎨 Python ; cleanup (#26426)

commit 178938d9574a37638cf752b9d09791027ea8a97e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Nov 13 23:05:59 2023 -0600

    ⚡️ Extend bitmap compression

    Followup to #26419

commit a8313c3b7ef4e76fece13bbc2037b76600e8ce33
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Nov 14 00:20:32 2023 +0000

    [cron] Bump distribution date (2023-11-14)

commit dc265312079f1dfad5c34a8c2896d66c94793ddd
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Nov 13 17:24:15 2023 -0600

    ✨ COMPACT_CUSTOM_BOOTSCREEN (#26419)

commit c74e6ad868435b5719b5a3df8cacfd16d4a5b6c9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Nov 13 04:28:33 2023 -0600

    🔨 Use classic ld on macOS

commit a62eec4ae3fc4b7bf0e062d8c7f892b8b970dbed
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Nov 13 00:21:11 2023 +0000

    [cron] Bump distribution date (2023-11-13)

commit 235ad4dd9d6069924c8447e3fcacefac52b8c3b9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Nov 12 19:25:51 2023 +1300

    🚸 Fix DOGM centering (#26415)

commit d06923d0e7136fc449b5c31b1fadc146357d21d3
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Nov 12 06:05:50 2023 +0000

    [cron] Bump distribution date (2023-11-12)

commit 7f59b65fc872e79675d2addab1af656f0d58bfff
Author: Luiz Eduardo Carneiro <lscarneiro@outlook.com>
Date:   Sat Nov 11 21:44:45 2023 -0500

    ✨ MINGDA D2 D301 v1.0 (#26340)

commit 884a3249fef951c111c8969eec659cbe36a6292b
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Sun Nov 12 04:40:49 2023 +0200

    ✨ BED_ANNEALING_GCODE (#26341)

    Co-authored-by: Scott Lahteine <thinkyhead@…
smiksky added a commit to smiksky/Marlin that referenced this pull request Feb 16, 2024
commit 9e879a5
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Feb 11 00:22:45 2024 +0000

    [cron] Bump distribution date (2024-02-11)

commit 9974327
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Feb 11 03:28:37 2024 +1300

    extend uart checks

commit 4eba643
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Feb 10 06:17:34 2024 +0000

    [cron] Bump distribution date (2024-02-10)

commit 8d7be79
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Feb 9 19:11:56 2024 -0600

    👷 Improve BIGTREE_GTR_V1_0 tests

commit 76b5688
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Feb 9 19:11:37 2024 -0600

    🚸 Optional encoder multipliers

commit 1e8fbb7
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Feb 9 00:20:11 2024 +0000

    [cron] Bump distribution date (2024-02-09)

commit 20c6a62
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Feb 8 16:49:13 2024 -0600

    🧑‍💻 HC32 endstop interrupts for X2/Y2/Z4

commit 1d295f7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 7 23:44:55 2024 -0600

    🔥 Clean up SCARA/TPARA

commit 669814d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 7 23:40:54 2024 -0600

    ✨ MARLIN_SMALL_BUILD option (MarlinFirmware#26775)

commit 4aa48be
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 7 18:25:13 2024 -0600

    🚸 Adjust encoder multiplier

commit 371fb5a
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Feb 8 00:20:32 2024 +0000

    [cron] Bump distribution date (2024-02-08)

commit 0829a51
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 7 18:09:36 2024 -0600

    🧑‍💻 "static_warning"

commit a3c78c4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 7 14:00:29 2024 -0600

    🎨 Delete old FTDI Eve bootscreen

commit a321125
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 7 13:58:01 2024 -0600

    🩹 Fix FTDI Eve Touch UI M84

commit 2c8e7bd
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 7 12:07:15 2024 +0000

    [cron] Bump distribution date (2024-02-07)

commit 005d687
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Feb 7 19:33:54 2024 +1300

    🔧 Restore probe XY edit defaults, remove arbitrary Z limit (MarlinFirmware#26774)

commit 3dd2234
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Feb 6 06:06:16 2024 +0000

    [cron] Bump distribution date (2024-02-06)

commit e61a84a
Author: Scott Mikutsky <smikutsky@gmail.com>
Date:   Tue Feb 6 00:37:29 2024 -0500

    🚸 Keep Filament Change near the top (MarlinFirmware#26172)

commit d8e73d3
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Feb 5 00:21:40 2024 +0000

    [cron] Bump distribution date (2024-02-05)

commit b12340b
Author: Robherc <68039049+robherc@users.noreply.github.com>
Date:   Sun Feb 4 17:10:11 2024 -0500

    🔧 Fix extraneous DIAG warnings (MarlinFirmware#26694)

commit ec46a59
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Feb 4 16:06:43 2024 -0600

    🧑‍💻 Fix uncrustify config

commit 5003681
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Feb 4 10:14:49 2024 -0800

    🩹 Fix HOTEND_IDLE_TIMEOUT with no heated bed (MarlinFirmware#26746)

commit d939692
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Feb 4 10:13:03 2024 -0800

    🩹 Update BTT GTR v1.0 DIAG jumper/pin (MarlinFirmware#26764)

commit 1dee4d9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Feb 4 12:09:08 2024 -0600

    🔧 TOUCH_IDLE_SLEEP_MINS => DISPLAY_SLEEP_MINUTES

    Follow up to MarlinFirmware#26517

commit 9364cbb
Author: Smokey Pell <brentpell81@gmail.com>
Date:   Sun Feb 4 09:37:32 2024 -0600

    🚸 Tronxy V10 w/ TFT_TRONXY_X5SA + MKS_ROBIN_TFT43 (MarlinFirmware#26747)

commit 755b661
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Sun Feb 4 10:03:08 2024 -0500

    🔧 Fix USE_Z_MIN conditions (MarlinFirmware#26762)

commit 7f4792e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Feb 4 00:22:42 2024 +0000

    [cron] Bump distribution date (2024-02-04)

commit e6837b2
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Feb 3 15:19:19 2024 -0800

    🩹 Fix STM32 HW Serial 6 (MarlinFirmware#26763)

    Followup to MarlinFirmware#26328

commit 9e21330
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Feb 3 00:20:49 2024 +0000

    [cron] Bump distribution date (2024-02-03)

commit c476e62
Author: Davide Rombolà <davide.rombola@gmail.com>
Date:   Fri Feb 2 02:31:39 2024 +0100

    🩹 Fix STM32 HW Serial (MarlinFirmware#26531)

    Followup to MarlinFirmware#26328

commit 4c5d783
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Feb 2 00:20:22 2024 +0000

    [cron] Bump distribution date (2024-02-02)

commit 9a5cfb3
Author: Abdullah YILMAZ <h.abdullahyilmaz@hotmail.com>
Date:   Thu Feb 1 05:11:08 2024 +0300

    🌐 Turkish language update (MarlinFirmware#26739)

commit 5a87bea
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Wed Jan 31 20:24:08 2024 -0500

    🚸 Fix repeating "Power Off" message (MarlinFirmware#26755)

commit d62f45b
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Feb 1 00:21:39 2024 +0000

    [cron] Bump distribution date (2024-02-01)

commit f9d5ee0
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Feb 1 07:33:42 2024 +1300

    🩹 Patch STM32 serial UUID (MarlinFirmware#26737)

    Followup to MarlinFirmware#26715

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit ef04680
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 31 06:06:35 2024 +0000

    [cron] Bump distribution date (2024-01-31)

commit 1c6cfc3
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Jan 30 21:00:02 2024 -0800

    🐛 Fix I/J/K chopper timing (MarlinFirmware#26736)

    Followup to MarlinFirmware#19112

commit 0266e7f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Jan 30 20:58:06 2024 -0800

    📝 Biqu => BIQU (MarlinFirmware#26735)

commit 610ea0a
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Jan 31 17:56:46 2024 +1300

    🔨 No strlcpy in Windows (MarlinFirmware#26748)

commit 70d942a
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 30 06:06:23 2024 +0000

    [cron] Bump distribution date (2024-01-30)

commit 5639237
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 29 20:38:03 2024 -0600

    🎨 Misc. cleanup 29-01

commit 541bd26
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 29 00:21:02 2024 +0000

    [cron] Bump distribution date (2024-01-29)

commit 7a4d601
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Jan 28 14:13:23 2024 -0800

    🩹 Temp constraints followup (MarlinFirmware#26744)

    Followup to cb291e8

commit bf8675b
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 28 00:22:35 2024 +0000

    [cron] Bump distribution date (2024-01-28)

commit ebea672
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 27 11:45:54 2024 -0600

    🐛 Protect EEPROM bytes 916-926

    Followup to MarlinFirmware#26729

    Ender-3S1 STM32F401 Bootloader

commit ce8535f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 26 15:18:38 2024 -0600

    🧑‍💻 Fix warning, adjust tests

commit 0ba4cd2
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 27 00:19:36 2024 +0000

    [cron] Bump distribution date (2024-01-27)

commit afc2dd6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 25 22:09:06 2024 -0600

    🎨 Misc. cleanup 25-01

commit 5768b42
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 25 22:06:09 2024 -0600

    Add Conditionals_type.h

commit ee8630c
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 26 00:42:39 2024 +0000

    [cron] Bump distribution date (2024-01-26)

commit 01094ea
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Thu Jan 25 19:18:49 2024 -0500

    ✨🔨 EEPROM exclusion zone (MarlinFirmware#26729)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 6c1fd1f
Author: qwertymodo <qwertymodo@qwertymodo.com>
Date:   Thu Jan 25 16:16:32 2024 -0800

    🩹 Fix single Neo strip M150 K (MarlinFirmware#26709)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 4f65466
Author: sargonphin <85966195+sargonphin@users.noreply.github.com>
Date:   Fri Jan 26 00:48:06 2024 +0100

    🔧 HYBRID_THRESHOLD sanity checks (MarlinFirmware#26681)

commit 9b31193
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Jan 26 12:39:09 2024 +1300

    🩹 Followup to EDITABLE_STEPS_PER_UNIT (MarlinFirmware#26677)

    Followup to MarlinFirmware#26618

commit 8594e94
Author: ejhoness <72996067+ejhoness@users.noreply.github.com>
Date:   Thu Jan 25 20:37:35 2024 -0300

    ✏️ Fix draw_dialog.cpp typo (MarlinFirmware#26684)

commit 16acb57
Author: Cesar Guillermo Montiel <cesarweb@hotmail.com>
Date:   Thu Jan 25 20:12:49 2024 -0300

    ✨ Creality v2.4.S4_170 (Ender 2 Pro, HC32F460KCTA) (MarlinFirmware#26730)

commit 04c8a31
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 25 15:07:34 2024 -0600

    🎨 Misc. LCD pins comments

commit 3856037
Author: engrenage <32837871+petaflot@users.noreply.github.com>
Date:   Thu Jan 25 21:24:57 2024 +0100

    🔧 Allow float Z_PROBE_LOW_POINT (MarlinFirmware#26711)

commit ffbf4a6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 25 13:41:39 2024 -0600

    🩹 Fix IA Creality IDEX case

commit a215bc2
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 25 00:28:09 2024 +0000

    [cron] Bump distribution date (2024-01-25)

commit cbc674f
Author: minding-myown-business <jyoung12345.accounts@skiff.com>
Date:   Thu Jan 25 00:24:25 2024 +0000

    📝 Fix dead LCD link (MarlinFirmware#26669)

commit 97546bf
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Jan 25 09:33:02 2024 +1300

    🚸 PLR recover chamber temp (MarlinFirmware#26696)

commit ed1391e
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Wed Jan 24 22:21:00 2024 +0200

    🔧 Wrap POWER_LOSS_RETRACT_LEN (MarlinFirmware#26695)

commit 7fbd9ec
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jan 24 10:55:59 2024 -0800

    🔧 Allow RAMPS FAN1_PIN override (MarlinFirmware#26725)

commit 6398902
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jan 24 10:54:37 2024 -0800

    🔧 Update SKR_MINI_SCREEN_ADAPTER error (MarlinFirmware#26726)

commit e668d5a
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Jan 25 07:50:48 2024 +1300

    🔧 STM32 UID followup (MarlinFirmware#26727)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit a222827
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 24 00:22:20 2024 +0000

    [cron] Bump distribution date (2024-01-24)

commit 3ef192e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 23 16:05:41 2024 -0600

    🎨 Cosmetic cleanup 23-01

commit 5fea79f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 23 16:02:33 2024 -0600

    🔧 Fix ROTATIONAL_AXIS_GANG

    Co-Authored-By: DerAndere <26200979+DerAndere1@users.noreply.github.com>

commit 18e65f5
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 23 15:55:13 2024 -0600

    🩹 Fix _U and other conflicts

    Fix MarlinFirmware#26220

commit 5ed6bf6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 23 15:44:51 2024 -0600

    🔧 Allow for no STOP pin

    Co-Authored-By: DerAndere <26200979+DerAndere1@users.noreply.github.com>

commit d79bcef
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Tue Jan 23 21:09:31 2024 +0100

    🔧 Sanity check Z_CLEARANCE_FOR_HOMING (MarlinFirmware#26721)

commit f1a5340
Author: Anson Liu <ansonl@users.noreply.github.com>
Date:   Tue Jan 23 08:24:49 2024 -0800

    🚸 DOGM active extruder indicator (MarlinFirmware#26152)

commit 4309e6a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 22 23:31:04 2024 -0600

    🧑‍💻 Fix build_all_examples

commit 0c3d1cf
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 23 00:50:39 2024 +0000

    [cron] Bump distribution date (2024-01-23)

commit aa7d571
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 22 17:32:01 2024 -0600

    ♻️ LCD pins migration precursor (MarlinFirmware#26719)

    Preliminary changes for MarlinFirmware#25650

commit 604d3e8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 22 16:38:08 2024 -0600

    🎨 Move EXIT_M303

commit 22fc07d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 2 15:03:02 2023 -0500

    🧑‍💻 ExtUI::onPlayTone optional duration

commit dd3b5a1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 21 22:00:37 2024 -0600

    Misc. aesthetic adjustments

    Co-Authored-By: Andrew <18502096+classicrocker883@users.noreply.github.com>

commit 416f94f
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 22 00:23:03 2024 +0000

    [cron] Bump distribution date (2024-01-22)

commit 204de72
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Jan 21 04:01:25 2024 -0800

    ✨ BIQU MicroProbe (MarlinFirmware#26527)

commit 80cd89d
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Sun Jan 21 13:11:03 2024 +0200

    🩹 Fix M592 report (MarlinFirmware#26680)

commit 624226c
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Jan 22 00:09:36 2024 +1300

    🩹 Fix STM32 CPU serial UUID (MarlinFirmware#26715)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 3adf73a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Jan 20 21:47:26 2024 -0800

    🔥 Remove ALLOW_LOW_EJERK (MarlinFirmware#26712)

commit eb7b207
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 21 00:24:10 2024 +0000

    [cron] Bump distribution date (2024-01-21)

commit d7e4536
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Jan 20 19:24:30 2024 +1300

    🔨 Fix POLAR build (MarlinFirmware#26687)

commit 388c701
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 20 00:21:13 2024 +0000

    [cron] Bump distribution date (2024-01-20)

commit da96607
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Sat Jan 20 00:38:25 2024 +0200

    🔧 Adjust DEFAULT_EJERK settings (MarlinFirmware#26665)

commit fb49645
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Jan 20 08:49:35 2024 +1300

    📝 Fix Anet pins typo (MarlinFirmware#26660)

commit 7d751a2
Author: German Borisov <Borisov.German@gmail.com>
Date:   Fri Jan 19 22:17:36 2024 +0300

    ✨ Status Screen flow adjustment (MarlinFirmware#26627)

commit 9f7d5bb
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 19 00:22:09 2024 +0000

    [cron] Bump distribution date (2024-01-19)

commit 0df25b1
Author: Abdullah YILMAZ <h.abdullahyilmaz@hotmail.com>
Date:   Fri Jan 19 03:00:43 2024 +0300

    🌐 Update Turkish language (MarlinFirmware#26676)

commit cef623b
Author: engrenage <32837871+petaflot@users.noreply.github.com>
Date:   Fri Jan 19 00:57:46 2024 +0100

    🔧 Clarify M600 sanity-check (MarlinFirmware#26702)

commit 12434e7
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Thu Jan 18 18:55:37 2024 -0500

    🔨 Improve CMakeLists.txt (MarlinFirmware#26700)

commit 2200607
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 17 06:06:41 2024 +0000

    [cron] Bump distribution date (2024-01-17)

commit c313811
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 16 23:15:04 2024 -0600

    ✨ Minor Orca update

    Followup to MarlinFirmware#26534

commit 76dce41
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 16 06:06:41 2024 +0000

    [cron] Bump distribution date (2024-01-16)

commit 1f1ca34
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 15 22:22:08 2024 -0600

    🧑‍💻 Tweak limit_and_warn

commit 8d4ab15
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 15 21:36:15 2024 -0600

    🧑‍💻 Tweak planner debug

commit 7455776
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 15 00:22:58 2024 +0000

    [cron] Bump distribution date (2024-01-15)

commit 3019af1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 13 18:30:43 2024 -0600

    🔨 Make / pins-format patches

commit 8916e6f
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 14 00:24:03 2024 +0000

    [cron] Bump distribution date (2024-01-14)

commit b2fd631
Author: Robherc <68039049+robherc@users.noreply.github.com>
Date:   Fri Jan 12 23:03:34 2024 -0500

    🔧 Fix SD connection defaults (MarlinFirmware#26666)

    Co-authored-by: thisiskeithb <13375512+thisiskeithb@users.noreply.github.com>
    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit cadef64
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 13 00:21:34 2024 +0000

    [cron] Bump distribution date (2024-01-13)

commit ab34971
Author: ThomasToka <117008525+ThomasToka@users.noreply.github.com>
Date:   Fri Jan 12 06:56:45 2024 +0100

    🐛 Fix PLR pos/sdpos (MarlinFirmware#26365)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 46f370a
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 12 00:21:50 2024 +0000

    [cron] Bump distribution date (2024-01-12)

commit 0f43ac7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 10 18:25:17 2024 -0600

    ⏪️ Revert encoder changes

    Reverts MarlinFirmware#26501

commit ef92b6c
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 11 00:21:50 2024 +0000

    [cron] Bump distribution date (2024-01-11)

commit f44f9eb
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 10 14:49:28 2024 -0600

    🎨 Misc. style adjustments

commit 854f331
Author: plampix <plampix@users.noreply.github.com>
Date:   Wed Jan 10 07:33:54 2024 +0100

    ✨ EDITABLE_STEPS_PER_UNIT (MarlinFirmware#26618)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 1d46e67
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Wed Jan 10 07:13:10 2024 +0200

    ✨ PLR_BED_THRESHOLD (MarlinFirmware#26649)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 85ded0b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 9 22:41:54 2024 -0600

    🩹 Clarify servo µs min/max

commit cb291e8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 9 22:41:00 2024 -0600

    🩹 Fix some temp constraints

commit 25caae1
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Jan 10 15:55:20 2024 +1300

    🩹 Fix PID / MPC tune background tasks (MarlinFirmware#26652)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 12d7995
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 9 18:45:17 2024 -0600

    🎨 Minor temp / UI refactor

commit 320b7a9
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 10 00:21:58 2024 +0000

    [cron] Bump distribution date (2024-01-10)

commit a533e9e
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Tue Jan 9 23:42:08 2024 +0200

    🩹 Fix edit Z jerk step size (MarlinFirmware#26650)

    Followup to MarlinFirmware#25514

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit f6ecdae
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Jan 10 10:19:47 2024 +1300

    🔧 Base NUM_SERVO_PLUGS on SERVO PINS (MarlinFirmware#26640)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 477b70e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 9 00:22:16 2024 +0000

    [cron] Bump distribution date (2024-01-09)

commit b2dd2dc
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Mon Jan 8 05:26:34 2024 +0100

    🚸 FT Motion M493 report less precision (MarlinFirmware#26643)

commit b106f59
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Mon Jan 8 05:17:43 2024 +0100

    🐛 Refine FT Motion, I2S Stepping (MarlinFirmware#26628)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 38f483c
Author: mikemerryguy <57319047+mikemerryguy@users.noreply.github.com>
Date:   Sun Jan 7 23:14:24 2024 -0500

    🩹 Skip post-G28 XY move for untrusted X or Y (MarlinFirmware#26644)

    Followup to MarlinFirmware#26469

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit f4eafed
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 7 21:59:25 2024 -0600

    🔧 Z_PROBE_END_SCRIPT => EVENT_GCODE_AFTER_G29

commit 5987a54
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 7 19:34:34 2024 -0600

    🎨 Use float CEIL/FLOOR

commit 3a888e9
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 8 00:30:52 2024 +0000

    [cron] Bump distribution date (2024-01-08)

commit 4cddc61
Author: Alexander Gavrilenko <jmz52@users.noreply.github.com>
Date:   Mon Jan 8 03:18:18 2024 +0300

    🐛 Fix SPI TFT for STM32F1/F4 (MarlinFirmware#26052)

commit 2a8c00b
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 6 00:21:22 2024 +0000

    [cron] Bump distribution date (2024-01-06)

commit 4ae2a76
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 5 12:34:50 2024 -0600

    🎨 Clean up ws

commit a5d097a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 4 18:50:23 2024 -0600

    ✏️ Fix CTC_A10S_A13 typo

    Followup to MarlinFirmware#26514

commit 5e0a8d2
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 5 00:21:26 2024 +0000

    [cron] Bump distribution date (2024-01-05)

commit 994aa9f
Author: plampix <plampix@users.noreply.github.com>
Date:   Fri Jan 5 00:09:53 2024 +0100

    ⚡️ Slimmer null T command (MarlinFirmware#26615)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 6e67ad5
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Thu Jan 4 18:07:53 2024 -0500

    🎨 Followup to optional M111/M115 (MarlinFirmware#26626)

    Followup to MarlinFirmware#26603

commit 52693f7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 4 13:01:45 2024 -0600

    🎨 Clean up some checks & includes

commit 991f433
Author: Jason Smith <jason.inet@gmail.com>
Date:   Wed Jan 3 19:14:17 2024 -0800

    🐛 Fix hangs in DUE native USB (MarlinFirmware#26572)

commit 54b7da1
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Wed Jan 3 21:45:50 2024 -0500

    🩹 Fix Bed PID Autotune output (MarlinFirmware#26606)

    Followup to MarlinFirmware#25928

commit f8771e9
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 4 00:21:47 2024 +0000

    [cron] Bump distribution date (2024-01-04)

commit be1dee7
Author: Orel <37673727+0r31@users.noreply.github.com>
Date:   Wed Jan 3 21:02:20 2024 +0100

    🎨 Clean up old #includes (MarlinFirmware#26621)

commit 68b7802
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Wed Jan 3 20:19:19 2024 +0100

    📝 Update M493 (FT_MOTION) comments (MarlinFirmware#26620)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 6d40776
Author: plampix <plampix@users.noreply.github.com>
Date:   Wed Jan 3 16:43:18 2024 +0100

    🔧 CONFIGURE_FILAMENT_CHANGE - Optional M603 (MarlinFirmware#26613)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 4a9e102
Author: I3DBeeTech <129617321+I3DBeeTech@users.noreply.github.com>
Date:   Wed Jan 3 06:23:41 2024 +0530

    📺 I3DBEE TECH Beez Mini 12864 (MarlinFirmware#26596)

commit 1ac6428
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Jan 3 13:52:12 2024 +1300

    🔪 Options to slim M111, remove M115 (MarlinFirmware#26603)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 7c159a2
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 3 00:21:14 2024 +0000

    [cron] Bump distribution date (2024-01-03)

commit 5b74e25
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Jan 2 20:25:26 2024 +1300

    🔨 BSD string workaround (MarlinFirmware#26532)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit f02fa63
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 2 00:21:06 2024 +0000

    [cron] Bump distribution date (2024-01-02)

commit 3b6f1bf
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 1 00:50:46 2024 -0600

    🧑‍💻 Update pinsformat

commit 1d61571
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 31 03:30:53 2023 -0600

    🧑‍💻 Python version of pins formatting script

commit 99c5702
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 1 00:24:20 2024 +0000

    [cron] Bump distribution date (2024-01-01)

commit 13e82fa
Author: nagubash <40751501+nagendras176@users.noreply.github.com>
Date:   Mon Jan 1 02:33:04 2024 +0530

    🔨 Fix formatting issue in Makefile (MarlinFirmware#26599)

commit 95878df
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Sun Dec 31 22:00:57 2023 +0100

    🐛 Fix homing with FT_MOTION (MarlinFirmware#26595)

commit 5d1ede0
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Dec 31 22:54:26 2023 +1300

    ✨ CTC_A10S_A13 (MarlinFirmware#26514)
luizbgomide added a commit to luizbgomide/Marlin that referenced this pull request Mar 19, 2024
commit 9e879a5b1f801e7572e7948be38a6dad16ad35d8
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Feb 11 00:22:45 2024 +0000

    [cron] Bump distribution date (2024-02-11)

commit 9974327d333c3db443a7627b476f02c91a1ace0e
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Feb 11 03:28:37 2024 +1300

    extend uart checks

commit 4eba643ae1fe90f8aa2831a359efafbd78933fbe
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Feb 10 06:17:34 2024 +0000

    [cron] Bump distribution date (2024-02-10)

commit 8d7be79108ecb481761527516782830890a28de7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Feb 9 19:11:56 2024 -0600

    👷 Improve BIGTREE_GTR_V1_0 tests

commit 76b568830475d218a5229ff9736a155c5a0cb620
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Feb 9 19:11:37 2024 -0600

    🚸 Optional encoder multipliers

commit 1e8fbb7bbb8611194c9d7242a860b153412694c5
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Feb 9 00:20:11 2024 +0000

    [cron] Bump distribution date (2024-02-09)

commit 20c6a6233bc3d749335d3f761c61131355a6e534
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Feb 8 16:49:13 2024 -0600

    🧑‍💻 HC32 endstop interrupts for X2/Y2/Z4

commit 1d295f7983a90be9eddc830bc7be621c6dcb14c7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 7 23:44:55 2024 -0600

    🔥 Clean up SCARA/TPARA

commit 669814d0d408a622f020a55971ba04030e4fa4bf
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 7 23:40:54 2024 -0600

    ✨ MARLIN_SMALL_BUILD option (#26775)

commit 4aa48beb378fec6a6e7de0c8c3c7fe47f6551c24
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 7 18:25:13 2024 -0600

    🚸 Adjust encoder multiplier

commit 371fb5a256d968712d6180bf6faf9090c75246e4
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Feb 8 00:20:32 2024 +0000

    [cron] Bump distribution date (2024-02-08)

commit 0829a511f03d75121f2a8aa557fc0b45f5f2069c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 7 18:09:36 2024 -0600

    🧑‍💻 "static_warning"

commit a3c78c45101fd13066eae944ba4dcdfcec3e57f4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 7 14:00:29 2024 -0600

    🎨 Delete old FTDI Eve bootscreen

commit a3211253a05f6f0380fa3bee8eb32b2f02c7bd3a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 7 13:58:01 2024 -0600

    🩹 Fix FTDI Eve Touch UI M84

commit 2c8e7bd5a58c338bad5111891497e8cb35f2fed6
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 7 12:07:15 2024 +0000

    [cron] Bump distribution date (2024-02-07)

commit 005d6879d998ccd900d1a311185f7069541dc623
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Feb 7 19:33:54 2024 +1300

    🔧 Restore probe XY edit defaults, remove arbitrary Z limit (#26774)

commit 3dd22349a9c9daa7039e86c9a617efe063283beb
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Feb 6 06:06:16 2024 +0000

    [cron] Bump distribution date (2024-02-06)

commit e61a84a717cc80d4583278fdbdeff72becf3d9b5
Author: Scott Mikutsky <smikutsky@gmail.com>
Date:   Tue Feb 6 00:37:29 2024 -0500

    🚸 Keep Filament Change near the top (#26172)

commit d8e73d30362e17523bd50133344f7782fdf1be5e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Feb 5 00:21:40 2024 +0000

    [cron] Bump distribution date (2024-02-05)

commit b12340b1d57288945633ad926136ab2c27d25c12
Author: Robherc <68039049+robherc@users.noreply.github.com>
Date:   Sun Feb 4 17:10:11 2024 -0500

    🔧 Fix extraneous DIAG warnings (#26694)

commit ec46a5953956a5e7f3d213439a1fd2bea793860e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Feb 4 16:06:43 2024 -0600

    🧑‍💻 Fix uncrustify config

commit 5003681414eac2f2953ff4430148d23d80036d62
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Feb 4 10:14:49 2024 -0800

    🩹 Fix HOTEND_IDLE_TIMEOUT with no heated bed (#26746)

commit d9396929aab56121698d4acde1b04add1574f43d
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Feb 4 10:13:03 2024 -0800

    🩹 Update BTT GTR v1.0 DIAG jumper/pin (#26764)

commit 1dee4d92c61b14458cd394d1f609f0dc80282092
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Feb 4 12:09:08 2024 -0600

    🔧 TOUCH_IDLE_SLEEP_MINS => DISPLAY_SLEEP_MINUTES

    Follow up to #26517

commit 9364cbb4b53a5ef77cf2b843ba228afffb4c1725
Author: Smokey Pell <brentpell81@gmail.com>
Date:   Sun Feb 4 09:37:32 2024 -0600

    🚸 Tronxy V10 w/ TFT_TRONXY_X5SA + MKS_ROBIN_TFT43 (#26747)

commit 755b661c2d9e3beb2ba6b7602715d43891ecff3a
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Sun Feb 4 10:03:08 2024 -0500

    🔧 Fix USE_Z_MIN conditions (#26762)

commit 7f4792e47c909cef2b46a11a0a8a80cf6858b80d
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Feb 4 00:22:42 2024 +0000

    [cron] Bump distribution date (2024-02-04)

commit e6837b2b8dd70e5a282fff1508e01215ff85c14d
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Feb 3 15:19:19 2024 -0800

    🩹 Fix STM32 HW Serial 6 (#26763)

    Followup to #26328

commit 9e21330d7ae8b4979fee10099294e9e61c939613
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Feb 3 00:20:49 2024 +0000

    [cron] Bump distribution date (2024-02-03)

commit c476e62a6f32bc4d197dc31a8587d53376505f4a
Author: Davide Rombolà <davide.rombola@gmail.com>
Date:   Fri Feb 2 02:31:39 2024 +0100

    🩹 Fix STM32 HW Serial (#26531)

    Followup to #26328

commit 4c5d7831c11c859e5e378d1ff588cb8fe20eb58a
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Feb 2 00:20:22 2024 +0000

    [cron] Bump distribution date (2024-02-02)

commit 9a5cfb3f26315822c7ae8ea043525c0e30ac08ac
Author: Abdullah YILMAZ <h.abdullahyilmaz@hotmail.com>
Date:   Thu Feb 1 05:11:08 2024 +0300

    🌐 Turkish language update (#26739)

commit 5a87bea7622207b78503cc171a0544ee6bd9d6a2
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Wed Jan 31 20:24:08 2024 -0500

    🚸 Fix repeating "Power Off" message (#26755)

commit d62f45bdc17f36ceb6105345df9ce2946369da10
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Feb 1 00:21:39 2024 +0000

    [cron] Bump distribution date (2024-02-01)

commit f9d5ee04b4930fa7b876c278e80072060463f55c
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Feb 1 07:33:42 2024 +1300

    🩹 Patch STM32 serial UUID (#26737)

    Followup to #26715

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit ef04680cc556fb5aa8637fb767f7ce11be30ca2a
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 31 06:06:35 2024 +0000

    [cron] Bump distribution date (2024-01-31)

commit 1c6cfc3ffeac8fdf2cd6d61529ad864578a4803f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Jan 30 21:00:02 2024 -0800

    🐛 Fix I/J/K chopper timing (#26736)

    Followup to #19112

commit 0266e7fe535cbdd2a10850fd0fd71f1ae2617db2
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Jan 30 20:58:06 2024 -0800

    📝 Biqu => BIQU (#26735)

commit 610ea0a9d30f1bc566eacda7ceab7976e228957d
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Jan 31 17:56:46 2024 +1300

    🔨 No strlcpy in Windows (#26748)

commit 70d942a18483e28d7306c0edd4280ff354cf4350
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 30 06:06:23 2024 +0000

    [cron] Bump distribution date (2024-01-30)

commit 5639237e2b174715413f9ffc6f6421db9150d9d6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 29 20:38:03 2024 -0600

    🎨 Misc. cleanup 29-01

commit 541bd26cd7d0d31d1f81298fb5ddc2d43f9c4c03
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 29 00:21:02 2024 +0000

    [cron] Bump distribution date (2024-01-29)

commit 7a4d601f4d8b88acffe62b31d614773ad0f20a57
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Jan 28 14:13:23 2024 -0800

    🩹 Temp constraints followup (#26744)

    Followup to cb291e8d

commit bf8675b44a43c82a1ee8595fa3f7a1f1e5dca61e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 28 00:22:35 2024 +0000

    [cron] Bump distribution date (2024-01-28)

commit ebea672240ba49067194e9a6959ba2604da2d4c2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 27 11:45:54 2024 -0600

    🐛 Protect EEPROM bytes 916-926

    Followup to #26729

    Ender-3S1 STM32F401 Bootloader

commit ce8535f01ca4b85ca1f7cae3908d3174ac11fff6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 26 15:18:38 2024 -0600

    🧑‍💻 Fix warning, adjust tests

commit 0ba4cd2b3bcf404fcd533e4a87992e86f3366c7f
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 27 00:19:36 2024 +0000

    [cron] Bump distribution date (2024-01-27)

commit afc2dd6cab2c50ddca1506350a8845b82a4ffce7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 25 22:09:06 2024 -0600

    🎨 Misc. cleanup 25-01

commit 5768b42c398c232a3f891093e87d18de0331f2f1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 25 22:06:09 2024 -0600

    Add Conditionals_type.h

commit ee8630c28270bf3281f798660d43c6e88d2b8eb4
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 26 00:42:39 2024 +0000

    [cron] Bump distribution date (2024-01-26)

commit 01094ea6aa7b843f830ec350e5886fcab6b652ff
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Thu Jan 25 19:18:49 2024 -0500

    ✨🔨 EEPROM exclusion zone (#26729)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 6c1fd1f69c349b24ded49d7c5a1118fe7a5e37dd
Author: qwertymodo <qwertymodo@qwertymodo.com>
Date:   Thu Jan 25 16:16:32 2024 -0800

    🩹 Fix single Neo strip M150 K (#26709)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 4f65466161c39bee82a8fa98263989a01b706927
Author: sargonphin <85966195+sargonphin@users.noreply.github.com>
Date:   Fri Jan 26 00:48:06 2024 +0100

    🔧 HYBRID_THRESHOLD sanity checks (#26681)

commit 9b3119393f0c7fe3eb08734e097df09c7466acc3
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Jan 26 12:39:09 2024 +1300

    🩹 Followup to EDITABLE_STEPS_PER_UNIT (#26677)

    Followup to #26618

commit 8594e9462ca429cbaccd2b3d0e2eb15684bd27ae
Author: ejhoness <72996067+ejhoness@users.noreply.github.com>
Date:   Thu Jan 25 20:37:35 2024 -0300

    ✏️ Fix draw_dialog.cpp typo (#26684)

commit 16acb57b22747b495953ecef065ba625f4dc3df8
Author: Cesar Guillermo Montiel <cesarweb@hotmail.com>
Date:   Thu Jan 25 20:12:49 2024 -0300

    ✨ Creality v2.4.S4_170 (Ender 2 Pro, HC32F460KCTA) (#26730)

commit 04c8a3138e3ce1edcd59c8e6c1ba4abeba28e30d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 25 15:07:34 2024 -0600

    🎨 Misc. LCD pins comments

commit 38560378fcb99bcdb4b889f3b8e08c7dc5abe366
Author: engrenage <32837871+petaflot@users.noreply.github.com>
Date:   Thu Jan 25 21:24:57 2024 +0100

    🔧 Allow float Z_PROBE_LOW_POINT (#26711)

commit ffbf4a6a9002827daf09a5f36bd28fdf3d61a0e8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 25 13:41:39 2024 -0600

    🩹 Fix IA Creality IDEX case

commit a215bc2ca3b27afb5de7fbf69d9b19da5ac7466e
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 25 00:28:09 2024 +0000

    [cron] Bump distribution date (2024-01-25)

commit cbc674ff997b3bffc92cbb2f61a9a5c8952c3446
Author: minding-myown-business <jyoung12345.accounts@skiff.com>
Date:   Thu Jan 25 00:24:25 2024 +0000

    📝 Fix dead LCD link (#26669)

commit 97546bf55b20f10fa8952efbd232481e11e9f916
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Jan 25 09:33:02 2024 +1300

    🚸 PLR recover chamber temp (#26696)

commit ed1391ee5d5c272240b8fe18716c340d7688cb8e
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Wed Jan 24 22:21:00 2024 +0200

    🔧 Wrap POWER_LOSS_RETRACT_LEN (#26695)

commit 7fbd9ec5f4c450e062663dbe1964dc95e705733b
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jan 24 10:55:59 2024 -0800

    🔧 Allow RAMPS FAN1_PIN override (#26725)

commit 63989023b8f179ee67dea44b008ea03e314482e6
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jan 24 10:54:37 2024 -0800

    🔧 Update SKR_MINI_SCREEN_ADAPTER error (#26726)

commit e668d5afd75039fbbbc9a3a8c8357c74c399ccb7
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Jan 25 07:50:48 2024 +1300

    🔧 STM32 UID followup (#26727)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit a2228276bbc3908faa8ad3fe021b8961d0c11ec6
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 24 00:22:20 2024 +0000

    [cron] Bump distribution date (2024-01-24)

commit 3ef192e7c7b18804ec7e3964a1366bd08355dc93
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 23 16:05:41 2024 -0600

    🎨 Cosmetic cleanup 23-01

commit 5fea79fd07e5d874fbd217d8d9e8afceec60ef9e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 23 16:02:33 2024 -0600

    🔧 Fix ROTATIONAL_AXIS_GANG

    Co-Authored-By: DerAndere <26200979+DerAndere1@users.noreply.github.com>

commit 18e65f5eb4a1dc4b08d4bece67f2c182e8359ff6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 23 15:55:13 2024 -0600

    🩹 Fix _U and other conflicts

    Fix #26220

commit 5ed6bf65ba32e97b8cad133730a602fc67cda4f9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 23 15:44:51 2024 -0600

    🔧 Allow for no STOP pin

    Co-Authored-By: DerAndere <26200979+DerAndere1@users.noreply.github.com>

commit d79bcef802de4c0b55e6ea74bab5faee663a752a
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Tue Jan 23 21:09:31 2024 +0100

    🔧 Sanity check Z_CLEARANCE_FOR_HOMING (#26721)

commit f1a53407e7c99559f9073f11ab91e7b305ec7770
Author: Anson Liu <ansonl@users.noreply.github.com>
Date:   Tue Jan 23 08:24:49 2024 -0800

    🚸 DOGM active extruder indicator (#26152)

commit 4309e6ab76528a8e64343148d81caa2d231c8c13
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 22 23:31:04 2024 -0600

    🧑‍💻 Fix build_all_examples

commit 0c3d1cf566c43d28bd99487c1352a7c019eecf32
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 23 00:50:39 2024 +0000

    [cron] Bump distribution date (2024-01-23)

commit aa7d5714867df05348ca63ad113ea9cf7ccc3271
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 22 17:32:01 2024 -0600

    ♻️ LCD pins migration precursor (#26719)

    Preliminary changes for #25650

commit 604d3e8fadc1fd3603409f0d22d8a49de6f46cc2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 22 16:38:08 2024 -0600

    🎨 Move EXIT_M303

commit 22fc07d72ba08df8db9545da4286ccd2558ecf30
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jun 2 15:03:02 2023 -0500

    🧑‍💻 ExtUI::onPlayTone optional duration

commit dd3b5a10a09e2a83918af1cf6f8782fd0c473f98
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 21 22:00:37 2024 -0600

    Misc. aesthetic adjustments

    Co-Authored-By: Andrew <18502096+classicrocker883@users.noreply.github.com>

commit 416f94f03a40e907c2c0bbe3e187c79d4d8754b3
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 22 00:23:03 2024 +0000

    [cron] Bump distribution date (2024-01-22)

commit 204de723f1c08f83e281f0629b60822b334097ed
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Jan 21 04:01:25 2024 -0800

    ✨ BIQU MicroProbe (#26527)

commit 80cd89d8f7f656be4e190c2c97064966905ce8a9
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Sun Jan 21 13:11:03 2024 +0200

    🩹 Fix M592 report (#26680)

commit 624226c91d23941ac8fe2bd8c3a20bb364e6393a
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Jan 22 00:09:36 2024 +1300

    🩹 Fix STM32 CPU serial UUID (#26715)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 3adf73a2cd45556859a6499bf2ed27509e49f0ff
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Jan 20 21:47:26 2024 -0800

    🔥 Remove ALLOW_LOW_EJERK (#26712)

commit eb7b207e4c63e17c2e63e89c30a1e1ea7c04cfa3
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 21 00:24:10 2024 +0000

    [cron] Bump distribution date (2024-01-21)

commit d7e45367afaf6a6007b6a89ff7eeefe5fa0c59ff
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Jan 20 19:24:30 2024 +1300

    🔨 Fix POLAR build (#26687)

commit 388c7018c44036ee75af9dac39f2f0b386bf7089
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 20 00:21:13 2024 +0000

    [cron] Bump distribution date (2024-01-20)

commit da96607b65ecc910178413d6979c128add9d098e
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Sat Jan 20 00:38:25 2024 +0200

    🔧 Adjust DEFAULT_EJERK settings (#26665)

commit fb49645b3233caa2701ebdab1e5322d73d3545a0
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Jan 20 08:49:35 2024 +1300

    📝 Fix Anet pins typo (#26660)

commit 7d751a20b1fc6ef920cbc56a68450302ac1eb973
Author: German Borisov <Borisov.German@gmail.com>
Date:   Fri Jan 19 22:17:36 2024 +0300

    ✨ Status Screen flow adjustment (#26627)

commit 9f7d5bbc86032a646f14eb6ca246723118ae9fb0
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 19 00:22:09 2024 +0000

    [cron] Bump distribution date (2024-01-19)

commit 0df25b100854008907a68393eaa6027941917a48
Author: Abdullah YILMAZ <h.abdullahyilmaz@hotmail.com>
Date:   Fri Jan 19 03:00:43 2024 +0300

    🌐 Update Turkish language (#26676)

commit cef623b7d2a5e1c49911ce539b3e031d5e307ad6
Author: engrenage <32837871+petaflot@users.noreply.github.com>
Date:   Fri Jan 19 00:57:46 2024 +0100

    🔧 Clarify M600 sanity-check (#26702)

commit 12434e78e4478b8d098793a382db109e54cee0e8
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Thu Jan 18 18:55:37 2024 -0500

    🔨 Improve CMakeLists.txt (#26700)

commit 220060798930227fea158a81b5f83e241b7630ff
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 17 06:06:41 2024 +0000

    [cron] Bump distribution date (2024-01-17)

commit c31381183b0daeb4361249bb20b74b7b2e0940f1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 16 23:15:04 2024 -0600

    ✨ Minor Orca update

    Followup to #26534

commit 76dce41580e5fbe527e2b8939f358a624b3c0e04
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 16 06:06:41 2024 +0000

    [cron] Bump distribution date (2024-01-16)

commit 1f1ca34ea6c37d8d22808f3fb25992776abfe4f2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 15 22:22:08 2024 -0600

    🧑‍💻 Tweak limit_and_warn

commit 8d4ab15748eb9c6bcbc1dd30c1b8f51d2cc94dc5
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 15 21:36:15 2024 -0600

    🧑‍💻 Tweak planner debug

commit 745577693d1dd27d209aa547ca1745d6ca6ecc1b
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 15 00:22:58 2024 +0000

    [cron] Bump distribution date (2024-01-15)

commit 3019af1c9398da0172b5d5f5bb0d3a5506e56e4d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 13 18:30:43 2024 -0600

    🔨 Make / pins-format patches

commit 8916e6f826aa86b4b0a2b08c72d0128fce8c28c4
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 14 00:24:03 2024 +0000

    [cron] Bump distribution date (2024-01-14)

commit b2fd631d82b9b3e64226ceac6a132ec917aaee21
Author: Robherc <68039049+robherc@users.noreply.github.com>
Date:   Fri Jan 12 23:03:34 2024 -0500

    🔧 Fix SD connection defaults (#26666)

    Co-authored-by: thisiskeithb <13375512+thisiskeithb@users.noreply.github.com>
    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit cadef644180ecb049826159612853411e111c4f0
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 13 00:21:34 2024 +0000

    [cron] Bump distribution date (2024-01-13)

commit ab3497161a37ae309e030a23e0f8e3f3eb61daea
Author: ThomasToka <117008525+ThomasToka@users.noreply.github.com>
Date:   Fri Jan 12 06:56:45 2024 +0100

    🐛 Fix PLR pos/sdpos (#26365)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 46f370ae3cc1501bd831c495b46ab0e571e99f10
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 12 00:21:50 2024 +0000

    [cron] Bump distribution date (2024-01-12)

commit 0f43ac79f610df25d865667e41baef707aaf40da
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 10 18:25:17 2024 -0600

    ⏪️ Revert encoder changes

    Reverts #26501

commit ef92b6c369fdf6ea99d7c79a663c7f6b308e31ec
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 11 00:21:50 2024 +0000

    [cron] Bump distribution date (2024-01-11)

commit f44f9eb9f831e007156e310de09ab3ba03100cf0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 10 14:49:28 2024 -0600

    🎨 Misc. style adjustments

commit 854f3315af645775e7b0aa39bd05db66187bcc38
Author: plampix <plampix@users.noreply.github.com>
Date:   Wed Jan 10 07:33:54 2024 +0100

    ✨ EDITABLE_STEPS_PER_UNIT (#26618)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 1d46e67de202ae436958c344506f14d2da975076
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Wed Jan 10 07:13:10 2024 +0200

    ✨ PLR_BED_THRESHOLD (#26649)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 85ded0b9bd9550a4b2a7e0326de7e098dd465a70
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 9 22:41:54 2024 -0600

    🩹 Clarify servo µs min/max

commit cb291e8d00a6c1ee0a778625e0170b6b7430a004
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 9 22:41:00 2024 -0600

    🩹 Fix some temp constraints

commit 25caae1e8c238422cb8ee00637d463ae837c5273
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Jan 10 15:55:20 2024 +1300

    🩹 Fix PID / MPC tune background tasks (#26652)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 12d7995a18d3ce59c871e11c4940bbaeb9c352fc
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 9 18:45:17 2024 -0600

    🎨 Minor temp / UI refactor

commit 320b7a9ac33e908860191b27626753e76f103f21
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 10 00:21:58 2024 +0000

    [cron] Bump distribution date (2024-01-10)

commit a533e9e637cb3c7e1c86513bdce9a7802f921d44
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Tue Jan 9 23:42:08 2024 +0200

    🩹 Fix edit Z jerk step size (#26650)

    Followup to #25514

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit f6ecdae972c1e54f52daec5c63252281962da5b9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Jan 10 10:19:47 2024 +1300

    🔧 Base NUM_SERVO_PLUGS on SERVO PINS (#26640)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 477b70eccf3210dc2fff2e84555830320bea9655
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 9 00:22:16 2024 +0000

    [cron] Bump distribution date (2024-01-09)

commit b2dd2dc217af35011bcded3f8603c954f5fed95a
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Mon Jan 8 05:26:34 2024 +0100

    🚸 FT Motion M493 report less precision (#26643)

commit b106f59eb495718d7158e27347eca5deb11fbe86
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Mon Jan 8 05:17:43 2024 +0100

    🐛 Refine FT Motion, I2S Stepping (#26628)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 38f483c4a6a0b6c814e5ee88747f58eed17fa61e
Author: mikemerryguy <57319047+mikemerryguy@users.noreply.github.com>
Date:   Sun Jan 7 23:14:24 2024 -0500

    🩹 Skip post-G28 XY move for untrusted X or Y (#26644)

    Followup to #26469

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit f4eafed188189d2a77c53a2a68bd931ee838b584
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 7 21:59:25 2024 -0600

    🔧 Z_PROBE_END_SCRIPT => EVENT_GCODE_AFTER_G29

commit 5987a5464bc8622d77ab52990b88d5ae035074e1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 7 19:34:34 2024 -0600

    🎨 Use float CEIL/FLOOR

commit 3a888e956b081a9cde1f496b6c24fa39b5061f39
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 8 00:30:52 2024 +0000

    [cron] Bump distribution date (2024-01-08)

commit 4cddc61eda70d9e78ef7767fc052995855e34a79
Author: Alexander Gavrilenko <jmz52@users.noreply.github.com>
Date:   Mon Jan 8 03:18:18 2024 +0300

    🐛 Fix SPI TFT for STM32F1/F4 (#26052)

commit 2a8c00bdeb5268b11a3bbddfc8797a3f09a92947
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 6 00:21:22 2024 +0000

    [cron] Bump distribution date (2024-01-06)

commit 4ae2a76492b176c831647e29cc6150e7d8c0605a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 5 12:34:50 2024 -0600

    🎨 Clean up ws

commit a5d097abe6e8cbad3dead9086439b3c0f44c7cb2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 4 18:50:23 2024 -0600

    ✏️ Fix CTC_A10S_A13 typo

    Followup to #26514

commit 5e0a8d21245d21eafdc55e77645cb20eef750017
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 5 00:21:26 2024 +0000

    [cron] Bump distribution date (2024-01-05)

commit 994aa9f6923e2307d13badd26a15e6d57525955f
Author: plampix <plampix@users.noreply.github.com>
Date:   Fri Jan 5 00:09:53 2024 +0100

    ⚡️ Slimmer null T command (#26615)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 6e67ad51b70ce4f02be967bb14e5557a021e48eb
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Thu Jan 4 18:07:53 2024 -0500

    🎨 Followup to optional M111/M115 (#26626)

    Followup to #26603

commit 52693f72afca243ace00a7a57365301f5f8c42c0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 4 13:01:45 2024 -0600

    🎨 Clean up some checks & includes

commit 991f433ac1375cca0b8fcd76fcbacbe43b307ac3
Author: Jason Smith <jason.inet@gmail.com>
Date:   Wed Jan 3 19:14:17 2024 -0800

    🐛 Fix hangs in DUE native USB (#26572)

commit 54b7da18cbbbed49fee93f0f39b7093c527c25ea
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Wed Jan 3 21:45:50 2024 -0500

    🩹 Fix Bed PID Autotune output (#26606)

    Followup to #25928

commit f8771e9ad5d572f22ec89c199e81cd53106ffc5c
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Jan 4 00:21:47 2024 +0000

    [cron] Bump distribution date (2024-01-04)

commit be1dee7caf8197f10811574265714e78ca08ec83
Author: Orel <37673727+0r31@users.noreply.github.com>
Date:   Wed Jan 3 21:02:20 2024 +0100

    🎨 Clean up old #includes (#26621)

commit 68b7802fc17cd4160fa3923897ab69dbea09f4ed
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Wed Jan 3 20:19:19 2024 +0100

    📝 Update M493 (FT_MOTION) comments (#26620)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 6d407767e7692d66bc93a0012d71268770e4835c
Author: plampix <plampix@users.noreply.github.com>
Date:   Wed Jan 3 16:43:18 2024 +0100

    🔧 CONFIGURE_FILAMENT_CHANGE - Optional M603 (#26613)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 4a9e102c2ef96b75378195ad3b89cb1646ac4df4
Author: I3DBeeTech <129617321+I3DBeeTech@users.noreply.github.com>
Date:   Wed Jan 3 06:23:41 2024 +0530

    📺 I3DBEE TECH Beez Mini 12864 (#26596)

commit 1ac6428c82aa72cc41c0c9f758659b71e7fce1cf
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Jan 3 13:52:12 2024 +1300

    🔪 Options to slim M111, remove M115 (#26603)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 7c159a20e538e42af5185c80c660c90c0377b909
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 3 00:21:14 2024 +0000

    [cron] Bump distribution date (2024-01-03)

commit 5b74e25108a47acad41d9a50560cd1fbae38040a
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Jan 2 20:25:26 2024 +1300

    🔨 BSD string workaround (#26532)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit f02fa6339f003a8a5074131b50e0905f102ee8e4
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 2 00:21:06 2024 +0000

    [cron] Bump distribution date (2024-01-02)

commit 3b6f1bff8b3fc31b1d82ea420b3b74a50f599692
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 1 00:50:46 2024 -0600

    🧑‍💻 Update pinsformat

commit 1d615717e80e4c39bfa49f34d9b8f3955d7f8d47
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 31 03:30:53 2023 -0600

    🧑‍💻 Python version of pins formatting script

commit 99c570212ddfd39a749b07419a3d3fb9213d7acd
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 1 00:24:20 2024 +0000

    [cron] Bump distribution date (2024-01-01)

commit 13e82fa44a842e2d2f3569fb62131b206442ec4a
Author: nagubash <40751501+nagendras176@users.noreply.github.com>
Date:   Mon Jan 1 02:33:04 2024 +0530

    🔨 Fix formatting issue in Makefile (#26599)

commit 95878df30d737fd08f337491f7e19332fe7ac5ac
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Sun Dec 31 22:00:57 2023 +0100

    🐛 Fix homing with FT_MOTION (#26595)

commit 5d1ede08aa8a045463d4d33333fd90abead2871e
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Dec 31 22:54:26 2023 +1300

    ✨ CTC_A10S_A13 (#26514)

commit 2203505182e95544cebfc0f1e5b87b6f19f0610a
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 31 00:23:28 2023 +0000

    [cron] Bump distribution date (2023-12-31)

commit 06dc7f4f526833aaab37725e2e95e68030acb94e
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Dec 31 00:18:42 2023 +1300

    🔧 Fix, extend FAN / AUTOFAN confict check (#26591)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit e6f1b074df409cab5c231954ad542e0ffcf20f31
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 30 05:01:48 2023 -0600

    🩹 Restore usleep for native / sim

commit f605c045e3198c1c21dda75e5913ef192fc58580
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 30 00:20:29 2023 +0000

    [cron] Bump distribution date (2023-12-30)

commit 2d97f082e5e8de2973857cc9f88bafcb4a20e1ea
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Dec 28 20:50:52 2023 -0800

    ✨ BigTreeTech Manta M8P V2.0 (STM32H723ZE) (#26578)

commit ba91fa09b7f16f788f441d6385d813cb64b5f508
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Fri Dec 29 05:41:34 2023 +0100

    ⚡️ Optimize FT_MOTION (#26557)

commit 1aeee2cd1f77c91b73daf1567f6ef94ab05fca3b
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Dec 28 18:10:45 2023 -0800

    🔧 TriGorilla Pro default to ONBOARD_SDIO (#26586)

commit 4e23e52a895ded5ce0e96f054c16714cb758a982
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 29 00:17:32 2023 +0000

    [cron] Bump distribution date (2023-12-29)

commit 88cf3cb1e0878ac09e988d2a873eb97f079e766a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Dec 28 16:07:52 2023 -0800

    📌 Specify U8glib-HAL@0.5.4 (#26582)

commit 59d26e463a19f657c425e8e52ccf2552d978df7f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Dec 28 15:38:19 2023 -0800

    🔨 Newer Platform & Toolchain for STM32G0 (#26585)

commit cc641d796de55b61ea6ad531203cd4f63aaf7553
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Dec 28 00:21:10 2023 +0000

    [cron] Bump distribution date (2023-12-28)

commit 9d324f7b1f58872cdac9068f0c53bff72f4012b3
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 27 15:16:58 2023 -0600

    🎨 Remove unused usleep

commit 654e7a84ff79e49bcf43c940b08d094482b7b2ba
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 27 15:16:21 2023 -0600

    🩹 Minor MKS UI fix

commit d903a5ef4363a1fb05d8e23381c9a62b9c0d6b42
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 27 01:27:43 2023 -0600

    ✨ Initial support for HC32 U8G LCD (#26568)

    Co-authored-by: Chris <52449218+shadow578@users.noreply.github.com>

commit 15f26b402123d087f62728e1f1763a2b96f8d21d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 27 01:25:51 2023 -0600

    🧑‍💻 AS_CHAR => C (#26569)

commit 10d80eb89438b403a37b907b2c4d5995ee3bd023
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Wed Dec 27 02:24:16 2023 -0500

    📝 Docs: Binary File Transfer (BFT) Protocol (#26570)

commit 858954baad45b0edb31429a2b50a5fff9c4067fe
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 27 00:13:26 2023 -0600

    🧑‍💻 Update Uncrustify config

commit 38406634107fe90c4be452858d17eed541129b09
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 27 00:28:24 2023 +0000

    [cron] Bump distribution date (2023-12-27)

commit bd36644d85bef0ff02f701203365ce16c5db3dc0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Dec 26 17:52:46 2023 -0600

    🧑‍💻 Move U8G defines to HALs

commit c485f513d70acc838b7a1554c955fdaf5ef3df7f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Dec 26 15:45:42 2023 -0800

    ✨ BigTreeTech Kraken V1.0 (STM32H723ZG) (#26565)

    Co-authored-by: bigtreetech <38851044+bigtreetech@users.noreply.github.com>

commit 06b9e400423c0e03ff1abac0c294661e44f5b93f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Dec 26 15:43:06 2023 -0800

    🧑‍💻 Use MAX31865 flag (#26574)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 76030239283577ba1baca705e07182bb34345b64
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Dec 25 20:58:38 2023 -0600

    🔨 Apply signature.py help

commit dbf81f40de4b47b2374c6f7f229e01b504e4eb7f
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Dec 26 00:20:41 2023 +0000

    [cron] Bump distribution date (2023-12-26)

commit bb557e5195a6177bc7386fce0176274aede60b64
Author: Dennis <16547088+soligen2010@users.noreply.github.com>
Date:   Sun Dec 24 22:40:20 2023 -0500

    🩹 Fix string buffer warning (#26550)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 89fdfcfaf9df44b0782d3ef900aa28531d777058
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Dec 24 19:37:20 2023 -0800

    🩹 Fix MARKFORGED_INVERSE typos (#26558)

    Followup to #26516

commit d9a388bab86381843691af939dd023c6d534cf50
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 24 21:31:54 2023 -0600

    🩹 Fix some serial chars

commit b44e68e2ab5be3804d67eb646ebd567c2ffaee84
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Dec 25 00:21:58 2023 +0000

    [cron] Bump distribution date (2023-12-25)

commit 0f0955492994f4a7f4649c22e0f3aa5cc71541d7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 24 14:53:09 2023 -0600

    🧑‍💻 DWIN icon updates, etc.

commit 18b0dbb5018dafbb298d043e15b0623c3f0f72b3
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Dec 25 07:07:00 2023 +1300

    🐛 Creality Free Runs fixups (#26562)

    Followup to #25636, #26533

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit fa8d2bd108725eb9b23468e3823e5936e03a4209
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 24 00:23:04 2023 +0000

    [cron] Bump distribution date (2023-12-24)

commit d1ebaba71d4256485f0e306b548f52d921718679
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 23 16:25:55 2023 -0600

    🔨 Remove signature.py debug

commit 71e0275a4c1c54b5083ac49b9a12e19e149f055e
Author: Skopus <71988971+skopusdotorg@users.noreply.github.com>
Date:   Sat Dec 23 13:54:19 2023 +0330

    ✨ Orca 3D Modular Controller (#26534)

commit 205b0a679e3ca7cbf7ca590279d1cd4ed0c284c1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 23 04:19:23 2023 -0600

    🎨 Whitespace in the rightplace

commit 3029a6b1aa4c436cdda352e2add5cd421beaf104
Author: Mihai <299015+mh-dm@users.noreply.github.com>
Date:   Sat Dec 23 09:45:37 2023 +0200

    🩹 Jerk correction for LIN_ADVANCE + CLASSIC_JERK (#26551)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 342048b1dfbf41e64bc39cf5c448cbb0bb238651
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 23 00:20:19 2023 +0000

    [cron] Bump distribution date (2023-12-23)

commit ec060f979f0c836610b7fc1b02eb166df2143f28
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 22 17:47:29 2023 -0600

    📝 Clean up variant labels

commit 56ac5d03ed0901b721d816a41126854a96b1d67f
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Fri Dec 22 13:57:06 2023 -0500

    🚸 Update ProUI Plot graph (#26539)

commit ec7ab5a277a0210e1349f9e8608c372e40fdb6e6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Dec 21 22:35:51 2023 -0600

    🔨 Build flag tweaks

commit 2c5468ce333cd4a8c6ddfde8d4ad66d8417f32bd
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Dec 21 22:34:19 2023 -0600

    🎨 Planner indent

commit dbdb2ecdf756e657322977911460f43e76a9962b
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 22 00:21:13 2023 +0000

    [cron] Bump distribution date (2023-12-22)

commit c18294d83cc891c47d5abe56a4842adbe6fbb1aa
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Dec 21 15:30:03 2023 -0600

    🔧 Optional FAN_INVERTING

commit 401ba6613b1f9079ebd392adc8b0692c1525ab4f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Dec 21 15:25:48 2023 -0600

    🔧 Up to 12 PWM fans

commit 19617b79dbf5aedc62d5124c28e687c92d8a7e09
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Dec 21 06:06:34 2023 +0000

    [cron] Bump distribution date (2023-12-21)

commit eeacf76cfd1e936c44f53e05efb05fbac946996a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 20 22:07:59 2023 -0600

    🔧 config.ini / JSON dump by @section (#26556)

commit 738584d342768311845bebf8bc45494db2418eb6
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 20 06:06:01 2023 +0000

    [cron] Bump distribution date (2023-12-20)

commit f69effd2eb595fce676a2af625b8626686b814fd
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Dec 19 20:57:26 2023 -0600

    🚸 Just "warn" on SD fail

commit 67d7562609986fae14d80036ad1e7a7f3aaa49d0
Author: narno2202 <130909513+narno2202@users.noreply.github.com>
Date:   Wed Dec 20 02:56:47 2023 +0100

    🐛⚡️ FT_MOTION improvements (#26074)

    Co-Authored-By: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 0ede16cd5ab75278e6b4a599ee451ba4bb5ac739
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Dec 18 00:22:22 2023 +0000

    [cron] Bump distribution date (2023-12-18)

commit 4a89ef6273c6b0fafd3132900863e5a1f332b579
Author: geijt <3473304+geijt@users.noreply.github.com>
Date:   Sun Dec 17 23:33:46 2023 +0100

    Fix Creality E3 "Free-runs" (#26533)

    Followup to #25636

commit 145ab7b1ec99f24d8e6a5e9857e1e4a08e459b7d
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 16 06:05:48 2023 +0000

    [cron] Bump distribution date (2023-12-16)

commit 3f9c2f89fc61819331ec332eff1df939f47d82b5
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 15 23:40:26 2023 -0600

    🔧 Fix IDEX home check

    Followup to #25780

commit 00298e6681bfdc6231eeb5624dda1eebbd7fe075
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 15 20:23:59 2023 -0600

    🔧 Update fan 0 conflict check

    Followup to #25568

commit 68ab7f6bb7d93ed24054b033334c5821ea4e4cbf
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 15 00:21:58 2023 +0000

    [cron] Bump distribution date (2023-12-15)

commit 7ab63cde62e35aa80f1c6fd65f35cb0bdc200b1d
Author: Bob Kuhn <bob.kuhn@att.net>
Date:   Thu Dec 14 17:37:40 2023 -0600

    ✨ Creality E3 Free-runs Silent Motherboard (#25636)

commit b90133813a96ce839e17da039b2679601ee59afc
Author: Mihai <299015+mh-dm@users.noreply.github.com>
Date:   Thu Dec 14 22:16:15 2023 +0200

    🐛 Fix planner jerk limits (#26529)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 75da3555ee0910f3d572f4b8176afecdc941524b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Dec 14 10:03:11 2023 -0600

    🔧 Update CLASSIC_JERK conditionals

commit 8bce9dec906d59c3091e870d614f834c73aaeb89
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Dec 14 00:21:11 2023 +0000

    [cron] Bump distribution date (2023-12-14)

commit fef74398e41a1b492792837941af55057eb694f5
Author: jesterhead82 <mclauss82@gmail.com>
Date:   Wed Dec 13 08:44:11 2023 +0100

    ✨ MARKFORGED_INVERSE (#26516)

commit 775c6bb20ef1bc09632baaf4359efeea6e441451
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 13 06:12:17 2023 +0000

    [cron] Bump distribution date (2023-12-13)

commit 06710e54de8c83af77a4f57d458f6463fbfcad93
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Wed Dec 13 00:33:03 2023 -0500

    ✨ EDITABLE_DISPLAY_TIMEOUT (#26517)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 81cfa2388236820f4ed498ede01fde502a0fdca0
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Dec 12 06:09:34 2023 +0000

    [cron] Bump distribution date (2023-12-12)

commit f3fd9e28f5d6fae59c55742a2e70e2d6a3330aeb
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Dec 12 14:30:28 2023 +1300

    🐛 Fix MKS TS35 with BTT SKR 1.3/1.4 (#26176)

commit b94a3354932dbcf6680e8d378219e9f41f29873e
Author: rondlh <77279634+rondlh@users.noreply.github.com>
Date:   Tue Dec 12 08:48:02 2023 +0800

    ✨ SERIAL_DMA (for some STM32Fx) (#26328)

commit 01aa87c3077c9bac8e075818a87e52098dbde999
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 10 00:23:34 2023 +0000

    [cron] Bump distribution date (2023-12-10)

commit 473817f2f4758924c56351a3672354a141834929
Author: mikemerryguy <57319047+mikemerryguy@users.noreply.github.com>
Date:   Sat Dec 9 02:38:31 2023 -0500

    🚸 Adjust Progress / Completion (#26466)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit a1c3a2b03a531606b3f6d850b324707efb89c1a0
Author: David Buezas <dbuezas@users.noreply.github.com>
Date:   Sat Dec 9 07:48:57 2023 +0100

    🚸 Encoder improvements (#26501)

commit bdfe4a108c347544d4aa50936ac15e71550cb545
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 8 23:18:50 2023 -0600

    🩹  Fix UBL debug output

commit 10fe229aadc05a32575d8a6c609c2dc7c730cde4
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 9 00:20:55 2023 +0000

    [cron] Bump distribution date (2023-12-09)

commit dfec58e5dced9fd794cc4a8e7a88a4d34f0cacda
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 8 00:47:18 2023 -0600

    ⚡️ Use strlcpy with buffer size (#26513)

commit 6c04cf40f441fb884e049d25c439969a6f618ed6
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 8 06:06:47 2023 +0000

    [cron] Bump distribution date (2023-12-08)

commit fe7203ee5533ecb0436a301aea46bedeff311624
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Dec 7 20:35:34 2023 -0800

    🔨 Use PIO versioning (including HC32) (#26512)

commit 483b8dcc05c2f0ef4c83d8ec7f4f0065ec9d240f
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 6 06:06:45 2023 +0000

    [cron] Bump distribution date (2023-12-06)

commit a41e16ffee0ae828ecb73eeea3caab2f4aed82a8
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Wed Dec 6 00:11:41 2023 -0500

    ✨ Voxelab Aquila N32 (via Maple) (#26470)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 425af4240b222448ab2ebe5c5d152adeed2079a4
Author: studiodyne <42887851+studiodyne@users.noreply.github.com>
Date:   Wed Dec 6 06:05:48 2023 +0100

    🐛 Fix tool-change E prime (#26494)

    Followup to #17248

commit 4a4c1db606ece3a235244c90fc397946d0c863a6
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Dec 5 06:06:24 2023 +0000

    [cron] Bump distribution date (2023-12-05)

commit 2b1375c8eaf72c5145fdf5e85de934c494cb5e9d
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Dec 5 18:27:58 2023 +1300

    🐛 Fix thermistor 14 & 60 constexprness (#26499)

commit 065440891be1be8caeb03a065ccc4a3cd68ba23f
Author: Alexander Gavrilenko <jmz52@users.noreply.github.com>
Date:   Tue Dec 5 07:46:39 2023 +0300

    🚸 UI refresh for some events (#26487)

commit d58168a03f32ba5f12d2dc280849e759d64b6c40
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Dec 5 17:19:02 2023 +1300

    🩹 Fix a NeoPixel override (#26492)

commit 8cf936ccb144fa8a23712d181ad7c743709eb683
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Dec 5 16:35:12 2023 +1300

    🩹 Fix ftostrX3sign (#26497)

commit d5d45e85e4b88e531e4c519f8c40281ea2826364
Author: David Buezas <dbuezas@users.noreply.github.com>
Date:   Tue Dec 5 04:31:34 2023 +0100

    ✨ DOUBLE_LCD_FRAMERATE (#26500)

commit 0d4f41fb6dfd1a4f5efde4bb2d5a66b3543462de
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Dec 4 00:22:06 2023 +0000

    [cron] Bump distribution date (2023-12-04)

commit 1c1c4739105790c31424810aedfca8c526bcce12
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 3 01:22:14 2023 -0600

    ✅ Fix auto-label action comments

commit dde878db049357199bd14be1b36564b80244ca8b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 3 00:32:28 2023 -0600

    ✅ Use actions/github-script@v7

commit 1a42c38e0eefdf62976bf7a5a35224d3c675f9ff
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Dec 2 22:03:46 2023 -0800

    🩹 Replace more DEBUG_ECHOF (#26495)

    Followup to #25928

commit e695c473afb0a1546951d5759e50d03a595b99a1
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 3 00:23:05 2023 +0000

    [cron] Bump distribution date (2023-12-03)

commit bd6eb832500478c9e3be55f1126d0139aa013bb0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 1 09:19:13 2023 -0600

    🩹 Fix some minor issues

commit c484228c56f031b2bf44ea2194b0a84b47e2ae98
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Fri Dec 1 22:18:24 2023 -0500

    ✅ Fix some action labels (#26490)

    Co-authored-by: thisiskeithb <13375512+thisiskeithb@users.noreply.github.com>
    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit f265fb59436e91369461efd8b5a6bf92aa0b3a96
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 2 00:20:23 2023 +0000

    [cron] Bump distribution date (2023-12-02)

commit b17d3d3e9c68032d4b7e4ad03a7f65fb9f0fd5d0
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Dec 2 04:25:57 2023 +1300

    🧑‍💻 More num-to-string digits / precisions (#26343)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit c53844ff91b65576f60f8060a296d68d1d25c92a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 1 04:45:55 2023 -0600

    ✅ Temporary CI Tests for 2.1.x

commit e393c7fa0e00264308b66c6a332b60f6fca6cb80
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Nov 30 20:51:55 2023 -0600

    ✅  Temporarily allow PR against 2.1.x

commit b55678a7d08f75a44993381e056fa5c537c9a4dd
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 1 00:23:41 2023 +0000

    [cron] Bump distribution date (2023-12-01)

commit fe8266b59105c24a6dced92bfd604374e5e9ef8d
Author: Erkan Ozgur Yilmaz <eoyilmaz@gmail.com>
Date:   Thu Nov 30 22:52:11 2023 +0000

    🚸 Fix BLTouch HSMode deploy (#26311)

commit 3d8e3c3c9a2e955b7075783b8a95c3526b2936a5
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Nov 30 16:25:11 2023 -0600

    🐛 Touch fixes (#26455)

commit 61349dc6d30f0df8175ac176852ae81065ef2da4
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Nov 30 00:21:18 2023 +0000

    [cron] Bump distribution date (2023-11-30)

commit 95821b07b11fc94c00269cbab075bec8b1b6c05a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 29 16:45:37 2023 -0600

    ✅ Auto-label older open [BUG] issues

commit d62ee95d283105b4260a1e6542fb35123bd9eea4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 29 14:24:20 2023 -0600

    🔨 Update config/schema scripts (#26483)

commit b9620140874d01da533f0bb604fc61c654e52859
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 29 14:19:27 2023 -0600

    ✅ Label bug reports

commit 921198e81ce246d38d2675db14b7884ef37093f3
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Nov 28 21:11:23 2023 -0600

    🧑‍💻 More SAMD51 ADCs

commit 3457952854eb612c88a790dfcccb68fcde26e8f0
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 29 00:27:28 2023 +0000

    [cron] Bump distribution date (2023-11-29)

commit f4228cc4c1e1ed499a07f9357afa6a978c1fd7a5
Author: mikemerryguy <57319047+mikemerryguy@users.noreply.github.com>
Date:   Tue Nov 28 18:55:21 2023 -0500

    ✨ XY_AFTER_HOMING, EVENT_GCODE_AFTER_HOMING (#26469)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit dabcd6590350a3096309647cc51bd289fbc4554a
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Nov 29 11:23:18 2023 +1300

    🚸 Fix ProUI hostui.notify('finished') (#26478)

commit 8fa4f5a40faed43e20389432fd7be89303216b28
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Nov 28 12:08:12 2023 +0000

    [cron] Bump distribution date (2023-11-28)

commit b95aa36b01801a7d8ad6cba4172058f708f635a6
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Nov 27 22:46:21 2023 -0800

    📝 Community Reporting redux (#26368)

commit 7a96a082b70deeed8648f7c1bebe21a3a0aaab56
Author: I3DBeeTech <129617321+I3DBeeTech@users.noreply.github.com>
Date:   Tue Nov 28 12:13:17 2023 +0530

    ✨ BlackBeezMini 3D by I3DBEE (#26406)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
    Co-authored-by: thisiskeithb <13375512+thisiskeithb@users.noreply.github.com>

commit b78f0012e99739de337254f7b8681ea7a6aa5f3d
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Tue Nov 28 01:10:18 2023 -0500

    📝 Fix comment dates (#26472)

commit e958b6da9eaff0a4a2c1a0ff9ebf7480a5ecfce7
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Nov 27 00:23:10 2023 +0000

    [cron] Bump distribution date (2023-11-27)

commit 86338ca835540d522145a3f05e498518ecf90756
Author: Chris <52449218+shadow578@users.noreply.github.com>
Date:   Mon Nov 27 00:58:56 2023 +0100

    ✨ HAL for HC32F460 (#26414)

commit 8a110b80bf859a0e038a3a8f4e4febff48cb80e2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Nov 26 14:26:20 2023 -0600

    ✅ Use Python 3.9 for CI

commit 9a12f06f199e86ca18ff2d40119805330c4ff6c6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Nov 25 21:17:18 2023 -0600

    🎨 Update file headers

    Marlin is collectively © by the Organization, with individual contributors having © on their original work as documented in the commit history.

commit 7d334775d0d7f038c03afe5f93d8befd34d12dcb
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Nov 26 23:05:50 2023 +1300

    Update MinSerial.cpp

    Add missing commas

commit 0a86a5f39c560f324e65b539b5be8da1ed91c60a
Author: David Buezas <dbuezas@users.noreply.github.com>
Date:   Sun Nov 26 02:55:51 2023 +0100

    ✨ MAX Thermocouples for Heated Bed (#26441)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit e7cf0e12ea2f122b80e5567e878e8f545eb37bee
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Nov 26 00:27:32 2023 +0000

    [cron] Bump distribution date (2023-11-26)

commit e41df97c42e1be0b0c2b7bfbef2664a32cdf577b
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Nov 26 12:15:38 2023 +1300

    🔧 Pins for FYSETC Spider King 4.07 (#26461)

commit 20a26d5053b15e44d2be86c24ec074b43f159074
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Sat Nov 25 17:45:39 2023 -0500

    🧑‍💻 Use ftpl for item strings (#26462)

commit 924d7769ec3dd65f89b53b45b94998c5d5cb1748
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Nov 25 14:31:53 2023 -0800

    ✨ BD_SENSOR_PROBE_NO_STOP (#26353)

commit 8ff937c7d861d72da46fb10ce29e28b44b49cc2c
Author: Jason Smith <jason.inet@gmail.com>
Date:   Fri Nov 24 23:26:02 2023 -0800

    🐛 Fix PANDA ZHU missing #endif (#26460)

commit ae695e83093d234aecf6849c5107b0bc29bd687b
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Nov 25 16:27:55 2023 +1300

    👽️ Update Teensy 4.0/4.1 Serial (#26457)

commit e98e307d17cccddc35b7af364c1198e448891518
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Nov 25 00:20:09 2023 +0000

    [cron] Bump distribution date (2023-11-25)

commit bd872a7a98528da6e1fab95382488ce703fe24c1
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Fri Nov 24 21:03:06 2023 +0200

    🔧 Configurable FR/Flow edit ranges (#26446)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit fd3de02a37cec8fc5395a2d486fd229a2b71e8a9
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Nov 24 00:20:39 2023 +0000

    [cron] Bump distribution date (2023-11-24)

commit 1bee537a09376da015dfa63ed0a74b948cef3e24
Author: Jason Smith <jason.inet@gmail.com>
Date:   Thu Nov 23 10:17:41 2023 -0800

    🧑‍💻 Add sim launch example for Windows (#26456)

commit ded942a4e4d116b36177993371b0ddaa4b14bf4c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 22 22:18:41 2023 -0600

    🐛 Fix expand_u8str_P string substitution

    Fixes #26424

commit bf61e5239083fad148c84b7a3bce355c9e32ec6a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 22 21:06:47 2023 -0600

    ⚡️ Tiny string optimization

commit 2d9262cc5a9b24d5900126f3498da7f3a8f31e66
Author: Erkan Ozgur Yilmaz <eoyilmaz@gmail.com>
Date:   Thu Nov 23 02:39:40 2023 +0000

    ⚡️ Fix MMU2 sscanf bug, optimize (#26449)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 993cc9463ebb7e9c46696e50469bbd69a72eabb0
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Thu Nov 23 00:21:17 2023 +0000

    [cron] Bump distribution date (2023-11-23)

commit c2376d62e232b952923cdda55bdb0bbc3c59063c
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Wed Nov 22 03:40:50 2023 -0500

    🩹 Fix JyersUI/ProUI narrowing (#26453)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit f3473495d0ecc61e4d768e88759e9a7f9a263770
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Wed Nov 22 03:19:29 2023 -0500

    🚸 Fixes for ProUI popup, abort (#26308)

commit c5b267162cf00feb965154b9d96e21bef61a9336
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Wed Nov 22 03:07:44 2023 -0500

    🌐 Regenerate Russian font data (#26428)

commit 8322848c35364afa23caa283e5bbe513f4aba0e8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 22 01:35:46 2023 -0600

    ✅ Smarter use_example_configs

commit 61cb98dc0fc7b97915c839eafcafeeff6838eee5
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 22 00:21:52 2023 +0000

    [cron] Bump distribution date (2023-11-22)

commit 2b1666fcb0834dbdae4030f464778e0a7c391d57
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Nov 21 13:59:30 2023 -0600

    ✏️ GT2560_V41b followup

commit 6ae2cde6637282b431b90c92cad7e3de6587affc
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Nov 22 06:43:08 2023 +1300

    🐛Fix GT2560_V41b Z2 pin (#26370)

    * Update pins_GT2560_V41b.h

    Fix Z2_STOP_PIN

    * use mega2560ext

    when board has pins > D69

    * Allow overrides, consistent with other pins in this file

    ---------

    Co-authored-by: Jason Smith <jason.inet@gmail.com>

commit cc8f7c83dabdff51a0980d8fa066833aeaa3d97d
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Tue Nov 21 04:57:31 2023 -0500

    🚸 Fix, clean up ProUI (#26434)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 20445b8e832b11139b17ff87b771beb6d3ddd95b
Author: Jason Smith <jason.inet@gmail.com>
Date:   Tue Nov 21 01:42:44 2023 -0800

    🧑‍💻 Update pins formatter script (#26450)

commit 12881d55761da2ffcb056e19cbccc37b37907d83
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Nov 21 00:21:26 2023 +0000

    [cron] Bump distribution date (2023-11-21)

commit b88cb86069462a28f02671cd468d67556f5b3883
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Nov 20 11:55:27 2023 -0800

    ✨ BTT Octopus Pro V1.0.1 (STM32H723ZE) (#26159)

commit 3d3be15665d8140574a1dbd665fd0807e7b234c0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Nov 20 02:18:53 2023 -0600

    🔨 Fix Ender-5 S1 env

commit 014278383645bdfe50313ffd15a2287f377ac8f0
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Nov 19 23:24:32 2023 -0800

    🚸 Fix more MarlinUI title centering (#26440)

    Followup to #26339

commit 006768ab58ff426fa7cfdaa72dba135b10a47ed7
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Mon Nov 20 02:23:07 2023 -0500

    🚸 Fix MarlinUI axis move / UBL strings (#26439)

    Followup to #26344

commit 376673df284333ed499dd6a1e8ab52c317d2af73
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Nov 20 00:53:35 2023 -0600

    🚸 Minor touch calibration improvement (#26445)

commit f8307563561b066f4f58210a7c9404b1a10dcbf3
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Nov 20 00:21:38 2023 +0000

    [cron] Bump distribution date (2023-11-20)

commit 1fceb7c580398c510474f5ac0dbb5b9831bfc0d6
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Nov 19 13:57:03 2023 -0800

    🔥 Remove VAkE 403D part deux (#26443)

    Followup to #25969

commit 5287cfbb5974fe324c82f135a17a79c2b5cd5da9
Author: Jason Smith <jason.inet@gmail.com>
Date:   Sun Nov 19 13:23:20 2023 -0800

    🐛 Fix rotational AxisFlags (#26444)

    Followup to #26438

commit f345f60f7386e8d04232e1a7b128a70f78b41b13
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Nov 18 23:49:44 2023 -0600

    🔨 Similar board name errors

commit e2c801519969eed8cf304e996f37f331b23b86e9
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Nov 19 00:22:58 2023 +0000

    [cron] Bump distribution date (2023-11-19)

commit aed577271ff94c822e861d8f652f2bdf46b2aeb9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Nov 17 22:39:00 2023 -0600

    🔨 Rotational move items (#26438)

commit f50ca52c57e53a5f93e1c99994f1a977f28bf9f8
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sat Nov 18 00:20:36 2023 +0000

    [cron] Bump distribution date (2023-11-18)

commit 36e66bdd9ff22ddfdcaa36ac8a9b9448c78ca44c
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Nov 18 09:11:59 2023 +1300

    🔧 Define MarlinUI axis moves with lists (#26344)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 19869d3a7db80b875e8d3706d3bbf1c62d3d1cb1
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Fri Nov 17 04:57:00 2023 +0300

    🔨 Creality STM32F401RC w/out bootloader (#26373)

commit c8118c3a58244d844e616c4b90f292dbe801edbe
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Fri Nov 17 00:20:53 2023 +0000

    [cron] Bump distribution date (2023-11-17)

commit 7fe07dc4ce0f34a1f04ff1c050c6b94fd4c3976a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Nov 16 16:05:31 2023 -0600

    🩹 Fix runout state in menu (#26394)

    Fixes #26386

commit 3e8a5b6151d2843396945aa8ee8cfbd2c8893486
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 15 00:20:46 2023 +0000

    [cron] Bump distribution date (2023-11-15)

commit 28bc19720a1118681d39e91fd11c4905de5497ff
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Nov 14 21:33:15 2023 +1300

    🐛 Put I2C init ahead of LCD init (#26409)

commit a8cb89b3da1cf8742a43bb14fdf980535d919ced
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Nov 14 21:31:13 2023 +1300

    🐛 Fix BTT SKR Mini E3 pins (#26410)

commit df2251e23efdfdc74ddc90ce0531eb0b9b510818
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Nov 14 00:29:07 2023 -0800

    🔨 Fix PINS_DEBUGGING for some STM32H7 (#26416)

commit 31154278b3841f382a0faf3444cfbb24c1a09be7
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Tue Nov 14 03:27:05 2023 -0500

    🔨 Fix legacy auto_build.py (#26427)

commit 613b4105a2f07075bfb66cb33685dbdb67b17c5f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Nov 13 23:52:22 2023 -0800

    🔨 Fix updated build script (#26423)

    Followup to #26265

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 10e06e197039acf50f6ffb65b7ea01f0018c06a1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Nov 14 01:23:37 2023 -0600

    🧑‍💻 Prevent mixed bitmap encoding

    Followup to #26419

commit c751dcfcf915a67b87306ac0e6a8e93e683a3668
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Tue Nov 14 00:48:01 2023 -0500

    🎨 Python ; cleanup (#26426)

commit 178938d9574a37638cf752b9d09791027ea8a97e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Nov 13 23:05:59 2023 -0600

    ⚡️ Extend bitmap compression

    Followup to #26419

commit a8313c3b7ef4e76fece13bbc2037b76600e8ce33
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Tue Nov 14 00:20:32 2023 +0000

    [cron] Bump distribution date (2023-11-14)

commit dc265312079f1dfad5c34a8c2896d66c94793ddd
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Nov 13 17:24:15 2023 -0600

    ✨ COMPACT_CUSTOM_BOOTSCREEN (#26419)

commit c74e6ad868435b5719b5a3df8cacfd16d4a5b6c9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Nov 13 04:28:33 2023 -0600

    🔨 Use classic ld on macOS

commit a62eec4ae3fc4b7bf0e062d8c7f892b8b970dbed
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Mon Nov 13 00:21:11 2023 +0000

    [cron] Bump distribution date (2023-11-13)

commit 235ad4dd9d6069924c8447e3fcacefac52b8c3b9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Nov 12 19:25:51 2023 +1300

    🚸 Fix DOGM centering (#26415)

commit d06923d0e7136fc449b5c31b1fadc146357d21d3
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Nov 12 06:05:50 2023 +0000

    [cron] Bump distribution date (2023-11-12)

commit 7f59b65fc872e79675d2addab1af656f0d58bfff
Author: Luiz Eduardo Carneiro <lscarneiro@outlook.com>
Date:   Sat Nov 11 21:44:45 2023 -0500

    ✨ MINGDA D2 D301 v1.0 (#26340)

commit 884a3249fef951c111c8969eec659cbe36a6292b
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Sun Nov 12 04:40:49 2023 +0200

    ✨ BED_ANNEALING_GCODE (#26341)

    Co-authored-by: Scott Lahteine <thinkyhead@…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants