mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 21:59:48 +00:00
Add experimental preview feature option
This commit is contained in:
parent
013b9cb40a
commit
b76590ab20
@ -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()
|
||||||
|
@ -8,4 +8,5 @@ public enum PreviewVisibility
|
|||||||
BETA,
|
BETA,
|
||||||
ALPHA,
|
ALPHA,
|
||||||
PROTOTYPE,
|
PROTOTYPE,
|
||||||
|
EXPERIMENTAL,
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user