From ea49e82346e21b6e8721fa503365d610e80e2957 Mon Sep 17 00:00:00 2001 From: Stanislav Zhuk Date: Tue, 27 Jan 2026 19:08:00 +0200 Subject: [PATCH 1/2] chore: update animated terminal output --- src/components/AnimatedTerminal.astro | 46 +++++++++++++++++---------- src/lib/api.ts | 2 +- 2 files changed, 30 insertions(+), 18 deletions(-) diff --git a/src/components/AnimatedTerminal.astro b/src/components/AnimatedTerminal.astro index 1483bdaa..01fa3611 100644 --- a/src/components/AnimatedTerminal.astro +++ b/src/components/AnimatedTerminal.astro @@ -1,10 +1,12 @@ --- /** * This is a styled terminal that animates screens of output for demonstration. - * It’s vanilla JavaScript that uses a chain of recursive `setTimeout()` methods - * to append and reset some `innterHTML`. (Avoid `setInterval()`, which may let + * It's vanilla JavaScript that uses a chain of recursive `setTimeout()` methods + * to append and reset some `innerHTML`. (Avoid `setInterval()`, which may let * things drift out of sync!) */ +import { getLatestReleaseVersion } from "../lib/api" +const latestRelease = await getLatestReleaseVersion() --- -
+
diff --git a/src/lib/api.ts b/src/lib/api.ts index 77c8a1fb..12f130f3 100644 --- a/src/lib/api.ts +++ b/src/lib/api.ts @@ -215,7 +215,7 @@ export async function getRepoDetails(name: string) { */ export async function getLatestReleaseVersion(stable = true) { if (!githubTokenIsSet) { - return "v1.24.9" // Fallback version for local development without token + return "v1.25.0" // Fallback version for local development without token } let data = await getReleases() From c41a453d62d026d8591dc8caaa8cafd7cb99df51 Mon Sep 17 00:00:00 2001 From: Stanislav Zhuk Date: Tue, 27 Jan 2026 19:16:25 +0200 Subject: [PATCH 2/2] fix port numbers --- src/components/AnimatedTerminal.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/AnimatedTerminal.astro b/src/components/AnimatedTerminal.astro index 01fa3611..8b47e42f 100644 --- a/src/components/AnimatedTerminal.astro +++ b/src/components/AnimatedTerminal.astro @@ -94,9 +94,9 @@ ${versionLine} │ │ │ Launch: ddev mailpit │ │ ├────────────┼──────┼────────────────────────────────────────────┼────────────────────┤ │ All URLs │ │ https://my-project.ddev.site, │ │ -│ │ │ https://127.0.0.1:51046, │ │ +│ │ │ https://127.0.0.1:51047, │ │ │ │ │ http://my-project.ddev.site, │ │ -│ │ │ http://127.0.0.1:51047 │ │ +│ │ │ http://127.0.0.1:51046 │ │ └────────────┴──────┴────────────────────────────────────────────┴────────────────────┘`, }, ]