Skip to content

Commit 124235a

Browse files
Keavontimon-schelling
authored andcommitted
Prep for the RC2 release of the desktop app
1 parent a42cad8 commit 124235a

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

editor/src/messages/portfolio/portfolio_message_handler.rs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -965,9 +965,12 @@ impl MessageHandler<PortfolioMessage, PortfolioMessageContext<'_>> for Portfolio
965965
});
966966
}
967967
PortfolioMessage::RequestStatusBarInfoLayout => {
968-
let row = LayoutGroup::Row {
969-
widgets: vec![TextLabel::new("Graphite (beta) 1.0.0-RC1").disabled(true).widget_instance()],
970-
};
968+
#[cfg(not(target_family = "wasm"))]
969+
let widgets = vec![TextLabel::new("Graphite (beta) 1.0.0-RC2").disabled(true).widget_instance()];
970+
#[cfg(target_family = "wasm")]
971+
let widgets = vec![];
972+
973+
let row = LayoutGroup::Row { widgets };
971974

972975
responses.add(LayoutMessage::SendLayout {
973976
layout: Layout(vec![row]),

frontend/src/components/panels/Welcome.svelte

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,7 @@
7575
<LayoutCol class="bottom-message">
7676
<TextLabel italic={true} disabled={true}>
7777
{#if isDesktop()}
78-
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.
79-
{:else if new Date().getFullYear() === 2025}
80-
September 2025 release — <a href="https://youtube.com/watch?v=Vl5BA4g3QXM" target="_blank">What's new? (video)</a>
81-
— Note: some older documents may render differently and require manual fixes.
82-
<a href="https://ec6796b4.graphite-editor.pages.dev/" target="_blank">Need the old version?</a>
78+
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.
8379
{/if}
8480
</TextLabel>
8581
</LayoutCol>

0 commit comments

Comments
 (0)