diff --git a/editor/src/messages/portfolio/portfolio_message_handler.rs b/editor/src/messages/portfolio/portfolio_message_handler.rs index 2a3e15b0..e9e538b2 100644 --- a/editor/src/messages/portfolio/portfolio_message_handler.rs +++ b/editor/src/messages/portfolio/portfolio_message_handler.rs @@ -965,9 +965,12 @@ impl MessageHandler> 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]), diff --git a/frontend/src/components/panels/Welcome.svelte b/frontend/src/components/panels/Welcome.svelte index c2af5f7c..f1cfec86 100644 --- a/frontend/src/components/panels/Welcome.svelte +++ b/frontend/src/components/panels/Welcome.svelte @@ -75,11 +75,7 @@ {#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 — What's new? (video) - — Note: some older documents may render differently and require manual fixes. - Need the old version? + 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}