File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 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()
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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments