link smapi.io/install to install guide
This commit is contained in:
parent
324d02233d
commit
59775e99c4
|
@ -9,6 +9,7 @@
|
|||
* Fixed console color scheme on Mac or in PowerShell, configurable via `StardewModdingAPI.config.json`.
|
||||
* Fixed detection of GOG Galaxy install path in rare cases.
|
||||
* Fixed install error on Linux/Mac in some cases.
|
||||
* Fixed `smapi.io/install` not linking to a useful page.
|
||||
* Renamed `install.exe` to `install on Windows.exe` to avoid confusion.
|
||||
|
||||
* For modders:
|
||||
|
|
|
@ -153,9 +153,10 @@ namespace StardewModdingAPI.Web
|
|||
));
|
||||
|
||||
// shortcut redirects
|
||||
redirects.Add(new RedirectToUrlRule(@"^/buildmsg(?:/?(.*))$", "https://github.com/Pathoschild/SMAPI/blob/develop/docs/mod-build-config.md#$1"));
|
||||
redirects.Add(new RedirectToUrlRule(@"^/compat\.?$", "https://stardewvalleywiki.com/Modding:SMAPI_compatibility"));
|
||||
redirects.Add(new RedirectToUrlRule(@"^/docs\.?$", "https://stardewvalleywiki.com/Modding:Index"));
|
||||
redirects.Add(new RedirectToUrlRule(@"^/buildmsg(?:/?(.*))$", "https://github.com/Pathoschild/SMAPI/blob/develop/docs/mod-build-config.md#$1"));
|
||||
redirects.Add(new RedirectToUrlRule(@"^/install\.?$", "https://stardewvalleywiki.com/Modding:Player_Guide/Getting_Started#Install_SMAPI"));
|
||||
|
||||
// redirect legacy canimod.com URLs
|
||||
var wikiRedirects = new Dictionary<string, string[]>
|
||||
|
|
Loading…
Reference in New Issue