Skip to content

Commit

Permalink
Merge pull request #6002 from BOINC/dpa_release_notes
Browse files Browse the repository at this point in the history
client: on version change, show notice with link to release notes
  • Loading branch information
AenBleidd authored Jan 10, 2025
2 parents 2bfad49 + 3646b0f commit 627e344
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions client/client_state.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -422,12 +422,13 @@ bool CLIENT_STATE::is_new_client() {
|| (core_client_version.minor != old_minor_version)
|| (core_client_version.release != old_release)
) {
msg_printf(NULL, MSG_INFO,
"Version change (%d.%d.%d -> %d.%d.%d)",
msg_printf_notice(0, true, 0,
"The BOINC client version has changed from %d.%d.%d to %d.%d.%d.<br>To see what's new, view the <a href=%s>Client release notes</a>.",
old_major_version, old_minor_version, old_release,
core_client_version.major,
core_client_version.minor,
core_client_version.release
core_client_version.release,
"https://github.com/BOINC/boinc/wiki/Client-release-notes"
);
new_client = true;
}
Expand Down

0 comments on commit 627e344

Please sign in to comment.