You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add Cumulative Release Notes buttons that gets deactivated if the version selected in't supported by the alpha release notess sites. Split cumulative and non-cumulative OpenReleaseNotes function for better clarity.
<Button Grid.Column="4"Style="{StaticResource CustomButton}"x:Name="btnOpenWebsite_Copy2"Margin="5,0,0,0"BorderBrush="{x:Null}"Click="BtnOpenWebsite_Click"ToolTip="Show All Release notes between this version on the older, closest one installed.<br>Only works for final versions." >
<Button Grid.Column="4"Style="{StaticResource CustomButton}"x:Name="btnShowCumulatedReleaseNotes"Margin="5,0,0,0"BorderBrush="{x:Null}"Click="BtnShowCumulatedReleaseNotes_Click"ToolTip="Show all Release Notes between the selected version and the older, closest one installed.Only works for final and patch versions." >
Copy file name to clipboardExpand all lines: UnityLauncherPro/Tools.cs
+36-22
Original file line number
Diff line number
Diff line change
@@ -588,36 +588,20 @@ public static bool VersionIsChinese(string version)
588
588
589
589
590
590
//as of 21 May 2021, only final 'f' versions are now available on the alpha release notes for Unity 2018 and newer. 2017 and 5 still have patch 'p' versions as well.
//with the alpha release notes, we want a diff between an installed version and the one selected, but the site just shows all the changes inclusive of "fromVersion=vers"
603
-
//so if we find a good installed candidate, we need the version just above it (installed or not) that has release notes page
//with the alpha release notes, we want a diff between an installed version and the one selected, but the site just shows all the changes inclusive of "fromVersion=vers"
625
+
//so if we find a good installed candidate, we need the version just above it (installed or not) that has release notes page
0 commit comments