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.
This commit is contained in:
undergroundwires
2024-02-15 21:28:09 +01:00
parent 6142f3a297
commit ebd82853dd

View File

@@ -11,5 +11,5 @@ export function getOperatingSystemDisplayName(os: OperatingSystem): string {
const OperatingSystemNames: Partial<Record<OperatingSystem, string>> = {
[OperatingSystem.Windows]: 'Windows',
[OperatingSystem.macOS]: 'macOS',
[OperatingSystem.Linux]: 'Linux (preview)',
[OperatingSystem.Linux]: 'Linux',
};