Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/COWD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ STELLAR_TYPE COWD::EvolveToNextPhase() {
stellarType = STELLAR_TYPE::OXYGEN_NEON_WHITE_DWARF;
}
else {
stellarType = ResolveSNIa();
stellarType = m_HeShellDetonation ? ResolveHeSD() : ResolveSNIa();
}
return stellarType;
}
4 changes: 3 additions & 1 deletion src/changelog.h
Original file line number Diff line number Diff line change
Expand Up @@ -1699,6 +1699,8 @@
// distribution (Manjaro), possibly C++ version specific. See issue 1441 for description of defect and repair details.
// 03.29.02 AB - March 16, 2026 - Defect repair:
// - Fix for issue 1463: sign error in the Claeys+2014 common-envelope lambda prescription
// 03.29.03 NRS - April 3, 2026 - Defect repair:
// - Fixed HeSDs not being recorded in the Supernovae logs (mentioned in issue 1350).
//
//
// Version string format is MM.mm.rr, where
Expand All @@ -1710,7 +1712,7 @@
// if MM is incremented, set mm and rr to 00, even if defect repairs and minor enhancements were also made
// if mm is incremented, set rr to 00, even if defect repairs were also made

const std::string VERSION_STRING = "03.29.02";
const std::string VERSION_STRING = "03.29.03";


# endif // __changelog_h__
Loading