From ebd82853ddc56f1cc2fc9be3fe0b3001b07f0186 Mon Sep 17 00:00:00 2001 From: undergroundwires Date: Thu, 15 Feb 2024 21:28:09 +0100 Subject: [PATCH] Remove 'preview' label from Linux options Since the 0.12.0 release, Linux support has undergone extensive testing and all reported issues have been addressed. This change removes the 'preview' label from all UI elements related to Linux, signifying that Linux support is mature and fully integrated. - The 'preview' text next to Linux in the operating system selection and other related UI elements has been omitted. - Users can now select Linux without the implication of it being an experimental feature, encouraging trust and wider adoption. --- src/presentation/components/Shared/OperatingSystemNames.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/presentation/components/Shared/OperatingSystemNames.ts b/src/presentation/components/Shared/OperatingSystemNames.ts index 35886725..f7e9c2a5 100644 --- a/src/presentation/components/Shared/OperatingSystemNames.ts +++ b/src/presentation/components/Shared/OperatingSystemNames.ts @@ -11,5 +11,5 @@ export function getOperatingSystemDisplayName(os: OperatingSystem): string { const OperatingSystemNames: Partial> = { [OperatingSystem.Windows]: 'Windows', [OperatingSystem.macOS]: 'macOS', - [OperatingSystem.Linux]: 'Linux (preview)', + [OperatingSystem.Linux]: 'Linux', };