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
2 changes: 1 addition & 1 deletion deploy/runtime/versions.lk
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function variable_name_change(new, old){
value(new, oldvalue(old), 'Variable name changed from \"' + old + '\" to \"' + new + '\"');
}

version_upgrade{'2026.2.19'} = define() {
version_upgrade{'2026.7.3'} = define() {
const cfg = config();

is_itc_fin = ( cfg.fin == 'Single Owner' || cfg.fin == 'Leveraged Partnership Flip' || cfg.fin == 'All Equity Partnership Flip' || cfg.fin == 'Sale Leaseback' || cfg.fin == 'Merchant Plant' || cfg.fin == 'Community Solar' || cfg.fin == 'Host Developer');
Expand Down
5 changes: 4 additions & 1 deletion src/main_add.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ static SamApp::ver releases[] = {
//intermediate version numbers are required in this list in order for the version upgrade script (versions.lk) to work correctly
//please clarify the reason for the new version in a comment. Examples: public release, variable changes, internal release, public beta release, etc.
//the top version should always be the current working version
{ 2026, 7, 3 }, // 2026.7.3 public release

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should the release candidate be 2026, 6, 24 or do you want to use 2026, 7, 3 for full release for project file updating?

{ 2026, 5, 15 }, // Agrivoltaics beta testing version
{ 2026, 2, 19 }, // Placeholder for OR Tools version upgrade testing (replace with release version number)
{ 2025, 10, 27}, //2025.10.27 ssc 303 public beta
{ 2025, 9, 19 }, // Placeholder for PVWatts-Battery upgrade testing (replace with release version number)
Expand Down Expand Up @@ -267,7 +269,8 @@ class SplashScreen : public wxDialog
//dc.SetBackground(wxBrush(wxColour(182, 86, 42))); // Thanksgiving color palette https://www.color-hex.com/color-palette/27134
//dc.SetBackground(wxBrush(wxColour(49, 212, 179))); // 10/31/2023
//dc.SetBackground(wxBrush(wxColour(255, 200, 45))); // 11/1/2024 University of Kansas KU Jayhawks
dc.SetBackground(wxBrush(wxColour(36, 70, 68))); // 04/02/2025 Muted teal
//dc.SetBackground(wxBrush(wxColour(36, 70, 68))); // 04/02/2025 Muted teal
dc.SetBackground(wxBrush(wxColour(230, 146, 0))); // 06/18/2026 NLR Sun

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lovely color !


dc.Clear();

Expand Down
Loading