Add experimental preview feature option

This commit is contained in:
Thorsten Sommer 2024-12-01 11:46:41 +01:00
parent 013b9cb40a
commit b76590ab20
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 2 additions and 0 deletions

View File

@ -85,6 +85,7 @@ public static class ConfigurationSelectDataFactory
yield return new("Also show features in beta: these are almost ready for release; expect some bugs", PreviewVisibility.BETA); yield return new("Also show features in beta: these are almost ready for release; expect some bugs", PreviewVisibility.BETA);
yield return new("Also show features in alpha: these are in development; expect bugs and missing features", PreviewVisibility.ALPHA); yield return new("Also show features in alpha: these are in development; expect bugs and missing features", PreviewVisibility.ALPHA);
yield return new("Show also prototype features: these are works in progress; expect bugs and missing features", PreviewVisibility.PROTOTYPE); yield return new("Show also prototype features: these are works in progress; expect bugs and missing features", PreviewVisibility.PROTOTYPE);
yield return new("Show also experimental features: these are experimental; expect bugs, missing features, many changes", PreviewVisibility.EXPERIMENTAL);
} }
public static IEnumerable<ConfigurationSelectData<NavBehavior>> GetNavBehaviorData() public static IEnumerable<ConfigurationSelectData<NavBehavior>> GetNavBehaviorData()

View File

@ -8,4 +8,5 @@ public enum PreviewVisibility
BETA, BETA,
ALPHA, ALPHA,
PROTOTYPE, PROTOTYPE,
EXPERIMENTAL,
} }