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

typo: unload is déchargé not chargé in french #3860

Closed

Commits on Nov 23, 2023

  1. Fit thermal problem redscreens

    Instead of redscreen, printer would show BSOD because it failed to write error to usb serial.
    So writes to USB-CDC are skipped from ISR. Its not possible to acquire mutex to write to USB from ISR,
    and even if it would be somehow implemented, it wouldn't probably flush the message in time anyway.
    LukasLendvorsky authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    bc2cedb View commit details
    Browse the repository at this point in the history
  2. Ensure user has enough room to clean nozzles and install sheet in noz…

    …zle offset calibration
    LukasLendvorsky authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    3ff3890 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9e0252d View commit details
    Browse the repository at this point in the history
  4. xl: Split PID values for inidividual dwarves to fix nozzle heater test

    If one dwarf finished much earlier than another, it would reset the PID
    and the other would fail the test.
    BFW-4607
    tomasjakubik authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    eb6c6cc View commit details
    Browse the repository at this point in the history
  5. xl: Do not migrate PID values from old EEPROM

    It was migrating p=17 which was default at that time, but never used.
    Now the default is 14 and will follow the default if we want change.
    tomasjakubik authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    17c35af View commit details
    Browse the repository at this point in the history
  6. Fix race in crash_s that ends with "reentrant recovery"

    If ISR would happen during that function, the crash_s.loop would stay
    true during the loop when crash_s.set_state(Crash_s::RECOVERY) is set.
    tomasjakubik authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    b1d43b2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    e3e1462 View commit details
    Browse the repository at this point in the history
  8. Gcode upload: Better errors around dirs

    Handle unexpected dirs (blocking the uploaded file) and missing
    destination dirs in a better way than just "Unknown error".
    
    BFW-4543.
    vorner authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    c03e155 View commit details
    Browse the repository at this point in the history
  9. transfers: Tune retries

    * Use 5 retries in a row.
    * Reset back to 5 when we make some progress.
    
    BFW-4547.
    vorner authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    ec75f49 View commit details
    Browse the repository at this point in the history
  10. upload: Handle conflicts with dirs better

    Apparently, our remove & stuff didn't report EISDIR properly. We go with
    stat instead of fopen to figure stuff out.
    
    BFW-4147.
    vorner authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    0a956f8 View commit details
    Browse the repository at this point in the history
  11. transfers: Back up after failure

    When we have a download failure, back up the position before retrying so
    we don't lose any data unnecessarily.
    
    Slightly related to BFW-4647 (that one made it more observable for some
    reason).
    vorner authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    414881a View commit details
    Browse the repository at this point in the history
  12. transfers: Postpone initiating download to retry

    Code unification & simplification ‒ create a transfer in a "failed"
    state and "retry" it later.
    
    Apart from making the code shorter and less duplicate, it also makes
    sure the download order is initialized before the first request (needed
    for future commits).
    
    (The code was duplicated for historical reasons ‒ originally, Download
    could fail at startup; this is no longer possible)
    
    BFW-4647.
    vorner authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    515b5b1 View commit details
    Browse the repository at this point in the history
  13. transfers: Download code simplification

    The variant of construction with a destination path is no longer used,
    remove from the code.
    
    As a result, the initialization can't fail ‒ it can become a constructor
    directly.
    
    BFW-4647.
    vorner authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    f569483 View commit details
    Browse the repository at this point in the history
  14. transfers: Save one request on text gcodes

    Change the order of downloading textual gcodes from header -> tail ->
    body to tail -> header + body (the latter one being in one chunk).
    
    We need both the header and tail before we start the print, but we don't
    care in which order we get them. This way we save one request (one seek)
    ‒ cheaper for us, cheaper for the server and likely few seconds faster
    before the print starts.
    
    BFW-4647.
    vorner authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    664477d View commit details
    Browse the repository at this point in the history
  15. simplification: Introduce a ScopeGuard

    To postpone a closure until the end of a scope / turn a closure into
    RAII.
    vorner authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    ee74432 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    9771076 View commit details
    Browse the repository at this point in the history
  17. fix: Migrate fans_switched as well

    Derevin authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    80c8a19 View commit details
    Browse the repository at this point in the history
  18. Fix move_z dialog stack_overflow

    Derevin authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    2d967a4 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    29d0565 View commit details
    Browse the repository at this point in the history
  20. Fix MINI load unload dialog

    Derevin authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    264078e View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    0364c31 View commit details
    Browse the repository at this point in the history
  22. Skip heater test for disabled tools

    Derevin authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    51ab521 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    63783f9 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    810c864 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    92f7532 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    aedc37a View commit details
    Browse the repository at this point in the history
  27. Only warn on failed gear test

    Derevin authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    4cecb2d View commit details
    Browse the repository at this point in the history
  28. Add option to skip preprint preview thumbnail but not toolmapping

    To be used on reprint button when we want toolmapping screen to show.
    BFW-4568
    tomasjakubik authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    ad873dd View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    5fb731a View commit details
    Browse the repository at this point in the history
  30. Disable sending crashdumps by default

    We don't have consent from the user right now and they are not
    encrypted. Shouldn't go to "production".
    
    BFW-3468.
    vorner authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    42326ac View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    823ae0b View commit details
    Browse the repository at this point in the history
  32. Remove uploading dumps to server

    Derevin authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    ad67efc View commit details
    Browse the repository at this point in the history
  33. Remove CheckRemotes

    dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    51348e6 View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    aaab7fc View commit details
    Browse the repository at this point in the history
  35. git subrepo pull --force lib/Prusa-Error-Codes

    subrepo:
      subdir:   "lib/Prusa-Error-Codes"
      merged:   "14b01d0fe3"
    upstream:
      origin:   "[email protected]:prusa3d/Prusa-Error-Codes.git"
      branch:   "master"
      commit:   "14b01d0fe3"
    git-subrepo:
      version:  "0.4.6"
      origin:   "https://github.com/Homebrew/brew"
      commit:   "d3d51d344"
    dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    c476486 View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    4faf641 View commit details
    Browse the repository at this point in the history
  37. Fix dangerous SensorData::Value to not mix float and int values

    It was passing int through union to be printed as float.
    tomasjakubik authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    506a82f View commit details
    Browse the repository at this point in the history
  38. Configuration menu
    Copy the full SHA
    4ad2b2f View commit details
    Browse the repository at this point in the history
  39. Fix EWMA used in Dwarf to smooth MCU temperature

    Other temperatures are processed by Dwarf's Marlin, but EWMA used for
    MCU had bad precision and stayed too far from stable value.
    tomasjakubik authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    5f40830 View commit details
    Browse the repository at this point in the history
  40. Fix when user is too fast during loadcell test

    Don't allow user to click continue too soon
    Derevin authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    234f917 View commit details
    Browse the repository at this point in the history
  41. Configuration menu
    Copy the full SHA
    b704d12 View commit details
    Browse the repository at this point in the history
  42. Configuration menu
    Copy the full SHA
    8bb5551 View commit details
    Browse the repository at this point in the history
  43. Configuration menu
    Copy the full SHA
    0cca13f View commit details
    Browse the repository at this point in the history
  44. Configuration menu
    Copy the full SHA
    744ce93 View commit details
    Browse the repository at this point in the history
  45. Fix script to generate fonts

    LukasLendvorsky authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    f6210db View commit details
    Browse the repository at this point in the history
  46. Configuration menu
    Copy the full SHA
    7a14c03 View commit details
    Browse the repository at this point in the history
  47. Configuration menu
    Copy the full SHA
    e6177de View commit details
    Browse the repository at this point in the history
  48. Configuration menu
    Copy the full SHA
    e8f9d18 View commit details
    Browse the repository at this point in the history
  49. Use .mo for translations

    LukasLendvorsky authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    7efa5bb View commit details
    Browse the repository at this point in the history
  50. Set buffer to read translations to 64B

    Reads are random and mostly few bytes. It will be more efficient to read less bytes
    LukasLendvorsky authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    6c6093d View commit details
    Browse the repository at this point in the history
  51. Configuration menu
    Copy the full SHA
    2c7b86f View commit details
    Browse the repository at this point in the history
  52. Configuration menu
    Copy the full SHA
    b6c4dda View commit details
    Browse the repository at this point in the history
  53. Fix languages test

    - add  compile options,
    - switch between extflash/cpuflash with ifdef to avoid colisions
    LukasLendvorsky authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    637b00f View commit details
    Browse the repository at this point in the history
  54. PR fixes

    LukasLendvorsky authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    6922f7c View commit details
    Browse the repository at this point in the history
  55. Fix load/unload to end with false on timeout and disable hotend

    Hotend is disabled only if timeout happens when not printing.
    BFW-4634
    tomasjakubik authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    d94a3b2 View commit details
    Browse the repository at this point in the history
  56. xl multi: Revert menu index when returning to filament menu

    When returning from DialogToolActionBox, the filament menu has lost
    selection index and when clicked ended in hardfault.
    tomasjakubik authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    e357d6e View commit details
    Browse the repository at this point in the history
  57. Prevent FSM race when exiting print and autoload at the same time

    BFW-4662
    Marlin server's State::Exit wound destroy FSM0 while FSM1 was
    autoloading filament. Postpone exiting print until load/unload is done.
    tomasjakubik authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    700d25d View commit details
    Browse the repository at this point in the history
  58. Add MCU temperature to MINI's sensor info screen

    BFW-4677
    tomasjakubik authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    ebc5db3 View commit details
    Browse the repository at this point in the history
  59. Configuration menu
    Copy the full SHA
    de6e936 View commit details
    Browse the repository at this point in the history
  60. Configuration menu
    Copy the full SHA
    b85dc63 View commit details
    Browse the repository at this point in the history
  61. Configuration menu
    Copy the full SHA
    4392661 View commit details
    Browse the repository at this point in the history
  62. Revert "Notify user to pull out the filament on unload"

    This reverts commit 0ad216a56592a90d5ac1eac5f72b90bb952a329c.
    
    Revert to 4.7.2 behavior with no dialog after unload.
    
    Part of: BFW-4638
    vladamatena authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    a0a3d3a View commit details
    Browse the repository at this point in the history
  63. Prevent watchdog reset during power panic

    Do not rely on osDelay when waiting for power to run out as power panic
    task permanently calls xTaskAbortDelay on default task.
    
    Fixes: BFW-4667
    vladamatena authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    da80e81 View commit details
    Browse the repository at this point in the history
  64. Ensure FW version is null terminated

    Ensure valid_printer_settings.latest_fw_version is null terminated even
    if the fw version parsed from gcode was truncated to fit into buffer.
    
    Part of: BFW-4665
    vladamatena authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    f98f3d4 View commit details
    Browse the repository at this point in the history
  65. Fix required version display

    - Use string version as parsed from gcode
    - Remove numeric version from valid_printer_settings
    
    Part of: BFW-4665
    vladamatena authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    7c1ff06 View commit details
    Browse the repository at this point in the history
  66. Refactor "newer firmware required"

    - Merge message and fw version string to avoid multiple text elements.
    - Merge "newer firmware required" to message array
    
    Part of: BFW-4665
    vladamatena authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    a17389a View commit details
    Browse the repository at this point in the history
  67. Fit "New firmware available" on mini screen

    Part of: BFW-4665
    vladamatena authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    d0bd620 View commit details
    Browse the repository at this point in the history
  68. Configuration menu
    Copy the full SHA
    4b078e1 View commit details
    Browse the repository at this point in the history
  69. clang-format: Set InsertBraces: true

    Forces braces even for one-line if, else, for, do and while.
    lukash authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    053efc5 View commit details
    Browse the repository at this point in the history
  70. Configuration menu
    Copy the full SHA
    11025d2 View commit details
    Browse the repository at this point in the history
  71. Pause processing of serial commands while pausing and resuming

    This prevents race conditions when octoprint queues commands in between pause/resume sequence
    LukasLendvorsky authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    5ce8053 View commit details
    Browse the repository at this point in the history
  72. Configuration menu
    Copy the full SHA
    c90b066 View commit details
    Browse the repository at this point in the history
  73. Configuration menu
    Copy the full SHA
    1b4744d View commit details
    Browse the repository at this point in the history
  74. M604 docs

    LukasLendvorsky authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    88b4c23 View commit details
    Browse the repository at this point in the history
  75. Add WindowProgressCircles

    Derevin authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    6f1b958 View commit details
    Browse the repository at this point in the history
  76. Configuration menu
    Copy the full SHA
    4a7b42e View commit details
    Browse the repository at this point in the history
  77. Provide print start, end timestamps as marlin vars

    Part of: BFW-4410
    vladamatena authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    39ffd2f View commit details
    Browse the repository at this point in the history
  78. Keep final print end time

    Ensure print end time is not updated after print finished.
    vladamatena authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    7d02677 View commit details
    Browse the repository at this point in the history
  79. Add time to MINI's time settings menu

    It is shown only when time is valid. MINI needs network access.
    tomasjakubik authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    c1c51dd View commit details
    Browse the repository at this point in the history
  80. Configuration menu
    Copy the full SHA
    c9f5688 View commit details
    Browse the repository at this point in the history
  81. Configuration menu
    Copy the full SHA
    ed47d6a View commit details
    Browse the repository at this point in the history
  82. Configuration menu
    Copy the full SHA
    eb91aa6 View commit details
    Browse the repository at this point in the history
  83. Configuration menu
    Copy the full SHA
    fdedb2c View commit details
    Browse the repository at this point in the history
  84. Add set functions to Rect16

    Derevin authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    c6609d3 View commit details
    Browse the repository at this point in the history
  85. Add a separate index for consumed material setting

    To handle skipped tools in gcode correctly
    Derevin authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    1ddf9b3 View commit details
    Browse the repository at this point in the history
  86. Add wipe tower info to end result

    Derevin authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    c4bd0f3 View commit details
    Browse the repository at this point in the history
  87. handle correctly G80 in MK3 compatibility mode

    When running older MK3 gcode on MK4 it would cause printing of the purge
    line in the air and it would cause the print to fail.
    
    This only happens on older gcodes from older slicer. When slicing for
    MK3 (or for MK4) now the slicer puts `G1 Z0.2` instruction to move the
    Z-axis to 0.2.
    
    In MK3 this happend automatically in the `go_home_with_z_lift` function,
    which is called after MBL. The function sets the Z-axis to the minimal
    value (Z_MIN_POS - 0.15 in the codebase). We set the Z_MIN_POS to 0,
    which would probably didn't end well, so we set the height manually.
    Tomcus authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    dcc9c07 View commit details
    Browse the repository at this point in the history
  88. Configuration menu
    Copy the full SHA
    cd4fa09 View commit details
    Browse the repository at this point in the history
  89. Check for file validity in PrintPreview main dialog

    When transfer failed during the PrintPreview dialog main screen, it was not checked and the user could start the print even when the file is and never will be whole.
    
    BFW-4539
    CZDanol-prusa authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    5c2f231 View commit details
    Browse the repository at this point in the history
  90. Configuration menu
    Copy the full SHA
    c53ea4a View commit details
    Browse the repository at this point in the history
  91. Configuration menu
    Copy the full SHA
    156ba66 View commit details
    Browse the repository at this point in the history
  92. Configuration menu
    Copy the full SHA
    a8658a6 View commit details
    Browse the repository at this point in the history
  93. Configuration menu
    Copy the full SHA
    f9c0b2e View commit details
    Browse the repository at this point in the history
  94. Increase PlainGCodeReader::header_metadata_size

    BFW-4622
    CZDanol-prusa authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    128b58a View commit details
    Browse the repository at this point in the history
  95. Reset print progress to 0 in PrintPreview

    BFW-4546
    CZDanol-prusa authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    be91859 View commit details
    Browse the repository at this point in the history
  96. Fix M73_PE formatting

    CZDanol-prusa authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    3a31978 View commit details
    Browse the repository at this point in the history
  97. Configuration menu
    Copy the full SHA
    3ffbcb2 View commit details
    Browse the repository at this point in the history
  98. MCU temperatures

    LukasLendvorsky authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    05b5dcb View commit details
    Browse the repository at this point in the history
  99. Revert "temporary: Mark build from release branch a BETA"

    This reverts commit 56082083aaf9c1aa12bd6045727252ed2d3723f1.
    dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    4ac0968 View commit details
    Browse the repository at this point in the history
  100. Configuration menu
    Copy the full SHA
    97bb803 View commit details
    Browse the repository at this point in the history
  101. Configuration menu
    Copy the full SHA
    c95934a View commit details
    Browse the repository at this point in the history
  102. Call it a RC1

    dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    530525e View commit details
    Browse the repository at this point in the history
  103. Revert "Adding Snake to MK3.5 & MINI (FirstLayer included)"

    This reverts commit a8b6bfd0a386cfe1d61319d323a8c1812154a0f1.
    dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    25879e5 View commit details
    Browse the repository at this point in the history
  104. Configuration menu
    Copy the full SHA
    4825553 View commit details
    Browse the repository at this point in the history
  105. Configuration menu
    Copy the full SHA
    b2430f5 View commit details
    Browse the repository at this point in the history
  106. Configuration menu
    Copy the full SHA
    78eaa90 View commit details
    Browse the repository at this point in the history
  107. Configuration menu
    Copy the full SHA
    8e4b310 View commit details
    Browse the repository at this point in the history
  108. Avoid FSM BSOD in specific situation

    - Print preview is active
    - Autoload is triggered by inserting filament
    - USB flash drive is removed
    
    Printer would try to abort print, which would try to destroy FSM0 while FSM1 is active, that is big no-no.
    LukasLendvorsky authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    847bdc0 View commit details
    Browse the repository at this point in the history
  109. Fix wrong english text

    LukasLendvorsky authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    cc7a911 View commit details
    Browse the repository at this point in the history
  110. Revert "Update translation template file"

    This reverts commit 68846909b160ca401dd70890745d8dab35e9e6ff.
    dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    42e7f1a View commit details
    Browse the repository at this point in the history
  111. Configuration menu
    Copy the full SHA
    802e5cf View commit details
    Browse the repository at this point in the history
  112. Configuration menu
    Copy the full SHA
    7fb0d80 View commit details
    Browse the repository at this point in the history
  113. Configuration menu
    Copy the full SHA
    b535b32 View commit details
    Browse the repository at this point in the history
  114. Update fonts

    LukasLendvorsky authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    76af812 View commit details
    Browse the repository at this point in the history
  115. Fix capitals in CZ selftest

    LukasLendvorsky authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    a560aa0 View commit details
    Browse the repository at this point in the history
  116. Increase number of strings

    LukasLendvorsky authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    08cde78 View commit details
    Browse the repository at this point in the history
  117. MINI: Create multiple variants, each with just ONE language

    Two languges doesn't fit no more
    LukasLendvorsky authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    b2a62e7 View commit details
    Browse the repository at this point in the history
  118. Remove outdated translations

    LukasLendvorsky authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    d3f991a View commit details
    Browse the repository at this point in the history
  119. Remove unused EN translation

    LukasLendvorsky authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    89b255b View commit details
    Browse the repository at this point in the history
  120. Configuration menu
    Copy the full SHA
    5628c77 View commit details
    Browse the repository at this point in the history
  121. Update translations

    LukasLendvorsky authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    f777fb0 View commit details
    Browse the repository at this point in the history
  122. Configuration menu
    Copy the full SHA
    5bbbd81 View commit details
    Browse the repository at this point in the history
  123. Configuration menu
    Copy the full SHA
    d14f769 View commit details
    Browse the repository at this point in the history
  124. Configuration menu
    Copy the full SHA
    6d78cd2 View commit details
    Browse the repository at this point in the history
  125. Make it RC2

    dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    35495ce View commit details
    Browse the repository at this point in the history
  126. Configuration menu
    Copy the full SHA
    e8e383c View commit details
    Browse the repository at this point in the history
  127. Configuration menu
    Copy the full SHA
    03e7a67 View commit details
    Browse the repository at this point in the history
  128. Make it RC3

    dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    20ccf98 View commit details
    Browse the repository at this point in the history
  129. Configuration menu
    Copy the full SHA
    a0f0e83 View commit details
    Browse the repository at this point in the history
  130. Configuration menu
    Copy the full SHA
    c313b28 View commit details
    Browse the repository at this point in the history
  131. fix: Enable f_sensor_side footer

    Derevin authored and dragomirecky committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    f26c91b View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2023

  1. fix(prusalink): increase nonce valid period

    The initial valid period for the HTTP Digest Auth nonce was too low (at
    5 seconds).
    This make it impossible to log into PrusaLink when using Safari, a
    saner value of 300 (chosen because it's Apache's default value) does not
    hinder security and fixes the issue with Safari-based browsers (macOS,
    ipadOS, iOS).
    
    See prusa3d#3287 for more
    details.
    pyrho authored and vorner committed Dec 4, 2023
    Configuration menu
    Copy the full SHA
    586d292 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    15d5ae0 View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2023

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

Commits on Dec 18, 2023

  1. Add missing newline to mac output on M46 command (prusa3d#3566)

    * Add missing newline to mac output on M46 command
    bkerler authored Dec 18, 2023
    Configuration menu
    Copy the full SHA
    cf299fc View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2023

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

Commits on Dec 20, 2023

  1. Update bug_report.md text

    D.R.racer authored and DRracer committed Dec 20, 2023
    Configuration menu
    Copy the full SHA
    245e7e3 View commit details
    Browse the repository at this point in the history

Commits on Dec 21, 2023

  1. doc: Add contributing.md

    A carbon copy of the relevant part of Developer Guidelines from wiki.
    lukash authored and danopernis committed Dec 21, 2023
    Configuration menu
    Copy the full SHA
    eff8298 View commit details
    Browse the repository at this point in the history
  2. doc: Minor fixes to contributing.md

    lukash authored and danopernis committed Dec 21, 2023
    Configuration menu
    Copy the full SHA
    d9ba918 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fa7141c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e8faab9 View commit details
    Browse the repository at this point in the history
  5. Update README.md

    Add MINI+ and MK3.9 to the list of supported models.
    JakoobCZ authored and danopernis committed Dec 21, 2023
    Configuration menu
    Copy the full SHA
    53ae4e7 View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2023

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

Commits on Jan 11, 2024

  1. Configuration menu
    Copy the full SHA
    8b265a6 View commit details
    Browse the repository at this point in the history
  2. Improve handling of option in M600 parser

    bkerler authored and vorner committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    2137fb2 View commit details
    Browse the repository at this point in the history
  3. Set simulator icount to 2 for stability and add usbserial option for …

    …better gcode debugging
    bkerler authored and vorner committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    dfc2bc6 View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2024

  1. Configuration menu
    Copy the full SHA
    fda58ec View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0ba6a80 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2024

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

Commits on Feb 9, 2024

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

Commits on Feb 13, 2024

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

Commits on Feb 14, 2024

  1. Fix safetytimer reset on setting interval

    bkerler authored and CZDanol committed Feb 14, 2024
    Configuration menu
    Copy the full SHA
    7f6c0e8 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2024

  1. Fixes wrong firmware info for MK3.5

    bkerler authored and CZDanol committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    7292197 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    860909b View commit details
    Browse the repository at this point in the history
  3. Fix max temp error message

    bkerler authored and CZDanol committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    b3ee47a View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2024

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

Commits on Mar 5, 2024

  1. Configuration menu
    Copy the full SHA
    94a5daa View commit details
    Browse the repository at this point in the history
  2. Add string argument for gcode M0

    bkerler authored and danopernis committed Mar 5, 2024
    Configuration menu
    Copy the full SHA
    b08469c View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2024

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

Commits on Mar 14, 2024

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

Commits on Mar 20, 2024

  1. fix: typo in internal server error

    joachimklug authored and danopernis committed Mar 20, 2024
    3 Configuration menu
    Copy the full SHA
    7c651de View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2024

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