From f098da10bf533fcb63362615cd096b5cfe5ff13d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Serge=20Crois=C3=A9?= Date: Thu, 21 Nov 2024 21:00:17 +0100 Subject: [PATCH 1/4] fix: rocky-linux-9-5-ga-release.md Dynamic programming languages --- news/rocky-linux-9-5-ga-release.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/news/rocky-linux-9-5-ga-release.md b/news/rocky-linux-9-5-ga-release.md index 6897c90e..1448fcc6 100644 --- a/news/rocky-linux-9-5-ga-release.md +++ b/news/rocky-linux-9-5-ga-release.md @@ -14,7 +14,7 @@ We are pleased to announce the general availability of Rocky Linux 9.5. Updated - **Podman** - Rocky Linux 9.5 ships with the latest and greatest [Podman version 5.0](https://blog.podman.io/2024/03/podman-5-0-has-been-released/). Podman 5.0 introduces exciting new features like fast Podman machine boot times, Podman Farm for multi-platform image building, greater compatibility for volumes in `podman kube play`, Quadlet enhancements, and a more performant default networking stack. - **Cockpit** - Cockpit, the web console for easy remote server management, now provides file management capabilities via the Cockpit Files plugin. This feature requires installing the `cockpit-files` package. -- **Dynamic programming lanuages, web, and database servers** +- **Dynamic programming languages, web, and database servers** - Apache HTTP Server 2.4.62 - Node.js 22 - **System toolchain** From 65505b0a6688500643949d3fc1c79d745d0003bf Mon Sep 17 00:00:00 2001 From: Brian Clemens Date: Fri, 22 Nov 2024 13:10:53 +0900 Subject: [PATCH 2/4] Add Bluesky to social links --- app/[locale]/Footer.tsx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/app/[locale]/Footer.tsx b/app/[locale]/Footer.tsx index 91f03b28..a4d0530f 100644 --- a/app/[locale]/Footer.tsx +++ b/app/[locale]/Footer.tsx @@ -12,6 +12,23 @@ export default function Footer() { { name: tFooter("nav.TrademarksName"), href: "/legal/trademarks" }, ], social: [ + { + name: tFooter("socialNav.bluesky"), + href: "https://bsky.app/profile/rockylinux.org", + icon: (props: JSX.IntrinsicAttributes & SVGProps) => ( + + + + ), + }, { name: tFooter("socialNav.mastodon"), href: "https://fosstodon.org/@rockylinux", From a129b718c6523321bca8ea16c1a1801b5b4bfe2e Mon Sep 17 00:00:00 2001 From: Brian Clemens Date: Fri, 22 Nov 2024 13:21:04 +0900 Subject: [PATCH 3/4] Add Bluesky to share buttons --- components/shareButtons/ShareButtons.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/components/shareButtons/ShareButtons.tsx b/components/shareButtons/ShareButtons.tsx index 28d4194a..98b8302a 100644 --- a/components/shareButtons/ShareButtons.tsx +++ b/components/shareButtons/ShareButtons.tsx @@ -10,6 +10,7 @@ interface ShareButtonsProps { const ShareButtons = ({ url }: ShareButtonsProps) => { const t = useTranslations("share"); + const blueskyLink = `https://bsky.app/intent/compose?text=${url}`; const facebookLink = `https://www.facebook.com/sharer/sharer.php?u=${url}`; const xLink = `https://twitter.com/intent/tweet?text=${url}`; const linkedInLink = `https://www.linkedin.com/sharing/share-offsite/?url=${url}`; @@ -19,6 +20,20 @@ const ShareButtons = ({ url }: ShareButtonsProps) => { <>

{t("shareName")}

+ + {t("bluesky")} + + + + Date: Fri, 22 Nov 2024 13:32:11 +0900 Subject: [PATCH 4/4] Add Bluesky strings --- messages/en-US.json | 2 ++ messages/en.json | 2 ++ 2 files changed, 4 insertions(+) diff --git a/messages/en-US.json b/messages/en-US.json index a0a506e6..1583a0be 100644 --- a/messages/en-US.json +++ b/messages/en-US.json @@ -56,6 +56,7 @@ "TrademarksName": "Trademarks" }, "socialNav": { + "bluesky": "Bluesky", "facebook": "Facebook", "github": "GitHub", "instagram": "Instagram", @@ -109,6 +110,7 @@ }, "share": { "shareName": "Share", + "bluesky": "Bluesky", "mastodon": { "name": "Mastodon", "url-valid": "Please enter a valid Mastodon instance URL (without https://).", diff --git a/messages/en.json b/messages/en.json index a0a506e6..1583a0be 100644 --- a/messages/en.json +++ b/messages/en.json @@ -56,6 +56,7 @@ "TrademarksName": "Trademarks" }, "socialNav": { + "bluesky": "Bluesky", "facebook": "Facebook", "github": "GitHub", "instagram": "Instagram", @@ -109,6 +110,7 @@ }, "share": { "shareName": "Share", + "bluesky": "Bluesky", "mastodon": { "name": "Mastodon", "url-valid": "Please enter a valid Mastodon instance URL (without https://).",