Skip to content

Commit

Permalink
Added initial feature update detection support for Dilithium
Browse files Browse the repository at this point in the history
  • Loading branch information
CodingWonders committed Mar 21, 2024
1 parent 5b6e8a7 commit 3ad84ed
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
Binary file modified Installer/Output/dt_setup.exe
Binary file not shown.
6 changes: 4 additions & 2 deletions Panels/Get_Ops/GetImgInfoDlg.vb
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ Public Class GetImgInfoDlg
Case Is = 18363
FeatUpd = "1909 (Vanadium)"
Case 18826 To 19041
FeatUpd = "2004 (Vibranium"
FeatUpd = "2004 (Vibranium)"
Case 19041 To 19489
FeatUpd = "2004+ (Vibranium)"
Case 19489 To 19645
Expand All @@ -595,8 +595,10 @@ Public Class GetImgInfoDlg
FeatUpd = "23H2 (Zinc)"
Case 25801 To 25941
FeatUpd = "24H1 (Gallium)"
Case 25942 To 27000 ' 27000 is a relative number
Case 25942 To 27500
FeatUpd = "24H2 (Germanium)"
Case Is >= 27500
FeatUpd = "25H1 (Dilithium)"
End Select
Case Else
Exit Sub
Expand Down
6 changes: 4 additions & 2 deletions Panels/Prj_Ops/ProjProperties.vb
Original file line number Diff line number Diff line change
Expand Up @@ -1277,7 +1277,7 @@ Public Class ProjProperties
Case Is = 18363
FeatUpd = "1909 (Vanadium)"
Case 18826 To 19041
FeatUpd = "2004 (Vibranium"
FeatUpd = "2004 (Vibranium)"
Case 19041 To 19489
FeatUpd = "2004+ (Vibranium)"
Case 19489 To 19645
Expand All @@ -1302,8 +1302,10 @@ Public Class ProjProperties
FeatUpd = "23H2 (Zinc)"
Case 25801 To 25941
FeatUpd = "24H1 (Gallium)"
Case 25942 To 27000 ' 27000 is a relative number
Case 25942 To 27500
FeatUpd = "24H2 (Germanium)"
Case Is >= 27500
FeatUpd = "25H1 (Dilithium)"
End Select
Case Else
Exit Sub
Expand Down

0 comments on commit 3ad84ed

Please sign in to comment.