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

Fix small area infill flow compensation (graph version) causing some lines to not extrude (#4374) #4399

Open
wants to merge 5,873 commits into
base: nightly_dev
Choose a base branch
from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Jan 3, 2024

  1. fix some values and compatible conditions

    - fix value of branch diameter angle of the organic support
    - fix overhang speed values
    macdylan committed Jan 3, 2024
    Configuration menu
    Copy the full SHA
    eeb6aaf View commit details
    Browse the repository at this point in the history
  2. Apply rotation angle given by style for new text object

    Turn off feature 'use_surface' for new text object
    Jony01 committed Jan 3, 2024
    Configuration menu
    Copy the full SHA
    1cb156c View commit details
    Browse the repository at this point in the history
  3. Merge pull request prusa3d#12018 from macdylan/snapmaker-profiles

    update snapmaker profiles
    rtyr authored Jan 3, 2024
    Configuration menu
    Copy the full SHA
    f6e2eea View commit details
    Browse the repository at this point in the history
  4. Bumped up version

    rtyr authored Jan 3, 2024
    Configuration menu
    Copy the full SHA
    a061c50 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    285cb02 View commit details
    Browse the repository at this point in the history
  6. SPE-2054: Fixed missing infills on multi-part models caused by 3cb2f5f

    …reported in prusa3d#11721.
    
    The temporary variable used for reordering ExPolygons wasn't cleared, and it contained empty ExPolygons from previous reordering. This caused those empty ExPolygons replaced actual ExPolygons for infill.
    
    Another issue was that m_fill_expolygons was reordered, but m_fill_expolygons_bboxes were left untouched.
    hejllukas committed Jan 3, 2024
    Configuration menu
    Copy the full SHA
    7e889bb View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2024

  1. merge in progress:

     . arcs merged into a new structure (ArcPolyline)
    supermerill committed Jan 4, 2024
    Configuration menu
    Copy the full SHA
    05fe4a4 View commit details
    Browse the repository at this point in the history
  2. Fix missing braces around multi-line if ()

    Signed-off-by: Kristian Nielsen <[email protected]>
    knielsen authored and hejllukas committed Jan 4, 2024
    Configuration menu
    Copy the full SHA
    c7d31f9 View commit details
    Browse the repository at this point in the history
  3. Use memcpy instead of strncpy in GCodeFormatter::emit_string() to sil…

    …ence the warning.
    
    The warning was there because std::string_view::data() returns a pointer to a buffer that is not necessarily null-terminated. So, strncpy shouldn't be used on non-null-terminated buffers, but we always relied only on the buffer length, so it couldn't cause any issues.
    hejllukas committed Jan 4, 2024
    Configuration menu
    Copy the full SHA
    2c671d8 View commit details
    Browse the repository at this point in the history
  4. Replace some deprecated boost functions.

    Actually, all those deprecated functions were internally called those new functions. So there isn't any risk to use them directly.
    hejllukas committed Jan 4, 2024
    Configuration menu
    Copy the full SHA
    611afd9 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a27aea4 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    da88c2a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    124ce1c View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    ca811aa View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    eede1f1 View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2024

  1. Configuration menu
    Copy the full SHA
    b67c478 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    eb9b8c0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ff13a7c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e922fdc View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    141ae5a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    fe16f5b View commit details
    Browse the repository at this point in the history
  7. Better encoding check

    supermerill committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    18b51eb View commit details
    Browse the repository at this point in the history
  8. Silence warnings in ExtrusionSimulator about unused variables that we…

    …re there just for debugging purposes.
    hejllukas committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    f9825bb View commit details
    Browse the repository at this point in the history
  9. Remove unused variable path_length from GCodeGenerator::_extrude().

    This variable hasn't been used since the beginning.
    hejllukas committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    413241f View commit details
    Browse the repository at this point in the history
  10. Remove unused lambda capture plater in lambda function fix_and_update…

    …_progress() inside check_objects_after_cut().
    hejllukas committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    41aff15 View commit details
    Browse the repository at this point in the history
  11. Remove forgotten variable m_wifi_config_dialog_was_declined from Slic…

    …3r::GUI::GUI_App class.
    hejllukas committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    69b29a2 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    a98b976 View commit details
    Browse the repository at this point in the history
  13. Remove unused variable 'some_compatible' from ExtruderFilaments::upda…

    …te_compatible_internal().
    
    This variable hasn't been used since the beginning.
    hejllukas committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    7e8f45a View commit details
    Browse the repository at this point in the history
  14. Reorganize getArea() in TreeModelVolumes to silence the warning (<ano…

    …nymous> may be used uninitialized in this function).
    
    This warning was shown because the previous code was triggering a bug in GCC. More about the bug can be found here: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86465.
    hejllukas committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    229946a View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    2eddb80 View commit details
    Browse the repository at this point in the history
  16. SPE-2096: Fixed calculation of maximum wipe length in XY coordinates.

    Also, comparing the accumulated length of the path for wipe was incorrectly mixing scaled and unscaled distances.
    hejllukas committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    7ab3e54 View commit details
    Browse the repository at this point in the history

Commits on Jan 7, 2024

  1. merge in progress:

     . refactor gcode to use ArcPolyline & flip flag (from the ExtrusionEntityReference)
     . also add some new methods to ArcPolyline for gcode usage
     . sla format merge
    TODO:
     . coolingbuffer arc parsing
    supermerill committed Jan 7, 2024
    Configuration menu
    Copy the full SHA
    88ada34 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2024

  1. Rewrite retraction.t to c++

    SachCZ committed Jan 8, 2024
    Configuration menu
    Copy the full SHA
    852fadd View commit details
    Browse the repository at this point in the history
  2. Rewrite gcode.t to c++

    SachCZ committed Jan 8, 2024
    Configuration menu
    Copy the full SHA
    6e871a8 View commit details
    Browse the repository at this point in the history
  3. Rewrite layers.t to c++

    SachCZ committed Jan 8, 2024
    Configuration menu
    Copy the full SHA
    3e28ea3 View commit details
    Browse the repository at this point in the history
  4. Remove forgotten t/skirt_brim.t.

    The test is already ported to c++ in tests/fff_print/test_skirt_brim.cpp.
    SachCZ committed Jan 8, 2024
    Configuration menu
    Copy the full SHA
    87e9538 View commit details
    Browse the repository at this point in the history
  5. Rewrite xs/t/10_line.t to c++

    SachCZ committed Jan 8, 2024
    Configuration menu
    Copy the full SHA
    f78ab3e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    37a707b View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    9164dd5 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    6b01ae3 View commit details
    Browse the repository at this point in the history
  9. Remove obsolete perl files

    SachCZ committed Jan 8, 2024
    Configuration menu
    Copy the full SHA
    f286876 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    6b0dcc6 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    a21e442 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    1f88b49 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    6e6cf80 View commit details
    Browse the repository at this point in the history
  14. Remove Slic3r.pm

    SachCZ committed Jan 8, 2024
    Configuration menu
    Copy the full SHA
    bf7901a View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    b287bbc View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    0b39749 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    d12146e View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    18c2338 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    f9bc7f3 View commit details
    Browse the repository at this point in the history
  20. Merge pull request prusa3d#11867 from slice-engine-dev/PrusaSlicer_an…

    …kerMake_engine_august
    
    add a new machine named M5C for ankermake
    rtyr authored Jan 8, 2024
    Configuration menu
    Copy the full SHA
    0a6c50a View commit details
    Browse the repository at this point in the history
  21. Bumped up version.

    rtyr authored Jan 8, 2024
    Configuration menu
    Copy the full SHA
    61d4ed1 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    97c3679 View commit details
    Browse the repository at this point in the history
  23. Added M5C printer.

    rtyr authored Jan 8, 2024
    Configuration menu
    Copy the full SHA
    d147a41 View commit details
    Browse the repository at this point in the history
  24. Added M5C resources.

    rtyr authored Jan 8, 2024
    Configuration menu
    Copy the full SHA
    8fe827b View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2024

  1. Fixed typo in a tooltip

    lukasmatena committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    6bd9c50 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2024

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

Commits on Jan 15, 2024

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

Commits on Jan 17, 2024

  1. Configuration menu
    Copy the full SHA
    eff53d4 View commit details
    Browse the repository at this point in the history
  2. Smooth z-hop curve to avoid unreasonably high jerk setting.

    * Replace the ramping travel with a smooth ramping travel on marlin 2 under the right circumstances.
    SachCZ committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    24e3254 View commit details
    Browse the repository at this point in the history
  3. Implement ramping layer change using a tag in gcode

    During layer change, instead of generating the gcode, generate a placeholder tag. Then at the end of layer processing replace this tag with a ramping travel move.
    This solves the issue, that one does not know the starting point of the current layer where the layer change gcode would be originally generate.
    The ramping layer changes uses smoothing of the ramping travel. Also it is adjusted in such a way that it increases the ramp angle when the travel is too short, to always reach the next layer.
    SachCZ committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    7f397cd View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ff30d7a View commit details
    Browse the repository at this point in the history
  5. Fix warnings in Travels tests.

    hejllukas authored and SachCZ committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    5858cbf View commit details
    Browse the repository at this point in the history
  6. Move ObjectLayerToPrint from GCodeGenerator to outside to allow using…

    … forward declaration.
    hejllukas authored and SachCZ committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    317db5f View commit details
    Browse the repository at this point in the history
  7. Rename m_last_obj_copy to m_current_instance and use struct instead o…

    …f std::pair.
    
    Also, instead of storing the shift of the instance, store the instance index.
    hejllukas authored and SachCZ committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    1b0ba60 View commit details
    Browse the repository at this point in the history
  8. Use forward declarations in Travel.hpp.

    hejllukas authored and SachCZ committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    dbd0369 View commit details
    Browse the repository at this point in the history
  9. Use max value of double instead of std::optional in get_first_crossed…

    …_line_distance() and get_obstacle_adjusted_slope_end().
    hejllukas authored and SachCZ committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    2fc9299 View commit details
    Browse the repository at this point in the history
  10. Implement lift before obstacles that take into account already extrud…

    …er extrusions on the current layer.
    
    Ignore the first intersection of the travel path with the object from which the travel starts.
    
    Created a new class TravelObstacleTracker, for wrapping all data structures related to lift before obstacles.
    hejllukas authored and SachCZ committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    da57489 View commit details
    Browse the repository at this point in the history
  11. Add to GCodeGenerator::last_position only when it has an assigned value.

    This behavior was there for a long time, but it was uncovered when std::optional was used.
    hejllukas authored and SachCZ committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    5ddcea8 View commit details
    Browse the repository at this point in the history
  12. During first layer change, do not actually move z.

    This enables the user to set his own z in start gcode. Fixes prusa3d#11843.
    SachCZ committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    f928372 View commit details
    Browse the repository at this point in the history
  13. Merge ms_lh_zhop_improvements into master.

    * Replace the ramping travel with a smooth ramping travel.
    * Replace helical layer changes with ramping layer changes.
    * Implement the "lift before obstacle" feature.
    SachCZ committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    2770b97 View commit details
    Browse the repository at this point in the history
  14. Fix retraction test

    SachCZ committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    97ba0fb View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    d110541 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    9f52d0a View commit details
    Browse the repository at this point in the history
  17. FIxed the issue but TMArrangeKernel needed changes

    fixing object function not favoring existing pile to stick to
    
    Trying to fix problem with shit+arrange not sticking to existing objects
    tamasmeszaros committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    e24be78 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    906f605 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    a084471 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2024

  1. Configuration menu
    Copy the full SHA
    1444e9c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b3beeb9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ecacefa View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    fb4e471 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d703a02 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b989fd7 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    82c53ae View commit details
    Browse the repository at this point in the history
  8. Fix for SPE-2056 : Wrong printer selection when add new logical print…

    …er but some physical printer is selected
    YuSanka committed Jan 18, 2024
    Configuration menu
    Copy the full SHA
    e46c711 View commit details
    Browse the repository at this point in the history
  9. ConfigWizard : Fixed get_preferred_printer_technology() function.

    This bug was caused a wrong selection of the new added printer,
    when some new vendor other then PrusaSlicer is added,
    but PrusaSlicer has installed SLA printers.
    (see SPE-2056)
    YuSanka committed Jan 18, 2024
    Configuration menu
    Copy the full SHA
    b067326 View commit details
    Browse the repository at this point in the history
  10. ComboBox: Fix for scrolling over a dropdown.

    It doesn't need to propagate the MouseWhile event to the parent.
    YuSanka committed Jan 18, 2024
    Configuration menu
    Copy the full SHA
    00a0883 View commit details
    Browse the repository at this point in the history
  11. Fix for prusa3d#11988 : Drop down menus appear outside of PS and cann…

    …ot be opened again
    
    Note: Win specific
    YuSanka committed Jan 18, 2024
    Configuration menu
    Copy the full SHA
    6ff8537 View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2024

  1. SPE-2120: Fix crash caused by using GCodeGenerator::last_position whe…

    …n it doesn't have an assigned value.
    
    This behavior was there for a long time, but it was uncovered when std::optional was used.
    hejllukas committed Jan 22, 2024
    Configuration menu
    Copy the full SHA
    cda2446 View commit details
    Browse the repository at this point in the history
  2. SPE-2112 : Don't check an object units, when it was loaded from file …

    …with known units (3mf)
    YuSanka committed Jan 22, 2024
    Configuration menu
    Copy the full SHA
    85fa892 View commit details
    Browse the repository at this point in the history
  3. prusa3d#12000: Fixes incorrect detection of supported OpenGL version …

    …(SPE-2092)
    
    1) Force OpenGL 3.2 as minimum required. If the graphic card does not support it, automatically switch to software renderer.
    
    2) command line option: --opengl-version=X.Y -> allows to select core profile of version X.Y.
    
    3) command line option: --opengl-compatibility -> allows to select compatibility profile of the highest OpenGL version supported by the graphic card.
    
    4) command line option: --opengl-debug -> enable OpenGL debug output on card supporting OpenGL 4.3 or higher (output on console).
    enricoturri1966 authored and lukasmatena committed Jan 22, 2024
    Configuration menu
    Copy the full SHA
    1832c83 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3cab0cb View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7096abe View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2024

  1. Configuration menu
    Copy the full SHA
    8cbea49 View commit details
    Browse the repository at this point in the history
  2. Unify GCodeGenerator travel to first layer position.

    * Fixes SPE-2116. The reason for this bug was forgotten change in
      WipeTowerIntegration after change in gcode.cpp.
    * Prevents future similar bugs by unifing the functionality to a method.
    SachCZ committed Jan 23, 2024
    Configuration menu
    Copy the full SHA
    812c40e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    194d53e View commit details
    Browse the repository at this point in the history
  4. Fix: Use toolchange z instead of writer z to restore z on wipe tower.

    Writer z can be set in custom toolchange gcode and than the restoration
    is invalid.
    SachCZ committed Jan 23, 2024
    Configuration menu
    Copy the full SHA
    7f42308 View commit details
    Browse the repository at this point in the history
  5. SPE-2120: Fix another crash caused by using GCodeGenerator::last_posi…

    …tion when it doesn't have an assigned value.
    
    This behavior was there for a long time, but it was uncovered when std::optional was used.
    hejllukas committed Jan 23, 2024
    Configuration menu
    Copy the full SHA
    7d31f8c View commit details
    Browse the repository at this point in the history
  6. Model: Improved function looks_like_multipart_object().

    Check transformed bounding boxes of loaded objects instead of z_min of bounding boxes.
    + BoundingBox: added function shares_boundary() to detect if bounding boxes shares some boundary.
    
    Fix for prusa3d#11547 - .3mf files with similar sized components aren't being defined as multi-part objects
    YuSanka committed Jan 23, 2024
    Configuration menu
    Copy the full SHA
    65525b0 View commit details
    Browse the repository at this point in the history
  7. SPE-2103

    Make snap-shot to undo/redo stack only on release slider
    
    Connected with attributes:
    Text/advanced(char gap, line gap, boldness, skew ratio)
    SVG(size)
    
    Also change range for Boldness. VRT font-Ascent.
    (different font may have different slider value range)
    
    Fix line gap (it was denied when per glyph was false)
    Jony01 committed Jan 23, 2024
    Configuration menu
    Copy the full SHA
    ee3546b View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2024

  1. Configuration menu
    Copy the full SHA
    05312ca View commit details
    Browse the repository at this point in the history
  2. Error message when wlanapi.dll is missing

    Code improvements due to @lukasmatena code review.
    kocikdav authored and lukasmatena committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    e0e1afd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    31ad737 View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2024

  1. SPE-2092: Fixed OpenGL initialization when user specifies invalid val…

    …ue for command line option 'opengl-version'
    enricoturri1966 committed Jan 25, 2024
    Configuration menu
    Copy the full SHA
    df14f75 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2024

  1. Revert "Fix for prusa3d#11988 : Drop down menus appear outside of PS …

    …and cannot be opened again"
    
    This reverts commit 6ff8537. There is a non-trivial conflict
    when merging to master, let's redo the commit after the merge so it is clear in history.
    lukasmatena committed Jan 26, 2024
    Configuration menu
    Copy the full SHA
    69e0bc3 View commit details
    Browse the repository at this point in the history
  2. Revert "Revert "Fix for prusa3d#11988 : Drop down menus appear outsid…

    …e of PS and cannot be opened again""
    
    This reverts commit 69e0bc3.
    The reason the original commit was reverted was to get cleaner git history after
    merging master_27x into master. The change in this commit is implemented in master as b85e80c.
    lukasmatena committed Jan 26, 2024
    Configuration menu
    Copy the full SHA
    e5b9266 View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2024

  1. Fix wipe tower deretraction string.

    Return the previous behaviour for non priming toolchanges and
    handle priming toolchanges separately.
    SachCZ committed Jan 29, 2024
    Configuration menu
    Copy the full SHA
    4481525 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2e8ec7e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4a20dae View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2024

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

Commits on Feb 1, 2024

  1. SPE-1922: Place M600 after unretract to prevent printer returns at th…

    …e position that was already printed with the previous color.
    
    This fixes prusa3d#2672 caused by the default implementation of M600 that returns back to XY position before M600.
    Nohus authored and hejllukas committed Feb 1, 2024
    Configuration menu
    Copy the full SHA
    540b800 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2024

  1. Fix for prusa3d#12005 - 2.7.1: One particular .3mf project crashes wh…

    …en changing printer from XL to MK4
    
    Follow-up 23ffd34:
    Note, that crash was caused by missing update of the active extruder.
    YuSanka committed Feb 2, 2024
    Configuration menu
    Copy the full SHA
    c7fa6b0 View commit details
    Browse the repository at this point in the history
  2. Fix for SPE-2108 : Missing update when toggling "Show incompatible pr…

    …int and filament presets"
    YuSanka committed Feb 2, 2024
    Configuration menu
    Copy the full SHA
    131d870 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a3f7be2 View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2024

  1. Fixed update of extruder ComboBox on switching of application color m…

    …ode, when SLA-printer is selected.
    YuSanka committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    37ba024 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6f770ea View commit details
    Browse the repository at this point in the history
  3. WIP on sla overwrites

    tamasmeszaros authored and YuSanka committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    94fd937 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ef3493d View commit details
    Browse the repository at this point in the history
  5. Making progress with eliminating exceptions

    + Fixed : SpinCtrl for nullable int still does not work
    tamasmeszaros authored and YuSanka committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    7143190 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    91e67e2 View commit details
    Browse the repository at this point in the history
  7. SLA overrides: Fixed preset update, when config is loaded from old PS

    + Config.cpp: Fixed comparison of nil values
    YuSanka committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    e821490 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    3160b00 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    76439c2 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    7380f3f View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    9f21ffb View commit details
    Browse the repository at this point in the history
  12. Fix crash when switching printer profile

    while having "support point density" overridden
    tamasmeszaros authored and YuSanka committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    ae23ae4 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    d51eab6 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    7899501 View commit details
    Browse the repository at this point in the history
  15. Check of compatibilities for support_head_penetration<->support_head_…

    …width and
    
    support_head_front_diameter<->support_pillar_diameter is moved to sla_print.validation()
    YuSanka committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    a3bb026 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    9132323 View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2024

  1. Configuration menu
    Copy the full SHA
    a85a0a8 View commit details
    Browse the repository at this point in the history
  2. SPE-2098: Pass color_change_extruder also into Color Change G-code.

    Some minor refactoring of ProcessLayer::emit_custom_gcode_per_print_z();
    hejllukas committed Feb 6, 2024
    Configuration menu
    Copy the full SHA
    ff36128 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    145fb92 View commit details
    Browse the repository at this point in the history
  4. Separate color change handing from emit_custom_color_change_gcode_per…

    …_print_z() into emit_custom_color_change_gcode_per_print_z().
    hejllukas committed Feb 6, 2024
    Configuration menu
    Copy the full SHA
    1071645 View commit details
    Browse the repository at this point in the history
  5. SPE-2098: Pick a required extruder before a color change for multi-ex…

    …truder printers.
    
    When we need to perform a color change on an extruder that isn’t used within the layer, we perform a tool change to select the correct extruder. Then, we perform the color change, and finally, we perform another tool change to switch back to the original extruder.
    hejllukas committed Feb 6, 2024
    Configuration menu
    Copy the full SHA
    8ce089c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ad61f74 View commit details
    Browse the repository at this point in the history
  7. MK3.5 resources

    rtyr authored Feb 6, 2024
    Configuration menu
    Copy the full SHA
    89dd19b View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    c3ab2a2 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2024

  1. Configuration menu
    Copy the full SHA
    e403032 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    642535e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    601d61c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7fa632f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    69808c3 View commit details
    Browse the repository at this point in the history
  6. Fix for prusa3d#11991 - Filament selections do not appear on custom p…

    …rinter
    
    (SPE-2094)
    YuSanka authored and lukasmatena committed Feb 7, 2024
    Configuration menu
    Copy the full SHA
    78f4a6f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f64aea6 View commit details
    Browse the repository at this point in the history
  8. Fix SPE-2129

    prusa3d#12157
    
    (cherry picked from commit 309ec8c5fbcc0754f165b51e39e7c291da13ab77)
    Jony01 committed Feb 7, 2024
    Configuration menu
    Copy the full SHA
    8dc1d70 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2024

  1. Configuration menu
    Copy the full SHA
    3ef556f View commit details
    Browse the repository at this point in the history
  2. Resources for X3 and X4

    rtyr authored Feb 8, 2024
    Configuration menu
    Copy the full SHA
    0773b5c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    530f3b9 View commit details
    Browse the repository at this point in the history
  4. Switch orientation of passed into Voronoi generator, because previous…

    …ly were opposite.
    
    So previously, SOURCE_CATEGORY_SEGMENT_START_POINT and SOURCE_CATEGORY_SEGMENT_END_POINT were swapped.
    hejllukas committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    5f37d42 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4b6a637 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    fb84f31 View commit details
    Browse the repository at this point in the history
  7. Move ColoredLine struct and related boost traits into the header file…

    … of MultiMaterialSegmentation.
    hejllukas committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    23b7c41 View commit details
    Browse the repository at this point in the history
  8. Generalize all functions in VoronoiUtils to not depend on Arachne dat…

    …a structures.
    
    Also, move VoronoiUtils from Arachne namespace to Geometry namespace.
    hejllukas committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    ac33876 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    78108e6 View commit details
    Browse the repository at this point in the history
  10. Generalize all detection on invalid Voronoi diagrams to not depend on…

    … Arachne data structures.
    
    Also, all detections are moved from SkeletalTrapezoidation.cpp to Voronoi class.
    hejllukas committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    227e82a View commit details
    Browse the repository at this point in the history
  11. Generalize fixing of invalid Voronoi diagram by rotating back and forth.

    Now, this fixing operation can be applied to any Voronoi diagram constructed from segments.
    hejllukas committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    a358f13 View commit details
    Browse the repository at this point in the history
  12. SPE-1729: Try to compute the Voronoi diagram again on modified ExPoly…

    …gon when an invalid Voronoi diagram is produced during the calculation of the medial axis.
    
    There are several ExPolygons with very thin lines and holes formed by very close (1-5nm) vertices that are on the edge of our resolution. Those thin lines and holes are both unprintable and cause the Voronoi diagram to be invalid.
    So, we filtered out such thin lines and holes and tried to compute the Voronoi diagram again.
    hejllukas committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    8784ca0 View commit details
    Browse the repository at this point in the history
  13. Make the VoronoiUtils::compute_segment_cell_range() function to take …

    …a constant reference to VoronoiDiagram::cell_type instead of a mutable reference.
    hejllukas committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    24a497e View commit details
    Browse the repository at this point in the history
  14. SPE-1840: Rework multi-material segmentation to work directly on the …

    …Voronoi diagram without creating a copy of it.
    
    Previous algorithms assume that they can get an invalid Voronoi diagram. Because of that, during the multi-material segmentation, a copy of the Voronoi diagram was created, and there were several attempts to fix missing vertices and edges. But as it shows, this wasn't a good enough approach and sometimes led to several issues like bleeding layers.
    
    After generalization, our approach for detection and repairs of invalid Voronoi diagrams from Arachne, we could assume that multi-material segmentation gets non-invalid Voronoi diagrams.
    With this assumption, we reimplement multi-materials segmentation to work directly on the Voronoi diagram. That should make multi-material segmentation more stable.
    
    So, this should fix several issues like bleeding layers. Also, memory consumption should decrease by a lot. Also, there should be some speedup of multi-materials segmentation.
    hejllukas committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    76435e7 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    054e932 View commit details
    Browse the repository at this point in the history
  16. Fixed crash when loading invalid 3MFs (SPE-2135)

    The crash was introduced in 040a846, which completely threw away handling of the return value
    of the importer.load_model_from_file function and replaced it with weaker condition. The purpose
    of that change was to solve prusa3d#8401 (missing error message when loading different invalid 3MF).
    
    This commit reverts that change (and reintroduces prusa3d#8401). Handling of 3MF loading errors
    should be inside the importer.load_model_from_file function, where the check should be
    added later.
    lukasmatena committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    83a98d4 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    ee87330 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    11f6103 View commit details
    Browse the repository at this point in the history
  19. libslic3r compile

    supermerill committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    4f53cbd View commit details
    Browse the repository at this point in the history
  20. wip gui compile

    supermerill committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    80f7037 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2024

  1. wip

    supermerill committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    831b38b View commit details
    Browse the repository at this point in the history
  2. SPE-1813: Do not force object to stay on top of bed when scaling a si…

    …ngle volume from an instance
    enricoturri1966 authored and lukasmatena committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    5423971 View commit details
    Browse the repository at this point in the history
  3. SPE-1814: Fixed legend not automatically switching to color print vie…

    …w when color change is set in layer height bar for mmu printers
    enricoturri1966 authored and lukasmatena committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    f6027de View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4499361 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6f7349c View commit details
    Browse the repository at this point in the history
  6. Revert "Fix SPE-2129"

    This reverts commit 8dc1d70.
    lukasmatena committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    e09f6e5 View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2024

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

Commits on Feb 13, 2024

  1. Update for FI translations

    J3r0github authored and YuSanka committed Feb 13, 2024
    Configuration menu
    Copy the full SHA
    247f8e4 View commit details
    Browse the repository at this point in the history
  2. Update for BE translation

    lidacity authored and YuSanka committed Feb 13, 2024
    Configuration menu
    Copy the full SHA
    68dbdab View commit details
    Browse the repository at this point in the history
  3. Russian translation update

    Russian translation update PrusaSlicer 2.7.2-alpha2
    AndylgTom authored and YuSanka committed Feb 13, 2024
    Configuration menu
    Copy the full SHA
    3ed4360 View commit details
    Browse the repository at this point in the history
  4. Fixes in phrases

    lukasmatena committed Feb 13, 2024
    Configuration menu
    Copy the full SHA
    a20fb3b View commit details
    Browse the repository at this point in the history
  5. Localization: Updated POT

    + community dictionaries are merged with new POT
    YuSanka committed Feb 13, 2024
    Configuration menu
    Copy the full SHA
    1975e45 View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2024

  1. Configuration menu
    Copy the full SHA
    b2e8580 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8f192b6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    088212c View commit details
    Browse the repository at this point in the history
  4. Add lift to first travel move on layer. Add retraction_length 0 to te…

    …st, to avoid lifting back up and going back down.
    SachCZ committed Feb 14, 2024
    Configuration menu
    Copy the full SHA
    5f9f5be View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2024

  1. Configuration menu
    Copy the full SHA
    78f3077 View commit details
    Browse the repository at this point in the history
  2. Translations: Fix for some phrase

    + Updated POT and community dictionaries
    YuSanka committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    282ed37 View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2024

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

Commits on Feb 19, 2024

  1. Configuration menu
    Copy the full SHA
    0b4e406 View commit details
    Browse the repository at this point in the history
  2. Fix layer change smoothing

    SachCZ committed Feb 19, 2024
    Configuration menu
    Copy the full SHA
    12755cd View commit details
    Browse the repository at this point in the history
  3. Fix wipe before ramping travel

    SachCZ committed Feb 19, 2024
    Configuration menu
    Copy the full SHA
    e5656a8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3ba0b38 View commit details
    Browse the repository at this point in the history
  5. Fix missing deretraction coused by caching gcode writer. Use find and…

    … replace to remove the retraction if not required
    SachCZ committed Feb 19, 2024
    Configuration menu
    Copy the full SHA
    bc0fc8a View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2024

  1. Configuration menu
    Copy the full SHA
    1f324fd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    671d9eb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d7cd43e View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2024

  1. 2.7 compiles

    supermerill committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    bfe23a6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6867e17 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2024

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

Commits on Feb 23, 2024

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

Commits on Feb 24, 2024

  1. merge 2.7 with 2.5.59.8

    supermerill committed Feb 24, 2024
    Configuration menu
    Copy the full SHA
    fe65efe View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2024

  1. can open settings tabs

    supermerill committed Feb 25, 2024
    Configuration menu
    Copy the full SHA
    ac9d797 View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2024

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

Commits on Jul 4, 2024

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

Commits on Jul 5, 2024

  1. Fix rendering

    supermerill committed Jul 5, 2024
    Configuration menu
    Copy the full SHA
    25c9a93 View commit details
    Browse the repository at this point in the history
  2. merge fixes

    polyline split at
    skirt direction
    asserts
    supermerill committed Jul 5, 2024
    Configuration menu
    Copy the full SHA
    ad5cec2 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2024

  1. modify ExtrusionRole so it's easier to debug. (can show the names fro…

    …m the int in the debugger)
    
    Extrusionrole: new role: OverhangExternalPeriemter
    supermerill committed Jul 6, 2024
    Configuration menu
    Copy the full SHA
    be64011 View commit details
    Browse the repository at this point in the history
  2. merge fix: grayscale

    supermerill committed Jul 6, 2024
    Configuration menu
    Copy the full SHA
    4ea8472 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d56158d View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2024

  1. missing prusaslicer icon

    supermerill committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    3c0b9e0 View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2024

  1. Configuration menu
    Copy the full SHA
    14b2d62 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dff4f0b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9c23dd6 View commit details
    Browse the repository at this point in the history
  4. fix warning

    supermerill committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    7bca47b View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2024

  1. - Add perimeter_direction setting, to set the direction (CCW, CW) of …

    …contour and holes.
    
    - Fix perimeter direction on classic
    supermerill committed Jul 18, 2024
    Configuration menu
    Copy the full SHA
    9aa77b9 View commit details
    Browse the repository at this point in the history
  2. Dialog as warning when doing 100% sparse infill:

     - do you want only solid infill? -> solid_infill_every_layers
     - do you want sprase infill at 100% to use different speed/width/accel settings?
    supermerill committed Jul 18, 2024
    Configuration menu
    Copy the full SHA
    bafdca3 View commit details
    Browse the repository at this point in the history
  3. Fix refresh issues on gcode viewer.

    Also change some pointer to references, as they won't be deleted, as it's a member of plater.priv, and given in the constructor.
    supermerill committed Jul 18, 2024
    Configuration menu
    Copy the full SHA
    0a444c6 View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2024

  1. fix preferences gui

    also search & mode colors
    supermerill committed Jul 19, 2024
    Configuration menu
    Copy the full SHA
    36e86c7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7b37cbf View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2024

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

Commits on Jul 22, 2024

  1. Configuration menu
    Copy the full SHA
    e229e5f View commit details
    Browse the repository at this point in the history
  2. rework max_gcode_per_second:

     * add gcode_command_buffer (int, firmware command queue size)
     * add gcode_min_resolution (now gcode_resolution from prusa is converted to that) (now float or percent of perimeter width)
     * rename min_length into gcode_min_length (now float or percent of perimeter width)
     * new algorithm: use gcode_command_buffer to allow some leeway around max_gcode_per_second, with gcode_min_resolution as upper threshold and gcode_min_length as lower one.
     * use resolution_internal instead of gcode_resolution for support, generate_sparse_infill_polylines_for_anchoring
    supermerill committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    5b73301 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    820a9f9 View commit details
    Browse the repository at this point in the history
  4. merge: fix tab tree icons

    supermerill committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    165d753 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2024

  1. gcodeviewer: layer duration, chronology

     - fix merge: now refresh is handled more efficiently, not recomputing what's not needed.
     - fix merge: layer duration is now taken from m_layers_times instead of the Path (is it really better?)
     - chronology: now use the block times, instead of the machine, because the machine is not enough granular and is late
     - allow chronology to have min/max from layer selection
    supermerill committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    b7a74d4 View commit details
    Browse the repository at this point in the history
  2. fix voronoi repair

    supermerill committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    06779d3 View commit details
    Browse the repository at this point in the history
  3. merge fix: escape macro

    supermerill committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    4178cdb View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2024

  1. fix some issues about import from orca

    add another step to post-process the import.
    add import of 'make_overhang_printable' into 'overhangs_max_slope'
    drag-drop 3mf also detect bbs project, spawning the pop-up.
    supermerill committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    ce3d3bf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    eb999af View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2024

  1. Configuration menu
    Copy the full SHA
    142fe61 View commit details
    Browse the repository at this point in the history
  2. win 2.7 deps

    supermerill committed Aug 1, 2024
    Configuration menu
    Copy the full SHA
    ec1b4e6 View commit details
    Browse the repository at this point in the history
  3. fix stl_to_cpp

    supermerill committed Aug 1, 2024
    Configuration menu
    Copy the full SHA
    1c90f37 View commit details
    Browse the repository at this point in the history
  4. fix compare

    supermerill committed Aug 1, 2024
    Configuration menu
    Copy the full SHA
    e59e959 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    97b860f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3556df1 View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2024

  1. fix linux build

    supermerill committed Aug 4, 2024
    Configuration menu
    Copy the full SHA
    7dfc458 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a1a13da View commit details
    Browse the repository at this point in the history
  3. test linux and macos build

    force automake 1.16 for macos, as mpfr need at least the 1.16
    supermerill committed Aug 4, 2024
    Configuration menu
    Copy the full SHA
    ec7f81d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cb1062c View commit details
    Browse the repository at this point in the history
  5. Removed dependency on libtiff

    lukasmatena authored and supermerill committed Aug 4, 2024
    Configuration menu
    Copy the full SHA
    6a46fc6 View commit details
    Browse the repository at this point in the history
  6. only keep useful icons

    supermerill committed Aug 4, 2024
    Configuration menu
    Copy the full SHA
    73124cf View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    9163bab View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    a207d17 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    842cec9 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    fef68ef View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    ef7cf96 View commit details
    Browse the repository at this point in the history
  12. Can disabled 4 other settings (instead of -1 value):

     * overhangs_bridge_threshold
     * overhangs_bridge_upper_layers
     * perimeters_hole
     * support_material_bottom_interface_layers
    supermerill committed Aug 4, 2024
    Configuration menu
    Copy the full SHA
    787415d View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2024

  1. Fix range checks, other small improvements (prusa3d#4374)

    - Make the input range checks consistent with start_idx, end_idx of existing implementation
    - Make default extrusion factor 1.0f to prevent similar issues
    - Small readability improvements
    TheSlashEffect committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    95b2751 View commit details
    Browse the repository at this point in the history