Skip to content

Commit 40532ca

Browse files
committed
fix release type (fixes #132), update assembly info string
1 parent a86ab36 commit 40532ca

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

UnityLauncherPro/GetUnityInstallations.cs

+7-5
Original file line numberDiff line numberDiff line change
@@ -65,18 +65,20 @@ public static List<UnityInstallation> Scan()
6565
unity.IsPreferred = (version == MainWindow.preferredVersion);
6666
unity.ProjectCount = GetProjectCountForUnityVersion(version);
6767

68-
if (Tools.IsLTS(version))
69-
{
70-
unity.ReleaseType = "LTS";
71-
}
72-
else if (Tools.IsAlpha(version))
68+
if (Tools.IsAlpha(version))
7369
{
7470
unity.ReleaseType = "Alpha";
7571
}
7672
else if (Tools.IsBeta(version))
7773
{
7874
unity.ReleaseType = "Beta";
7975
}
76+
else
77+
if (Tools.IsLTS(version))
78+
79+
{
80+
unity.ReleaseType = "LTS";
81+
}
8082
else
8183
{
8284
unity.ReleaseType = ""; // cannot be null for UnitysFilter to work properly

UnityLauncherPro/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
// set of attributes. Change these attribute values to modify the information
99
// associated with an assembly.
1010
[assembly: AssemblyTitle("UnityLauncherPro")]
11-
[assembly: AssemblyDescription("")]
11+
[assembly: AssemblyDescription("Unity Hub Alternative")]
1212
[assembly: AssemblyConfiguration("")]
1313
[assembly: AssemblyCompany("UnityCoder.com")]
1414
[assembly: AssemblyProduct("UnityLauncherPro")]
15-
[assembly: AssemblyCopyright("Copyright © 2019")]
15+
[assembly: AssemblyCopyright("Copyright © 2023")]
1616
[assembly: AssemblyTrademark("")]
1717
[assembly: AssemblyCulture("")]
1818

0 commit comments

Comments
 (0)