Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
# Change Log
## [3.17.2](https://github.com/ProjectCeleste/Celeste.Launcher/releases/tag/v3.17.2) (2026-02-21)
- Enable Limit CPU Cores by default - CWO333

## [3.17.1](https://github.com/ProjectCeleste/Celeste.Launcher/releases/tag/v3.17.1) (2026-02-14)
- Fixed Launcher Crashing if Color Picker is used before a Game Scan (thanks CWO333)

## [3.17.0](https://github.com/ProjectCeleste/Celeste.Launcher/releases/tag/v3.17.0) (2026-02-14)
- Add ViewLog button to error messageboxes (thanks NCSGeek)

## [3.16.5](https://github.com/ProjectCeleste/Celeste.Launcher/releases/tag/v3.16.5) (2025-10-29)
- Fixed a bug with Steam converter that caused the launcher to crash (thanks CWO333)

Expand Down
4 changes: 3 additions & 1 deletion Celeste_Launcher_Gui/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ public class UserConfig
[XmlElement(ElementName = "IsDiagnosticMode")]
public bool IsDiagnosticMode { get; set; }

public bool LimitCPUCores { get; set; }
[DefaultValue(true)]
[XmlElement(ElementName = "LimitCPUCores")]
public bool LimitCPUCores { get; set; } = true;

public static UserConfig Load(string path)
{
Expand Down