Skip to content

Commit 12fbb26

Browse files
author
Simeon
authored
Fix inaccuracy in the UAP version info comment. (#428)
1 parent 2fbe421 commit 12fbb26

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

source/WinCompData/MetaData/UapVersionAttribute.cs

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,18 @@ sealed class UapVersionAttribute : Attribute
2424
public UapVersionAttribute(int version)
2525
{
2626
// For reference, the friendly names used for the versions:
27-
// 1 = 1507 / 10.0.10240 / TH1
28-
// 2 = 1511 / 10.0.10586 / TH2 / November Update
29-
// 3 = 1607 / 10.0.14393 / RS1 / Anniversary Update
30-
// 4 = 1703 / 10.0.15063 / RS2 / Creators Update
31-
// 5 = 1709 / 10.0.16299 / RS3 / Fall Creators Update
32-
// 6 = 1803 / 10.0.17134 / RS4 / April 2018 Update
33-
// 7 = 1809 / 10.0.17763 / RS5 / October 2018 Update
34-
// 8 = 1903 / 10.0.18362 / 19H1 / May 2019 Update
35-
// 9 = 1909 / 10.0.18363 / 19H2 / November 2019 Update
27+
// 1 = 1507 / 10.0.10240 / TH1
28+
// 2 = 1511 / 10.0.10586 / TH2 / November Update
29+
// 3 = 1607 / 10.0.14393 / RS1 / Anniversary Update
30+
// 4 = 1703 / 10.0.15063 / RS2 / Creators Update
31+
// 5 = 1709 / 10.0.16299 / RS3 / Fall Creators Update
32+
// 6 = 1803 / 10.0.17134 / RS4 / April 2018 Update
33+
// 7 = 1809 / 10.0.17763 / RS5 / October 2018 Update
34+
// 8 = 1903 / 10.0.18362 / 19H1 / May 2019 Update
35+
// 9 = 1909 / 10.0.18363 / 19H2 / November 2019 Update
3636
// 10 = 2004 / 10.0.19041 / 20H1 / May 2020 Update
37-
// 11 = 20H2 / 10.0.19042 / 20H2 / October 2020 Update
37+
// 10 = 20H2 / 10.0.19042 / 20H2 / October 2020 Update (NB: 20H2 and 2004 are the same UAP version)
38+
// ...
3839
}
3940
}
4041
}

0 commit comments

Comments
 (0)