Skip to content

Commit

Permalink
feat: official support for cura 5.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MaSch0212 committed Aug 14, 2024
1 parent 321b240 commit 5b42b7f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions docs/release-notes/v1.7.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
The following changes were made in this version:

| Type | Description |
| ---- | ----------- |
| feature | CuraManager now officially supports Cura version 5.8.0. |

[comment]: # (Use one of the following types: feature, bugfix, tech)
2 changes: 1 addition & 1 deletion src/CuraManager/CuraManager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<ApplicationIcon>../../resources/CuraManager.ico</ApplicationIcon>

<!-- Package Info -->
<Version>1.7.1</Version>
<Version>1.7.2</Version>
<Authors>Marc Schmidt</Authors>
<Copyright>Copyright © 2019 - $([System.DateTime]::Now.ToString('yyyy')) $(Authors)</Copyright>
<SupportedOSPlatform>windows</SupportedOSPlatform>
Expand Down
2 changes: 1 addition & 1 deletion src/CuraManager/Services/CuraService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class CuraService(ISettingsService settingsService) : ICuraService
Environment.SpecialFolder.ApplicationData
);

public Version LatestSupportedCuraVersion { get; } = new Version(5, 7, 1, 0);
public Version LatestSupportedCuraVersion { get; } = new Version(5, 8, 0, 0);

internal CuraService()
: this(ServiceContext.GetService<ISettingsService>()) { }
Expand Down

0 comments on commit 5b42b7f

Please sign in to comment.