Difference between revisions of "Modding:Mod compatibility"

From Stardew Valley Wiki
Jump to navigation Jump to search
(→‎SMAPI mods: unify name/name2 and author/author2 into comma-delimited fields)
(→‎SMAPI mods (obsolete): unify name/name2 and author/author2 fields)
Line 4,737: Line 4,737:
 
{{/entry
 
{{/entry
 
   |name    = Concentration on Farming
 
   |name    = Concentration on Farming
   |author  = punyo
+
   |author  = punyo, yakminepunyo
  |author2  = yakminepunyo
 
 
   |id      = punyo.ConcentrationOnFarming
 
   |id      = punyo.ConcentrationOnFarming
 
   |nexus id = 1445
 
   |nexus id = 1445
Line 4,794: Line 4,793:
 
}}
 
}}
 
{{/entry
 
{{/entry
   |name    = Fast Geode
+
   |name    = Fast Geode, Instant Geodes
  |name2    = Instant Geodes
 
 
   |author  = ofmanynames
 
   |author  = ofmanynames
 
   |id      = InstantGeode
 
   |id      = InstantGeode
Line 4,817: Line 4,815:
 
{{/entry
 
{{/entry
 
   |name    = Happy Animals
 
   |name    = Happy Animals
   |author  = StarPeanut
+
   |author  = StarPeanut, Greger
  |author2  = Greger
 
 
   |id      = HappyAnimals
 
   |id      = HappyAnimals
 
   |nexus id =  
 
   |nexus id =  
Line 4,838: Line 4,835:
 
}}
 
}}
 
{{/entry
 
{{/entry
   |name    = Less Strict Over-Exertion
+
   |name    = Less Strict Over-Exertion, AntiExhaustion
  |name2    = AntiExhaustion
 
 
   |author  = Permamiss
 
   |author  = Permamiss
 
   |id      = BALANCEMOD_AntiExhaustion
 
   |id      = BALANCEMOD_AntiExhaustion
Line 4,859: Line 4,855:
 
}}
 
}}
 
{{/entry
 
{{/entry
   |name    = Message Box API
+
   |name    = Message Box API, ChatMod
  |name2    = ChatMod
 
 
   |author  = Kithio
 
   |author  = Kithio
 
   |id      = Kithio:ChatMod
 
   |id      = Kithio:ChatMod
Line 4,880: Line 4,875:
 
{{/entry
 
{{/entry
 
   |name    = Mood Guard
 
   |name    = Mood Guard
   |author  = YonKuma
+
   |author  = YonKuma, kumarei
  |author2  = kumarei
 
 
   |id      = YonKuma.MoodGuard
 
   |id      = YonKuma.MoodGuard
 
   |nexus id = 1597
 
   |nexus id = 1597
Line 4,900: Line 4,894:
 
}}
 
}}
 
{{/entry
 
{{/entry
   |name    = Multiplayer Sell Price Fix
+
   |name    = Multiplayer Sell Price Fix, Fix-sellToStorePrice
  |name2    = Fix-sellToStorePrice
+
   |author  = Unremarkable, animavoro
   |author  = Unremarkable
 
  |author2  = animavoro
 
 
   |id      = unremarkable.fix-sellToStorePrice
 
   |id      = unremarkable.fix-sellToStorePrice
 
   |nexus id = 2135
 
   |nexus id = 2135
Line 4,921: Line 4,913:
 
}}
 
}}
 
{{/entry
 
{{/entry
   |name    = Personal Scepter
+
   |name    = Personal Scepter, Personal Return Scepter
  |name2    = Personal Return Scepter
 
 
   |author  = Alex Noddings
 
   |author  = Alex Noddings
 
   |id      = an.ownscepter
 
   |id      = an.ownscepter
Line 4,960: Line 4,951:
 
{{/entry
 
{{/entry
 
   |name    = Solar Eclipse Event
 
   |name    = Solar Eclipse Event
   |author  = Sakorona
+
   |author  = Sakorona, Kylindra, KoihimeNakamura
  |author2  = Kylindra or KoihimeNakamura
 
 
   |id      = KoihimeNakamura.SolarEclipseEvent
 
   |id      = KoihimeNakamura.SolarEclipseEvent
 
   |nexus id = 897
 
   |nexus id = 897
Line 4,999: Line 4,989:
 
}}
 
}}
 
{{/entry
 
{{/entry
   |name    = Teh Core
+
   |name    = Teh Core, Teh's Core Mod
  |name2    = Teh's Core Mod
 
 
   |author  = TehPers
 
   |author  = TehPers
 
   |id      = TehPers.Core
 
   |id      = TehPers.Core

Revision as of 18:50, 27 October 2018

Modding:Player Guide/header

SMAPI mod compatibility, July 2017 to present. See notable events which affect this chart.

Sometimes a mod will stop working due to a major game update; SMAPI automatically disables incompatible mods. This page lists known SMAPI mods and their compatibility with the latest versions, and explains how to fix broken mods if possible.

For players

What to do

  1. For each mod you have installed, follow the instructions in the list below. If it's not listed, try updating to its latest version.
  2. If a mod is still failing, post a message in the coordination thread (with your SMAPI log attached) and we'll help.

SMAPI mods

SMAPI mods (obsolete)

These mods are either obsolete, or have been abandoned by their authors and probably won't be updated unofficially. These will likely never be updated again.

XNB mods

See Modding:Using XNB mods.

For mod developers

Updating a mod

See migration guides. You can...

Creating an unofficial update

To avoid conflicting with official updates, here's the recommended way to create an unofficial update. This assumes you're creating a basic update (not a continuation or reinvention), and the code is on GitHub (adjust the steps accordingly if it's elsewhere).

  1. Fork the code.
  2. Make your changes to that fork (see updating a mod).
  3. Increase the version in manifest.json by 0.0.1 and add -unofficial.1-yourName.
    For example, if the current version is 1.0.0 and your name is SampleUser, change it to 1.0.1-unofficial.1-sampleUser. If you need to release a new unofficial update, just increment unofficial.1 to unofficial.2, etc. This ensures that official versions supersede unofficial ones (e.g. for update checks), and other users can release newer unofficial updates if needed.
  4. Push your changes to GitHub.
  5. Post a release package to the coordination thread with a link to your fork on GitHub.
    (If the mod uses the NuGet build package, there should be a release package named <mod name> <version>.zip in your bin folder.)
  6. Submit a pull request to the original author (if applicable).

Overall compatibility

 
48% are compatible or have a working alternative.
 
32% have an update coming soon.
 
20% are broken and not open-source.¹

¹ Many of these broke due to a Stardew Valley update. Some may be updated by their authors later.

Footnotes

  1. 1.0 1.1 This only shows whether a mod is compatible; it may have bugs unrelated to SMAPI compatibility.
  2. 2.00 2.01 2.02 2.03 2.04 2.05 2.06 2.07 2.08 2.09 2.10 2.11 2.12 2.13 2.14 2.15 2.16 2.17 2.18 2.19 2.20 2.21 2.22 2.23 If a mod says "use optional download", its main version isn't compatible but there's an official optional update. If the mod is on Nexus, click "Files" on the mod page and check for a newer version (often under 'optional files').