add community short url

This commit is contained in:
Jesse Plamondon-Willard 2019-10-01 13:48:23 -04:00
parent 9461494a35
commit 52914515a2
No known key found for this signature in database
GPG Key ID: CF8B1456B3E29F49
8 changed files with 18 additions and 29 deletions

View File

@ -1,19 +1,16 @@
Do you want to... Do you want to...
* **Ask for help using SMAPI?** * **Ask for help using SMAPI?**
Please post a message in the [SMAPI support thread](http://community.playstarbound.com/threads/108375) Please ask in [the Stardew Valley Discord or mod forums](https://smapi.io/community), don't
or [ask on Discord](https://stardewvalleywiki.com/Modding:Community#Discord), don't create a create a GitHub issue.
GitHub issue.
* **Report a bug?** * **Report a bug?**
Please post a message in the [SMAPI support thread](http://community.playstarbound.com/threads/108375) Please report it in [the Stardew Valley Discord or mod forums](https://smapi.io/community), don't
or [ask on Discord](https://stardewvalleywiki.com/Modding:Community#Discord) instead, unless create a GitHub issue unless you're sure it's a bug in the SMAPI code.
you're sure it's a bug in SMAPI itself.
* **Submit a pull request?** * **Submit a pull request?**
Pull requests are welcome! If you're submitting a new feature, it's best to discuss first to make 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) sure it'll be accepted. Feel free to come chat [on Discord or in the SMAPI discussion thread](https://smapi.io/community).
or post in the [SMAPI support thread](http://community.playstarbound.com/threads/108375).
Documenting your code and using the same formatting conventions is appreciated, but don't worry too 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. much about it. We'll fix up the code after we accept the pull request if needed.

View File

@ -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: Only report a bug here if you're sure it's a SMAPI bug!
- #modding on Discord: https://stardewvalleywiki.com/Modding:Community#Discord To request support instead, see https://smapi.io/community.
- support forum thread: https://community.playstarbound.com/threads/108375
- Nexus mod page: https://www.nexusmods.com/stardewvalley/mods/2400
Replace the instructions below with the bug details. Replace the instructions below with the bug details.

View File

@ -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... GitHub issues are only used for development tasks. Please don't submit feature requests here!
Instead, see https://smapi.io/community to discuss SMAPI.
- #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
--> -->

View File

@ -6,10 +6,7 @@ about: Create a ticket about something else.
<!-- <!--
GitHub issues are only used for development tasks. For support and questions, see... GitHub issues are only used for development tasks.
For support and questions, see https://smapi.io/community instead.
- #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
--> -->

5
.github/SUPPORT.md vendored
View File

@ -1,5 +1,4 @@
GitHub issues are only used for SMAPI development tasks. GitHub issues are only used for SMAPI development tasks.
To get help with SMAPI problems, you can... To get help with SMAPI problems, [ask on Discord or in the forums](https://smapi.io/community)
* [ask on Discord](https://stardewvalleywiki.com/Modding:Community#Discord); instead.
* or post in the [SMAPI support thread](https://community.playstarbound.com/threads/108375).

View File

@ -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.)_ something goes wrong. (Via the bundled SaveBackup mod.)_
## Documentation ## 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! developers and other modders!
### For players ### For players
* [Player guide](https://stardewvalleywiki.com/Modding:Player_Guide) * [Player guide](https://stardewvalleywiki.com/Modding:Player_Guide)
### For modders ### For modders
* [Modding documentation](https://stardewvalleywiki.com/Modding:Index) * [Modding documentation](https://smapi.io/docs)
* [Mod build configuration](technical/mod-package.md) * [Mod build configuration](technical/mod-package.md)
* [Release notes](release-notes.md) * [Release notes](release-notes.md)

View File

@ -211,6 +211,7 @@ namespace StardewModdingAPI.Web
// shortcut redirects // shortcut redirects
redirects.Add(new RedirectToUrlRule(@"^/3\.0\.?$", "https://stardewvalleywiki.com/Modding:Migrate_to_SMAPI_3.0")); 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(@"^/(?: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(@"^/compat\.?$", "https://mods.smapi.io"));
redirects.Add(new RedirectToUrlRule(@"^/docs\.?$", "https://stardewvalleywiki.com/Modding:Index")); 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")); redirects.Add(new RedirectToUrlRule(@"^/install\.?$", "https://stardewvalleywiki.com/Modding:Player_Guide/Getting_Started#Install_SMAPI"));

View File

@ -52,7 +52,7 @@
<h2 id="help">Get help</h2> <h2 id="help">Get help</h2>
<ul> <ul>
<li><a href="@SiteConfig.Value.ModListUrl">Mod compatibility list</a></li> <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> </ul>
@if (Model.BetaVersion == null) @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="@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><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> </ul>