From 42907cb1d1e4be9613d3bb18b55f15b9028be55b Mon Sep 17 00:00:00 2001 From: Amoralchik Date: Mon, 5 May 2025 18:02:23 +0300 Subject: [PATCH 1/4] Fix Hero component text --- src/components/Hero.astro | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/src/components/Hero.astro b/src/components/Hero.astro index a975cf6..75202ca 100644 --- a/src/components/Hero.astro +++ b/src/components/Hero.astro @@ -19,6 +19,14 @@ function getNewAnimationDelay() { function getHeroTitleAnimation() { return getTitleAnimation(getNewAnimationDelay()) } + +const { + title1 = 'welcome', + title2 = 'to', + title3 = 'a', + title4 = 'calmer', + title5 = 'internet', +} = Astro.props ---
- welcome + {title1} + + + {title2} - to - a + + {title3} + - calmer + {title4} - internet + {title5} From 67ae595f3eb90146fe68521baf38bdb49a60076a Mon Sep 17 00:00:00 2001 From: Amoralchik Date: Wed, 7 May 2025 16:51:15 +0300 Subject: [PATCH 2/4] Refactor Hero components to use static titles instead of props --- src/components/Hero.astro | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/src/components/Hero.astro b/src/components/Hero.astro index 75202ca..2441fcb 100644 --- a/src/components/Hero.astro +++ b/src/components/Hero.astro @@ -19,14 +19,6 @@ function getNewAnimationDelay() { function getHeroTitleAnimation() { return getTitleAnimation(getNewAnimationDelay()) } - -const { - title1 = 'welcome', - title2 = 'to', - title3 = 'a', - title4 = 'calmer', - title5 = 'internet', -} = Astro.props ---
- {title1} + {'welcome'} - {title2} + {'to'} - {title3} + {'a'} - {title4} + {'calmer'} - {title5} + {'internet'} From 0140de8b6f95266679732794e0c044810cd46513 Mon Sep 17 00:00:00 2001 From: Shaheem Niyaz Date: Thu, 8 May 2025 12:25:16 +0530 Subject: [PATCH 3/4] fix: duplicate content in back-to-top button --- src/pages/release-notes/index.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/release-notes/index.astro b/src/pages/release-notes/index.astro index f30a636..7233e99 100644 --- a/src/pages/release-notes/index.astro +++ b/src/pages/release-notes/index.astro @@ -54,7 +54,7 @@ import { ArrowUp } from 'lucide-astro' isPrimary class="fixed bottom-8 right-8" > -

+

From d207ef5381fa68e25255fefc5b9d1a254da41c23 Mon Sep 17 00:00:00 2001 From: "mr. m" Date: Fri, 9 May 2025 01:08:29 +0200 Subject: [PATCH 4/4] Add fix for disabling search suggestions by default in release notes --- src/release-notes/stable.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/release-notes/stable.json b/src/release-notes/stable.json index c8ed182..e4045ad 100644 --- a/src/release-notes/stable.json +++ b/src/release-notes/stable.json @@ -2716,6 +2716,7 @@ "fixes": [ "Fixed toast notifications not aligning when tabs are on the right.", "Fixed restoring previous tab not working on some cases", + "Disabled search suggestions by default. Can be enabled again in about:preferences -> 'Search'", "Fixed compact mode always showing a background tab has been added", "Other small fixes and improvements" ],