Prep for the RC2 release of the desktop app

This commit is contained in:
Keavon Chambers 2026-01-05 17:14:09 -08:00 committed by Timon
parent a42cad8bfb
commit 02e3293e72
2 changed files with 7 additions and 8 deletions

View File

@ -965,9 +965,12 @@ impl MessageHandler<PortfolioMessage, PortfolioMessageContext<'_>> for Portfolio
});
}
PortfolioMessage::RequestStatusBarInfoLayout => {
let row = LayoutGroup::Row {
widgets: vec![TextLabel::new("Graphite (beta) 1.0.0-RC1").disabled(true).widget_instance()],
};
#[cfg(not(target_family = "wasm"))]
let widgets = vec![TextLabel::new("Graphite (beta) 1.0.0-RC2").disabled(true).widget_instance()];
#[cfg(target_family = "wasm")]
let widgets = vec![];
let row = LayoutGroup::Row { widgets };
responses.add(LayoutMessage::SendLayout {
layout: Layout(vec![row]),

View File

@ -75,11 +75,7 @@
<LayoutCol class="bottom-message">
<TextLabel italic={true} disabled={true}>
{#if isDesktop()}
You are testing Release Candidate 1 of the 1.0.0 desktop release. Please regularly check Discord for the next testing build and report issues you encounter.
{:else if new Date().getFullYear() === 2025}
September 2025 release — <a href="https://youtube.com/watch?v=Vl5BA4g3QXM" target="_blank">What's new? (video)</a>
— Note: some older documents may render differently and require manual fixes.
<a href="https://ec6796b4.graphite-editor.pages.dev/" target="_blank">Need the old version?</a>
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.
{/if}
</TextLabel>
</LayoutCol>