File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
experimenter/experimenter/targeting Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -1058,6 +1058,24 @@ def __post_init__(self):
10581058 application_choice_names = (Application .DESKTOP .name ,),
10591059)
10601060
1061+ EXCLUDE_WIN_10 = NimbusTargetingConfig (
1062+ name = "All users, excluding Windows 10" ,
1063+ slug = "all_users_no_win10" ,
1064+ description = (
1065+ "Mac, Linux and Windows 11 users but not Windows 10 users "
1066+ "(Windows 10 build > 22000)" ,
1067+ ),
1068+ targeting = (
1069+ "(os.isWindows && os.windowsVersion >= 10 && "
1070+ "os.windowsBuildNumber >= 22000) || "
1071+ "os.isMac || os.isLinux"
1072+ ),
1073+ desktop_telemetry = "" ,
1074+ sticky_required = False ,
1075+ is_first_run_required = False ,
1076+ application_choice_names = (Application .DESKTOP .name ,),
1077+ )
1078+
10611079WIN10_NOT_WIN11 = NimbusTargetingConfig (
10621080 name = "Windows 10 users but not Windows 11 users" ,
10631081 slug = "win10_not_win11" ,
You can’t perform that action at this time.
0 commit comments