feat: merge #282 as an unstable feature

This commit is contained in:
naturecodevoid
2023-05-20 09:51:45 -07:00
parent b6c9797104
commit 7f39d010b2
4 changed files with 57 additions and 3 deletions

View File

@@ -12,6 +12,8 @@ enum AvailableUnstableFeature: String, CaseIterable {
//
// Unstable features must have a GitHub Issue for tracking progress, PRs and feedback/commenting.
case jitUrlScheme = "0"
/// Dummy variant to ensure there is always at least one variant. DO NOT USE!
case dummy = "dummy"
@@ -20,6 +22,7 @@ enum AvailableUnstableFeature: String, CaseIterable {
// If your unstable feature is stable enough to be used by nightly users who are not alpha testers or developers,
// you may want to have it available in the "Unstable Features" menu in Settings (outside of dev mode). To do so, add this:
//case .yourFeature: return true
case .jitUrlScheme: return true
default: return false
}