Skip to content

Commit 9dccc52

Browse files
committed
Add the May 2026 release message to the welcome screen
1 parent 96be4ec commit 9dccc52

2 files changed

Lines changed: 11 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
DELAY=15
124124
for ATTEMPT in $(seq 1 $MAX_ATTEMPTS); do
125125
echo "Attempt $ATTEMPT of $MAX_ATTEMPTS..."
126-
npx wrangler@3 pages deploy "frontend/dist" --project-name="${{ steps.production-env.outputs.cf_project || 'graphite-dev' }}" --commit-dirty=true 2>&1 | tee /tmp/wrangler_output
126+
npx wrangler@3 pages deploy "frontend/dist" --project-name="${{ steps.production-env.outputs.cf_project || 'graphite-dev' }}" --branch="master" --commit-dirty=true 2>&1 | tee /tmp/wrangler_output
127127
if [ ${PIPESTATUS[0]} -eq 0 ]; then
128128
URL=$(grep -oP 'https://[^\s]+\.pages\.dev' /tmp/wrangler_output | head -1)
129129
echo "url=$URL" >> "$GITHUB_OUTPUT"

frontend/src/components/panels/Welcome.svelte

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,17 @@
3333
</LayoutCol>
3434
</LayoutCol>
3535
<LayoutCol class="bottom-message">
36-
<TextLabel italic={true} disabled={true}>
37-
{#if import.meta.env.MODE === "native"}
36+
{#if import.meta.env.MODE === "native"}
37+
<TextLabel italic={true} disabled={true}>
3838
You are testing Release Candidate 5 of the 1.0 desktop release. Please regularly check Discord for the next testing build and report issues you encounter.
39-
{/if}
40-
</TextLabel>
39+
</TextLabel>
40+
{:else if new Date() < new Date(2026, 10, 1)}
41+
<TextLabel italic={true} disabled={true}>
42+
May 2026 release — <a href="https://youtube.com/watch?v=U3E-sWo2H_M" target="_blank">What's new? (video)</a>
43+
— Note: Some nodes are renamed; Some older documents may render differently and require manual fixes.
44+
<a href="https://57130155.graphite.pages.dev/" target="_blank">Need the old version?</a>
45+
</TextLabel>
46+
{/if}
4147
</LayoutCol>
4248
</LayoutCol>
4349

0 commit comments

Comments
 (0)