File tree 2 files changed +9
-7
lines changed
2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -65,18 +65,20 @@ public static List<UnityInstallation> Scan()
65
65
unity . IsPreferred = ( version == MainWindow . preferredVersion ) ;
66
66
unity . ProjectCount = GetProjectCountForUnityVersion ( version ) ;
67
67
68
- if ( Tools . IsLTS ( version ) )
69
- {
70
- unity . ReleaseType = "LTS" ;
71
- }
72
- else if ( Tools . IsAlpha ( version ) )
68
+ if ( Tools . IsAlpha ( version ) )
73
69
{
74
70
unity . ReleaseType = "Alpha" ;
75
71
}
76
72
else if ( Tools . IsBeta ( version ) )
77
73
{
78
74
unity . ReleaseType = "Beta" ;
79
75
}
76
+ else
77
+ if ( Tools . IsLTS ( version ) )
78
+
79
+ {
80
+ unity . ReleaseType = "LTS" ;
81
+ }
80
82
else
81
83
{
82
84
unity . ReleaseType = "" ; // cannot be null for UnitysFilter to work properly
Original file line number Diff line number Diff line change 8
8
// set of attributes. Change these attribute values to modify the information
9
9
// associated with an assembly.
10
10
[ assembly: AssemblyTitle ( "UnityLauncherPro" ) ]
11
- [ assembly: AssemblyDescription ( "" ) ]
11
+ [ assembly: AssemblyDescription ( "Unity Hub Alternative " ) ]
12
12
[ assembly: AssemblyConfiguration ( "" ) ]
13
13
[ assembly: AssemblyCompany ( "UnityCoder.com" ) ]
14
14
[ assembly: AssemblyProduct ( "UnityLauncherPro" ) ]
15
- [ assembly: AssemblyCopyright ( "Copyright © 2019 " ) ]
15
+ [ assembly: AssemblyCopyright ( "Copyright © 2023 " ) ]
16
16
[ assembly: AssemblyTrademark ( "" ) ]
17
17
[ assembly: AssemblyCulture ( "" ) ]
18
18
You can’t perform that action at this time.
0 commit comments