Skip to content

Commit 3697b7d

Browse files
committed
Prep for the RC4 release of the desktop app
1 parent 6d0357b commit 3697b7d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

editor/src/messages/portfolio/portfolio_message_handler.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1057,7 +1057,7 @@ impl MessageHandler<PortfolioMessage, PortfolioMessageContext<'_>> for Portfolio
10571057
}
10581058
PortfolioMessage::RequestStatusBarInfoLayout => {
10591059
#[cfg(not(target_family = "wasm"))]
1060-
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"
1060+
let widgets = vec![TextLabel::new("Graphite 1.0.0-RC4").disabled(true).widget_instance()]; // TODO: After the RCs, call this "Graphite (beta) x.y.z"
10611061
#[cfg(target_family = "wasm")]
10621062
let widgets = vec![];
10631063

frontend/src/components/panels/Welcome.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
<LayoutCol class="bottom-message">
5353
<TextLabel italic={true} disabled={true}>
5454
{#if isPlatformNative()}
55-
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.
55+
You are testing Release Candidate 4 of the 1.0 desktop release. Please regularly check Discord for the next testing build and report issues you encounter.
5656
{/if}
5757
</TextLabel>
5858
</LayoutCol>

frontend/src/components/window/MainWindow.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
{#if $tooltip.visible}
3232
<Tooltip />
3333
{/if}
34-
{#if isPlatformNative() && new Date() > new Date("2026-03-15")}
34+
{#if isPlatformNative() && new Date() > new Date("2026-04-30")}
3535
<LayoutCol class="release-candidate-expiry">
3636
<TextLabel>
3737
<p>

0 commit comments

Comments
 (0)