Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src-opam/distro.ml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ type win10_ltsc = [ `Ltsc2015 | `Ltsc2016 | `Ltsc2019 | `Ltsc2022 ]

type win10_lcu =
[ `LCU
| `LCU20221213
| `LCU20221108
| `LCU20221011
| `LCU20220913
Expand All @@ -63,12 +64,17 @@ type win10_lcu =

type win_all = [ win10_release | win10_ltsc ] [@@deriving sexp]

let win10_current_lcu = `LCU20221108
let win10_current_lcu = `LCU20221213

type win10_revision = win10_release * win10_lcu option [@@deriving sexp]

let win10_lcus : ('a * int * win10_release list) list =
[
(`LCU20221213, 5021249, [ `V21H2 ]);
(`LCU20221213, 5021233, [ `V21H1 ]);
(`LCU20221213, 5021237, [ `V1809 ]);
(`LCU20221213, 5021235, [ `V1607 ]);
(`LCU20221213, 5021243, [ `V1507 ]);
(`LCU20221108, 5019081, [ `V21H2 ]);
(`LCU20221108, 5019959, [ `V21H1 ]);
(`LCU20221108, 5019966, [ `V1809 ]);
Expand Down
1 change: 1 addition & 0 deletions src-opam/distro.mli
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ type win_all = [ win10_release | win10_ltsc ] [@@deriving sexp]

type win10_lcu =
[ `LCU
| `LCU20221213
| `LCU20221108
| `LCU20221011
| `LCU20220913
Expand Down