add community short url
This commit is contained in:
parent
9461494a35
commit
52914515a2
|
@ -1,19 +1,16 @@
|
|||
Do you want to...
|
||||
|
||||
* **Ask for help using SMAPI?**
|
||||
Please post a message in the [SMAPI support thread](http://community.playstarbound.com/threads/108375)
|
||||
or [ask on Discord](https://stardewvalleywiki.com/Modding:Community#Discord), don't create a
|
||||
GitHub issue.
|
||||
Please ask in [the Stardew Valley Discord or mod forums](https://smapi.io/community), don't
|
||||
create a GitHub issue.
|
||||
|
||||
* **Report a bug?**
|
||||
Please post a message in the [SMAPI support thread](http://community.playstarbound.com/threads/108375)
|
||||
or [ask on Discord](https://stardewvalleywiki.com/Modding:Community#Discord) instead, unless
|
||||
you're sure it's a bug in SMAPI itself.
|
||||
Please report it in [the Stardew Valley Discord or mod forums](https://smapi.io/community), don't
|
||||
create a GitHub issue unless you're sure it's a bug in the SMAPI code.
|
||||
|
||||
* **Submit a pull request?**
|
||||
Pull requests are welcome! If you're submitting a new feature, it's best to discuss first to make
|
||||
sure it'll be accepted. Feel free to come chat in [#modding on Discord](https://stardewvalleywiki.com/Modding:Community#Discord)
|
||||
or post in the [SMAPI support thread](http://community.playstarbound.com/threads/108375).
|
||||
sure it'll be accepted. Feel free to come chat [on Discord or in the SMAPI discussion thread](https://smapi.io/community).
|
||||
|
||||
Documenting your code and using the same formatting conventions is appreciated, but don't worry too
|
||||
much about it. We'll fix up the code after we accept the pull request if needed.
|
||||
|
|
|
@ -6,10 +6,8 @@ about: Report a problem with SMAPI.
|
|||
|
||||
<!--
|
||||
|
||||
Only report a bug here if you're sure it's a SMAPI bug! To request support instead, see:
|
||||
- #modding on Discord: https://stardewvalleywiki.com/Modding:Community#Discord
|
||||
- support forum thread: https://community.playstarbound.com/threads/108375
|
||||
- Nexus mod page: https://www.nexusmods.com/stardewvalley/mods/2400
|
||||
Only report a bug here if you're sure it's a SMAPI bug!
|
||||
To request support instead, see https://smapi.io/community.
|
||||
|
||||
Replace the instructions below with the bug details.
|
||||
|
||||
|
|
|
@ -6,10 +6,7 @@ about: Suggest an idea for SMAPI.
|
|||
|
||||
<!--
|
||||
|
||||
GitHub issues are only used for development tasks. Please don't submit feature requests here! Instead, see...
|
||||
|
||||
- #modding on Discord: https://stardewvalleywiki.com/Modding:Community#Discord
|
||||
- support forum thread: https://community.playstarbound.com/threads/108375
|
||||
- Nexus page: https://www.nexusmods.com/stardewvalley/mods/2400
|
||||
GitHub issues are only used for development tasks. Please don't submit feature requests here!
|
||||
Instead, see https://smapi.io/community to discuss SMAPI.
|
||||
|
||||
-->
|
||||
|
|
|
@ -6,10 +6,7 @@ about: Create a ticket about something else.
|
|||
|
||||
<!--
|
||||
|
||||
GitHub issues are only used for development tasks. For support and questions, see...
|
||||
|
||||
- #modding on Discord: https://stardewvalleywiki.com/Modding:Community#Discord
|
||||
- support forum thread: https://community.playstarbound.com/threads/108375
|
||||
- Nexus page: https://www.nexusmods.com/stardewvalley/mods/2400
|
||||
GitHub issues are only used for development tasks.
|
||||
For support and questions, see https://smapi.io/community instead.
|
||||
|
||||
-->
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
GitHub issues are only used for SMAPI development tasks.
|
||||
|
||||
To get help with SMAPI problems, you can...
|
||||
* [ask on Discord](https://stardewvalleywiki.com/Modding:Community#Discord);
|
||||
* or post in the [SMAPI support thread](https://community.playstarbound.com/threads/108375).
|
||||
To get help with SMAPI problems, [ask on Discord or in the forums](https://smapi.io/community)
|
||||
instead.
|
||||
|
|
|
@ -41,14 +41,14 @@ doesn't change any of your game files. It serves eight main purposes:
|
|||
something goes wrong. (Via the bundled SaveBackup mod.)_
|
||||
|
||||
## Documentation
|
||||
Have questions? Come [chat on Discord](https://stardewvalleywiki.com/Modding:Community) with SMAPI
|
||||
Have questions? Come [ask the community](https://smapi.io/community) to get help from SMAPI
|
||||
developers and other modders!
|
||||
|
||||
### For players
|
||||
* [Player guide](https://stardewvalleywiki.com/Modding:Player_Guide)
|
||||
|
||||
### For modders
|
||||
* [Modding documentation](https://stardewvalleywiki.com/Modding:Index)
|
||||
* [Modding documentation](https://smapi.io/docs)
|
||||
* [Mod build configuration](technical/mod-package.md)
|
||||
* [Release notes](release-notes.md)
|
||||
|
||||
|
|
|
@ -211,6 +211,7 @@ namespace StardewModdingAPI.Web
|
|||
// shortcut redirects
|
||||
redirects.Add(new RedirectToUrlRule(@"^/3\.0\.?$", "https://stardewvalleywiki.com/Modding:Migrate_to_SMAPI_3.0"));
|
||||
redirects.Add(new RedirectToUrlRule(@"^/(?:buildmsg|package)(?:/?(.*))$", "https://github.com/Pathoschild/SMAPI/blob/develop/docs/technical/mod-package.md#$1")); // buildmsg deprecated, remove when SDV 1.4 is released
|
||||
redirects.Add(new RedirectToUrlRule(@"^/community\.?$", "https://stardewvalleywiki.com/Modding:Community"));
|
||||
redirects.Add(new RedirectToUrlRule(@"^/compat\.?$", "https://mods.smapi.io"));
|
||||
redirects.Add(new RedirectToUrlRule(@"^/docs\.?$", "https://stardewvalleywiki.com/Modding:Index"));
|
||||
redirects.Add(new RedirectToUrlRule(@"^/install\.?$", "https://stardewvalleywiki.com/Modding:Player_Guide/Getting_Started#Install_SMAPI"));
|
||||
|
|
|
@ -52,7 +52,7 @@
|
|||
<h2 id="help">Get help</h2>
|
||||
<ul>
|
||||
<li><a href="@SiteConfig.Value.ModListUrl">Mod compatibility list</a></li>
|
||||
<li>Get help <a href="https://stardewvalleywiki.com/Modding:Community#Discord">on Discord</a> or <a href="https://community.playstarbound.com/threads/smapi-stardew-modding-api.108375/">in the forums</a></li>
|
||||
<li>Get help <a href="https://smapi.io/community">on Discord or in the forums</a></li>
|
||||
</ul>
|
||||
|
||||
@if (Model.BetaVersion == null)
|
||||
|
@ -124,5 +124,5 @@ else
|
|||
<li><a href="@Model.BetaVersion.DevDownloadUrl">SMAPI @Model.BetaVersion.Version for developers</a> (includes <a href="https://docs.microsoft.com/en-us/visualstudio/ide/using-intellisense">intellisense</a> and full console output)</li>
|
||||
}
|
||||
<li><a href="https://stardewvalleywiki.com/Modding:Index">Modding documentation</a></li>
|
||||
<li>Need help? Come <a href="https://stardewvalleywiki.com/Modding:Community#Discord">chat on Discord</a>.</li>
|
||||
<li>Need help? Come <a href="https://smapi.io/community">chat on Discord</a>.</li>
|
||||
</ul>
|
||||
|
|
Loading…
Reference in New Issue