Prep for the RC3 release of the desktop app

This commit is contained in:
Keavon Chambers 2026-01-26 17:32:58 -08:00
parent 5fd1a24f16
commit 84e9d8c192
2 changed files with 2 additions and 2 deletions

View File

@ -1049,7 +1049,7 @@ impl MessageHandler<PortfolioMessage, PortfolioMessageContext<'_>> for Portfolio
}
PortfolioMessage::RequestStatusBarInfoLayout => {
#[cfg(not(target_family = "wasm"))]
let widgets = vec![TextLabel::new("Graphite 1.0.0-RC2").disabled(true).widget_instance()];
let widgets = vec![TextLabel::new("Graphite 1.0.0-RC3").disabled(true).widget_instance()]; // TODO: After the RCs, call this "Graphite (beta) x.y.z"
#[cfg(target_family = "wasm")]
let widgets = vec![];

View File

@ -52,7 +52,7 @@
<LayoutCol class="bottom-message">
<TextLabel italic={true} disabled={true}>
{#if isDesktop()}
You are testing Release Candidate 2 of the 1.0 desktop release. Please regularly check Discord for the next testing build and report issues you encounter.
You are testing Release Candidate 3 of the 1.0 desktop release. Please regularly check Discord for the next testing build and report issues you encounter.
{/if}
</TextLabel>
</LayoutCol>