From cb241947c364fec5323b20515ba17fd42edee4f1 Mon Sep 17 00:00:00 2001 From: Tim deBoer Date: Wed, 1 May 2024 09:49:36 -0400 Subject: [PATCH] chore: expose experimental appearance preference Light mode still needs a lot of work, but we hope to include it as an experimental feature in the next release. Exposing the preference now will give more time for others to try it out, and make flipping back and forth to test PRs easier. Signed-off-by: Tim deBoer --- packages/main/src/plugin/appearance-init.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/packages/main/src/plugin/appearance-init.ts b/packages/main/src/plugin/appearance-init.ts index 3cfed441f9d8f..e6d3677c16643 100644 --- a/packages/main/src/plugin/appearance-init.ts +++ b/packages/main/src/plugin/appearance-init.ts @@ -1,5 +1,5 @@ /********************************************************************** - * Copyright (C) 2023 Red Hat, Inc. + * Copyright (C) 2023, 2024 Red Hat, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -25,15 +25,14 @@ export class AppearanceInit { init(): void { const appearanceConfiguration: IConfigurationNode = { id: 'preferences.appearance', - title: 'Appearance', + title: 'Experimental Appearance', type: 'object', properties: { [AppearanceSettings.SectionName + '.' + AppearanceSettings.Appearance]: { - description: 'Appearance', + description: 'Experimental setting to test support for light mode', type: 'string', enum: ['system', 'dark', 'light'], default: 'system', - hidden: true, }, }, };