This repository was archived by the owner on May 19, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -570,6 +570,7 @@ void DownloadInBrowser(string url)
570
570
else // not found
571
571
{
572
572
SetStatus ( "Error> Cannot find installer executable ... opening website instead" ) ;
573
+ url = "https://unity3d.com/get-unity/download/archive" ;
573
574
Process . Start ( url + "#installer-exe-not-found" ) ;
574
575
}
575
576
}
Original file line number Diff line number Diff line change @@ -188,9 +188,10 @@ public static string GetUnityReleaseURL(string version)
188
188
if ( version . Contains ( "5.6" ) ) padding = "" ;
189
189
if ( version . Contains ( "2017.1" ) ) whatsnew = "whatsnew" ;
190
190
if ( version . Contains ( "2017.4" ) ) padding = "" ;
191
- if ( version . Contains ( "2018" ) ) padding = "" ;
191
+ if ( version . Contains ( "2018.2" ) ) whatsnew = "whatsnew" ;
192
+ if ( version . Contains ( "2018.3" ) ) padding = "" ;
192
193
if ( version . Contains ( "2019" ) ) padding = "" ;
193
- url = "https://unity3d.com/unity/" + whatsnew + "/" + padding + version ;
194
+ url = "https://unity3d.com/unity/" + whatsnew + "/" + padding + version ;
194
195
}
195
196
else
196
197
if ( version . Contains ( "p" ) ) // patch version
You can’t perform that action at this time.
0 commit comments