- Fixed error migrating pre-Stardew-Valley-1.6 location edits in some cases.
Released 28 May 2025 for SMAPI 4.1.10 or later.
- Fixed content packs which incorrectly set
EndSlideShowinData/Charactersto a true/false value.
Content Patcher 2.7.0 fixed a bug that allowed setting enum fields to a boolean value; 2.7.1 adds a format migration so older content packs will work like before.
Released 27 May 2025 for SMAPI 4.1.10 or later. See release highlights.
- The
Prioritypatch field is now sent to SMAPI to influence patch order relative to non-Content Patcher mods too (thanks to ichortower!). - The
patch exportcommand now auto-detects the type for all vanilla top-level data assets (thanks to SinZ!). - Fixed
EditDatapatches appending to a list/dictionary field instead of replacing it in some cases. - Fixed
EditData's handling of certain Windows-only data formats when playing on Android/Linux/macOS. - Fixed
EditData's handling of data model fields with tokens in both the name and value (thanks to SinZ!). - Fixed
EditDataincorrectly allowing true/false values for enum fields and mapping them transitively (liketrue→1→"MainGroup"). - Clarified in token docs that tokens use NPCs' internal names (thanks to DenisSilent!).
Update notes for players:
If you see new errors after updating Content Patcher, make sure you update your other mods to their
latest versions. If the errors still happen, feel free to report them on the Content Patcher mod
page.
Update notes for mod authors:
- Previously all patches were sent to SMAPI with a priority of
Exclusive(load) orDefault(edit). Content Patcher now sends thePriorityvalue instead if set, so the priority is relative to non-Content Patcher mods too. This may change the order of some edits. EditDatano longer appends to a list/dictionary in some cases instead of replacing.
Released 27 March 2025 for SMAPI 4.1.10 or later.
- Fixed 'unsupported format version 2.6.0' error when mods set
"Format": "2.6.0".
Released 26 March 2025 for SMAPI 4.1.10 or later. See release highlights.
- Added
AddNpcWarpsfield inEditMappatches. - Added
defaultKeysoption for thei18ntoken. - Fixed some cases where a local token on an
Includepatch wasn't available in the included patches.
Released 08 February 2025 for SMAPI 4.1.10 or later.
- Fixed backwards compatibility with Content Patcher Animations.
Released 07 February 2025 for SMAPI 4.1.10 or later.
- Internal changes to Generic Mod Config Menu integration.
Released 13 January 2025 for SMAPI 4.1.10 or later.
- Improved the new local tokens feature:
- Local tokens can now use field tokens like
{{FromFile}}, but can no longer be used in theFromFileandTargetfields (except when inherited). - Fixed local tokens not working in some patch fields.
- Fixed error loading patches with non-ready local tokens.
- Fixed patches not updated correctly when a local token uses another token whose value changed.
- Local tokens can now use field tokens like
- Fixed dynamic tokens not applied immediately on load if their initial value is ready.
Released 11 January 2025 for SMAPI 4.1.10 or later. See release highlights.
- Added local tokens feature (thanks to collaboration with spacechase0!).
- When a list entry can't be moved via
MoveEntriesbecause the given ID doesn't exist, Content Patcher now logs aTRACEmessage instead ofWARN. - Fixed warnings for mods using
HeartsorRelationshipconditions with an NPC who's in the data but not added to the world yet. - Fixed
patch_summaryerror if a patch has a null target.
Released 08 November 2024 for SMAPI 4.1.6 or later.
- In SMAPI 4.1.x, gender-switch blocks are preprocessed automatically by default. That no longer applies to the
{{i18n}}token.
That didn't work with patch update rates, and gender-switch blocks still work fine for translations passed to the game since they'll be parsed by the game. - Fixed
{{i18n}}making text lowercase if the entire text matches a special case liketrueorfalse.
Released 07 November 2024 for SMAPI 4.1.5 or later.
- Fixed
i18ntokens containing gender-switch blocks not updating when the gender changes.
Released 05 November 2024 for SMAPI 4.1.4 or later.
- Fixed
CustomLocationslocations not working in Stardew Valley 1.6.9+.
Released 04 November 2024 for SMAPI 4.1.2 or later.
- Fixed the previous update being broken on Linux/macOS.
Released 04 November 2024 for SMAPI 4.1.0 or later. See the release highlights.
- Updated for Stardew Valley 1.6.9.
- Added
ReplaceDelimitedtext operation (thanks to dmorsecode!). - The
patch reloadcommand can now reload patches from a specificIncludepatch (thanks to spacechase0!). - Fixed
EditMappatches with multipleTargetorFromFilevalues not applyingSetProperties.
Released 29 June 2024 for SMAPI 4.0.7 or later. See the release highlights.
- Added support for editing list-of-value fields.
- The
patch summaryconsole command can now filter by asset name(s) using a newassetargument.
Released 08 June 2024 for SMAPI 4.0.7 or later. See the release highlights.
- Added new tokens:
FarmMapAssetfor the farm type's map asset name without theMaps/prefix (likeFarm_Combatfor the wilderness farm).HasVisitedLocationfor the locations a player has visited before.
- Re-enabled Content Patcher 2.1.0's locales change for all content packs.
This was temporarily disabled for older content packs in 2.1.1 so affected content packs could be updated. - Raised minimum versions to SMAPI 4.0.7 and Stardew Valley 1.6.4.
This avoids errors due to breaking changes in earlier 1.6 patches. - Internal refactoring.
- Fixed the
HavingChildandPregnanttokens not accounting for the newSpouseAdoptsfield inData/Characters.
Released 23 May 2024 for SMAPI 4.0.0 or later.
- Fixed some older content packs broken in Content Patcher 2.1.0+.
Released 23 May 2024 for SMAPI 4.0.0 or later.
- The localization changes in Content Patcher 2.1 now only apply to newer content packs, to avoid breaking content packs which depend on the old behavior.
Released 22 May 2024 for SMAPI 4.0.0 or later. See the release highlights.
- Added
TargetLocalefield to patch a specific localized variant (likeData/Bundles.fr-FRbut notData/Bundles, or vice versa). - Added token string API for C# mods (thanks to spacechase0!).
- Editing content pack settings through Generic Mod Config Menu now force-updates all patches to apply the config changes.
- Fixed some mod edits not applying correctly for non-English players.
- Fixed
MigrateIdsaction not applied correctly for some items (thanks to Digus!).
Update notes for mod authors:
- Content Patcher 2.1 changes how
"Action": "Load"patches are applied for non-English players. See the 2.1 migration guide for more info.
Released 15 April 2024 for SMAPI 4.0.0 or later.
- Fixed various issues caused by pre-1.6 content packs replacing data assets which changed format in 1.6.
- Fixed runtime migrations for pre-1.6 content packs letting them remove 1.6 content.
Released 07 April 2024 for SMAPI 4.0.0 or later.
- Fixed furniture from pre-Stardew-Valley-1.6 content packs shown in-game as "Unnamed Item".
Released 05 April 2024 for SMAPI 4.0.0 or later.
- Fixed
MigrateIdssetting incorrect sprite for former Json Assets items when Json Assets is still installed.
Released 04 April 2024 for SMAPI 4.0.0 or later.
- Content packs can now migrate Json Assets items to Content Patcher using the
MigrateIdstrigger action. This works even if the Json Assets content pack is no longer installed.
Released 26 March 2024 for SMAPI 4.0.0 or later.
- Fixed runtime migrations for...
- pre-1.6
Data/Locationspatches when the new asset has invalid spawn conditions; - pre-1.6
Data/ObjectInformationpatches which edit context tags (thanks to SinZ!), which fixes issues like mayonnaise machines not working when some older content packs are installed.
- pre-1.6
Released 20 March 2024 for SMAPI 4.0.0 or later.
- Fixed error migrating some content packs to Stardew Valley 1.6.
Released 19 March 2024 for SMAPI 4.0.0 or later. See the release highlights.
- Updated for Stardew Valley 1.6.
- Added load & edit priorities (see updated action docs).
- Added
ModIdtoken to get the unique ID of the current content pack. - Added runtime migrations for content assets which changed in Stardew Valley 1.6. (Thanks to SinZ for the help creating some of the main migrations!)
- Added trigger action to change content IDs automatically (see new docs).
- Deprecated
CustomLocations. This is now a shortcut for editing the newData/Locationsasset, and now allows the new location name format. - Removed
GroupEditsByModconfig option. Edits are now grouped automatically based on mod and priority. - Fixed off-by-one position with
MoveEntrieswhen the target entry is already before the anchor entry. - Fixed some tokens being briefly unavailable during part of the save load process (notably
HeartsandRelationship). This affected some specific cases like editing island resort dialogue. - Fixed some cases where a
HasModcondition didn't properly prevent warnings when using a token provided by that mod if it's not installed (thanks to SinZ!).
Update notes for mod authors:
- Stardew Valley 1.6 has major content changes. Your content packs may still work due to the new runtime migrations, but these can have a significant performance impact. Updating your code to the latest format is strongly recommended.
Released 01 December 2023 for SMAPI 3.18.1 or later.
- When a patch fails, Content Patcher now lists all issues in
patch summaryinstead of the first one. - Fixed edge cases where validation fails due to commented-out code in the content pack (thanks to atravita!).
Released 01 November 2023 for SMAPI 3.18.1 or later.
- Re-enabled optimizations disabled in 1.30.2.
- Fixed unhandled exception when loading patches with immutable-but-broken tokens.
- Fixed
Formatnot recognizing version 1.30.0.
Released 04 October 2023 for SMAPI 3.18.1 or later.
- Temporarily disabled 1.30.0 optimizations to fix "Can't get values from a non-ready token string" warnings.
Released 03 October 2023 for SMAPI 3.18.1 or later.
- Fixed some edits no longer applied in 1.30.0.
Released 03 October 2023 for SMAPI 3.18.1 or later. See the release highlights.
- Optimized deterministic token input (thanks to SinZ!). This significantly improves performance for content packs which use
Rangefor time checks or other large ranges. - Fixed
EditMap'sMapTilesremoving current tile properties on the tiles being edited. - Fixed error setting a property name to a token value when that token isn't ready. The patch will now be correctly marked non-ready instead.
- Fixed debug overlay on Android.
Released 27 August 2023 for SMAPI 3.18.1 or later.
- The
patch exportcommand is now better at guessing the export type for assets that aren't loaded yet (thanks to atravita!). - Fixed
EditDatareplacing fields explicitly set to null with empty strings. - Fixed
IsJojaMartCompletetoken not working consistently. - Fixed
Rendertoken incorrectly including named arguments.
Released 26 June 2023 for SMAPI 3.18.1 or later.
- Fixed error migrating some older content packs after 1.29.2.
Released 25 June 2023 for SMAPI 3.18.1 or later.
- Using
TargetFieldto add an entry to a null list or dictionary now auto-creates it. - Improved errors when an
EditDatapatch can't convert the data to the asset type or a target field doesn't exist. - Embedded
.pdbdata into the DLL, which fixes error line numbers in Linux/macOS logs. - Fixed setting map/tile properties to null no longer removing them.
- Fixed some migrations not applied to files loaded via
Action: Include.
Released 31 March 2023 for SMAPI 3.18.1 or later.
- Fixed
Formatversion 1.29.0 not recognized.
Released 30 March 2023 for SMAPI 3.18.1 or later. See the release highlights.
- You can now edit more complex mod data models using
EditData. This fixes many cases where you'd encounter an error like "this asset has X values (but Y values were provided)". - Improved
patch exportcommand:- Added support for custom data types.
- Added support for maps (thanks to atravita!).
- Enum fields are now exported as their constant name instead of their numeric value.
- Added friendly error if an image can't be resized due to changes by Sprites in Detail.
- Raised min SMAPI version to 3.18.1 to prepare for the upcoming Stardew Valley 1.6.
Released 09 January 2023 for SMAPI 3.15.0 or later.
- Updated
EditDataID detection for the upcoming Stardew Valley 1.6. - Improved error handling for
MoveEntries.
Released 30 October 2022 for SMAPI 3.15.0 or later.
- Updated integration with Generic Mod Config Menu.
- Fixed
Includepatches still trying to load when non-ready. - Fixed error migrating locations from TMXL Map Toolkit when it has duplicate location data.
Released 10 October 2022 for SMAPI 3.15.0 or later.
- Improved performance and reduced memory usage when parsing tokenizable strings (thanks to atravita!).
- Reduced memory usage for loaded content packs a bit.
- Disabled the compatibility workaround for PyTK when running in SMAPI strict mode.
Released 29 August 2022 for SMAPI 3.15.0 or later.
- Updated compatibility workaround for the recent PyTK update.
Released 18 August 2022 for SMAPI 3.15.0 or later. See the release highlights.
- Added
RemoveDelimitedtext operation (thanks to Shockah!).
Released 04 July 2022 for SMAPI 3.15.0 or later.
- Fixed patches with tokenized
Targetfields not correctly reapplied on token change after 1.26.6. - Fixed typo in PyTK compatibility message (it applies to PyTK 1.23.0 or earlier, not 1.23.1).
Released 19 June 2022 for SMAPI 3.15.0 or later.
- Fixed compatibility with PyTK's scale-up feature.
When PyTK 1.23.0 or earlier is installed, this will disable the main performance improvements in Content Patcher 1.27.0.
Released 17 June 2022 for SMAPI 3.15.0 or later. See the release highlights.
- Migrated image edits to SMAPI's new
IRawTextureDataasset type to reduce load times and improve performance. - Optimized token updates to reduce in-game lag for some players.
Released 05 June 2022 for SMAPI 3.14.0 or later.
- Rewrote patch change tracking, which should significantly improve load times and performance in some cases.
- Improved error when adding an invalid entry to a data model asset.
Released 27 May 2022 for SMAPI 3.14.0 or later.
- Fixed
EditDatapatches in older content packs not applied correctly ifFromFilehas an immutable value.
Released 22 May 2022 for SMAPI 3.14.0 or later.
- Optimized load times and in-game performance.
- Optimized redundant reindex on context updates (thanks to SinZ163!).
- Fixed config UI dropdown values no longer matching order listed in
ConfigSchema. - Fixed custom tokens sometimes failing in SMAPI 3.14 with 'rejected token … because it could not be mapped' error.
Released 16 May 2022 for SMAPI 3.14.0 or later.
- Fixed token normalization not applied to conditions in 1.26.2.
Released 15 May 2022 for SMAPI 3.14.0 or later.
- Optimized performance and memory allocation:
- Migrated to immutable sets internally, so Content Patcher can avoid copying values in many cases.
- Added predefined sets for common values to reduce allocations.
- Optimized token normalization, string splitting,
EditDataedits, and{{time}}formatting. - Removed unneeded array copies.
- Fixed error when passing a null input to the
LowerCase/UpperCaseorRendertokens. - Fixed
EditDatapatches in older content packs not updated if theirFromFilechanges.
Released 11 May 2022 for SMAPI 3.14.0 or later.
- Optimized performance and memory allocation:
- Reduced time spent updating patches (they now stop updating at the first unready field).
- Reduced allocations for immutable values and empty inputs.
- Removed unneeded/recursive yields.
- Fixed content packs which include the
.xnbextension in theTargetfield. - Fixed error when a content pack uses
HasFileorFirstValidFilewith a path which contains only empty tokens before the first path separator.
Released 09 May 2022 for SMAPI 3.14.0 or later. See the release highlights.
- Updated for SMAPI 3.14.0.
- Added support for config UI sections (thanks to Shockah!).
- The
patch exportconsole command's optional type argument can now beimageor an unqualified type name (thanks to atravita!). - Fixed content packs reloaded unnecessarily on startup.
- Fixed
patch summaryshowing non-ready token values in some cases.
Released 27 February 2022 for SMAPI 3.13.0 or later. See the release highlights.
EditDatapatches are now more powerful. You can now...- edit deeply nested fields using
TargetField; - edit arbitrary data models;
- edit list entries by their index position;
- and patch past the end of a delimited string field using
Fields.
- edit deeply nested fields using
- Added token aliases (thanks to Shockah!).
- Added new tokens:
AbsoluteFilePathto get the full path for a file in the content pack folder.FormatAssetNameto normalize an asset name into the form expected by the game.InternalAssetKeyto let the game load a file directly from your content pack without needing toLoadit separately.
- Added
AnyPlayeroption for player tokens. - The
Formatfield now ignores the third number, so1.25.1is equivalent to1.25.0instead of showing an error. - Improved startup times:
- Internal optimizations (thanks to Michael Kuklinski / Ameisen!).
- Fixed content packs being loaded/validated twice per screen.
- Fixed error loading a patch which has some required fields missing.
- Fixed float rounding in
DailyLucktoken. - Removed warning for null patches (they're now silently ignored instead).
- Removed
Enabledfield in newerFormatversions.
Update notes for mod authors:
The Enabled patch field is no longer supported when the Format field is 1.25.0 or later. See the
migration guide for more info.
Released 14 January 2022 for SMAPI 3.13.0 or later.
- Fixed patches added through
Action: Includenot applied immediately in some cases. - Fixed
Randomvalues not in sync in multiplayer in Stardew Valley 1.5.5+.
Released 25 December 2021 for SMAPI 3.13.0 or later.
- Fixed load error in the previous update.
Released 25 December 2021 for SMAPI 3.13.0 or later.
- Fixed location tokens unready during part of the save loading process.
- Fixed minimum supported Generic Mod Config Menu version.
- Internal changes to support Content Patcher Animations.
- Internal optimizations.
Released 30 November 2021 for SMAPI 3.13.0 or later.
- Updated for Stardew Valley 1.5.5 and SMAPI 3.13.0 (including new game features like custom languages and farm types).
Released 27 November 2021 for SMAPI 3.12.6 or later.
- Fixed "failed in the Specialized.LoadStageChanged event" error in some cases when loading a save.
Released 12 November 2021 for SMAPI 3.12.6 or later.
- Fixed
DayOfWeektoken set incorrectly on some days after 1.24.0. - Fixed error loading older saves in some cases.
- Fixed error getting weather for a non-standard location context.
- Fixed error using
Count,Lowercase/Uppercase, orRenderwith empty tokens as input. - Fixed tokens parsed incorrectly in edge case when nesting unready tokens which have named arguments.
Released 01 November 2021 for SMAPI 3.12.6 or later.
- Fixed player tokens not defaulting to the current player while save is loading.
- Fixed 'no translation' tooltips shown for config fields with no description.
Released 31 October 2021 for SMAPI 3.12.6 or later.
- Fixed error when
{{Merge}}is called with all input tokens empty.
Released 31 October 2021 for SMAPI 3.12.6 or later. See the release highlights.
- Added new tokens:
HasCookingRecipeandHasCraftingRecipeto get the crafting/cooking recipes known by a player.LocationOwnerIdto get the player who owns a cabin, cellar, building, etc.Mergeto combine tokens inWhenconditions or perform value fallback.PathPartto get part of a file/asset path (e.g. for patches with multipleTargetorFromFilevalues).Roommateto get a player's roommate NPC (similar toSpousefor a married NPC).
- Added support for translating content pack config options in Generic Mod Config Menu.
- Improved tokens:
- Tokens which let you specify a player type now accept player IDs too (like
{{PlayerName: 3864039824286870457}}). - You can now get per-player values for more tokens (specifically
IsMainPlayer,IsOutdoors,LocationContext,LocationName,LocationUniqueName,PlayerGender,PlayerName, andSpouse).
- Tokens which let you specify a player type now accept player IDs too (like
- Improved context updates:
- Built-in tokens are now available immediately after the raw save file is read, before the game even starts loading it.
- The
HeartsandRelationshipstokens are now available before the save is fully loaded. - Improved performance (especially for immutable patches and conditions).
- Improved console commands:
- Added
unsortedoption forpatch summary. - Added
compactoption forpatch parse.
- Added
- Updated for Generic Mod Config Menu 1.5.0.
- Fixed error using
Target*andFromFiletokens as a condition key. - Fixed conditions parsed through the C# API unable to use custom tokens added by the same mod.
- Fixed error when a mod manifest has dependencies with no ID.
- Fixed patch conditions not updated in rare cases.
Update notes for mod authors:
- The
Spousetoken no longer includes roommates when theFormatfield is1.24.0or later. - Some tokens now return values in a different order.
See the migration guide for more info.
Released 18 September 2021 for SMAPI 3.12.6 or later.
- Fixed patches which use the
i18ntoken not always updated on language change. - Fixed
HasModcondition not enabling mod-provided tokens within the sameWhenblock.
Released 04 September 2021 for SMAPI 3.12.6 or later.
- Fixed compatibility with the upcoming Stardew Valley 1.5.5.
Released 24 July 2021 for SMAPI 3.9.5 or later.
- Improved patch validation to detect more common mistakes:
- using an
Includepatch with aTargetfield; - using a field reference token when the patch doesn't have that field.
- using an
- Tweaked the naming for patches with multiple
FromFile/Targetvalues to reduce confusion. - Fixed incorrect "file does not exist" warnings shown for
Includepatches that use tokens in theirFromFilefield.
Released 09 July 2021 for SMAPI 3.9.5 or later.
- Added
patch invalidateconsole command. - Fixed issue where editing a list field using
EditDataandFieldswould append the values instead of replacing them. - Fixed broken custom locations also preventing valid custom locations from loading.
- Fixed
Querytoken not allowing queries that contain a comma. - Fixed include-file-doesn't-exist message incorrectly logged as
TRACEinstead ofWARN. - Fixed error using
patch exportcommand with theData\RandomBundlesfile.
Released 25 May 2021 for SMAPI 3.9.5 or later.
EditMappatches withFromFileno longer requireToArea. (It now defaults defaults to an area starting from the the top-left.)- Fixed 'unknown reserved argument' errors in Content Patcher 1.23.0 for content packs which use
inputSeparator.
Released 25 May 2021 for SMAPI 3.9.5 or later. See the release highlights.
- Added
valueAtargument to get one value from any token. - Added
TextOperationssupport forEditDatafields. - Added new tokens:
ChildGendersandChildNamesto get the genders/names of a given player's children.Countto get the number of values in a token (e.g.{{Count: {{HasActiveQuest}} }}for the number of active quests).HasCaughtFishto get fish caught by a player.
- Improved sort order used in token values, patch commands, and error messages.
- Fixed patches not applied correctly in some cases when added by a conditional
Includepatch. - Fixed error if
EnableDebugFeaturesis enabled and a debug overlay navigation key is pressed without a debug overlay open. - Fixed tokens which accept a
PlayerTypeargument always marked as returning multiple values for input arguments.
Note for SMAPI mod authors:
If you use the extensibility API to add custom tokens, the order of values
they return affects the valueAt argument.
Released 17 April 2021 for SMAPI 3.9.5 or later. See the release highlights.
- Added a conditions API, which lets other mods parse and use Content Patcher conditions.
- Added new tokens:
FirstValidFileto enable fallback files without duplicating patches.HasActiveQuestto check a player's current quest list.
- Improved console commands:
- Added
patch exportargument to optionally set the data type. - Tweaked console command handling.
- Fixed
patch exportfor an asset that's not already loaded causing the wrong data type to be cached.
- Added
- The latest
Formatversion now always matches the main Content Patcher version. Previously it only changed if the format changed. - Fixed default log names for patches with multiple
FromFileorTargetvalues.
Released 27 March 2021 for SMAPI 3.9.5 or later.
- Simplified 'unsupported format' message to avoid confusion when players need to update Content Patcher.
- When using Generic Mod Config Menu, you can now configure content packs in-game after loading the save.
- Fixed error when editing entries in
Data\RandomBundles. - Fixed misplaced warps when replacing some farm types.
- Fixed setting a map tile property to
nullnot deleting it. - Fixed compatibility with unofficial 64-bit mode.
Released 07 March 2021 for SMAPI 3.9.3 or later.
- Fixed 'changes the save serializer' warning in 1.21.
Released 07 March 2021 for SMAPI 3.9.3 or later. See the release highlights.
- Added support for creating custom locations.
- Added
AddWarpsfield inEditMappatches. - Added new tokens:
Renderto allow string comparison inWhenblocks.DailyLuckto get a player's daily luck (thanks to Thom1729!).
- The
FarmhouseUpgradetoken can now check either the current player (default) or the host player. - The
Enabledfield no longer allows tokens (in format version 1.21.0+). - Improved default
LogNamefor patches with multipleTargetorFromFilevalues. - Improved split-screen support.
- Fixed changes through Generic Mod Config Menu not correctly updating dynamic tokens and
Enabledfields. - Fixed
patch reloadcommand not reapplying format migrations to reloaded patches. - Fixed error patching
Data\ConcessionsusingEditData.
Update note for mod authors:
If you use tokens in the Enabled field, updating the Format field to 1.21.0 or later will
cause errors. See the migration guide for more info.
Released 06 February 2021 for SMAPI 3.9.0 or later. See the release highlights.
- Improved tokens:
- Added
LocationContext(the world area recognized by the game likeIslandorValley). - Added
LocationUniqueName(the unique name for constructed building and cabin interiors). Weathernow returns weather for the current location context by default, instead of always returning the valley's weather.- You can now use an optional argument like
{{Weather: Valley}}to get the weather for a specific context.
- Added
- You can now set translation token values through
i18ntoken arguments. - Added console commands:
patch dump appliedshows all active patches grouped by target in their apply order, including whether each patch is applied.patch dump ordershows the global definition order for all loaded patches.
- Fixed patch order not guaranteed when
Includepatches get reloaded. - Improved performance for content packs using tokenized conditions in patches updated on time change.
- Config fields consisting of a numeric range are now formatted as a slider in Generic Mod Config Menu.
Update note for mod authors:
If you use the Weather token, updating the Format field to 1.20.0 or later changes its
behavior. See the migration guide for more info.
Released 23 January 2021 for SMAPI 3.9.0 or later.
- Updated for multi-key bindings in SMAPI 3.9.
Released 10 January 2021 for SMAPI 3.8.0 or later.
- Fixed
Includepatches skipped if they have multipleFromFilevalues. - Fixed
FarmTypetoken returningCustomfor the beach farm; it now returnsBeachinstead. - Fixed patches not applied for farmhands in some highly specific cases resulting in an invalid input arguments error.
Released 04 January 2021 for SMAPI 3.8.0 or later.
- Improved
patch summarycommand:- Added optional arguments to filter by content packs IDs.
- Long token values are now truncated to 200 characters by default to improve readability. You can use
patch summary fullto see the full summary.
Released 21 December 2020 for SMAPI 3.8.0 or later.
- Updated for Stardew Valley 1.5, including...
- split-screen mode and UI scaling;
- added
KeyToTheTownvalue toHasWalletItemtoken.
- Fixed patch not applied correctly if
FromFileorTargetcontains a single value with a trailing comma.
Released 05 December 2020 for SMAPI 3.7.3 or later. See the release highlights.
- Added query expressions.
- Added support for updating patches on in-game time change.
- Added support for patches with multiple
FromFilevalues. - Added map patch modes for
"Action": "EditMap". - Added
Timetoken. - Custom mod tokens can now normalize raw values before comparison.
- Fixed
{{DayEvent}}translating festival names when not playing in English. - Fixed error when
FromFilehas tokens containing comma-delimited input arguments.
Released 21 November 2020 for SMAPI 3.7.3 or later.
- Fixed validation for
Includepatches in 1.18.5.
Released 21 November 2020 for SMAPI 3.7.3 or later.
- Improved error-handling for some content packs with invalid formats.
- Fixed
EditDatapatches with multiple targets sometimes applied incorrectly to some targets.
Released 04 November 2020 for SMAPI 3.7.3 or later.
- Fixed tokens which use input arguments failing to update silently in rare cases.
- Fixed 'collection was modified' error in some cases when patching a data model asset.
Released 15 October 2020 for SMAPI 3.7.3 or later.
- Added support for setting the default value for an
i18ntoken. - Fixed
i18ntoken not accepting named arguments. - Fixed error-handling for invalid
Includepatches. - Fixed errors using a dynamic token in some cases when it's set to the value of an immutable token like
{{HasMod |contains=X}}.
Released 13 September 2020 for SMAPI 3.7.2 or later.
ConfigSchemaoptions can now have an optionalDescriptionfield, which is shown in UIs like Generic Mod Config Menu.- Fixed
TextOperationsincorrectly adding delimiters when there's no previous value. - Fixed errors sometimes showing "ContentPatcher.Framework.Conditions.TokenString" instead of the intended value.
- Fixed error when using a field reference token as the only input to a token which requires input.
Released 13 September 2020 for SMAPI 3.7.2 or later.
- Fixed format issue when applying field edits to
Data\Achievements.
Released 12 September 2020 for SMAPI 3.7.2 or later. See the release highlights.
- Added content pack translation support using
i18nfiles. - Added text operations, which let you change a value instead of replacing it (e.g. append to a map's
Warpproperty). - You can now configure content packs in-game if you have Generic Mod Config Menu installed (thanks to a collaboration with spacechase0!). This works automatically for any content pack that has configuration options, no changes needed by mod authors.
- You can now edit fields via
EditDataforData\Achievementstoo. - Patches now update immediately when you change language.
- Fixed
EditDatapatches not always updated if they useFromFileto load a file containing tokens. - Fixed patches not always updated for a
Randomtoken reroll. - Fixed error text when an
EditDatapatch uses an invalid field index. - Removed support for
FromFileinEditDatapatches in newer format versions.
Update note for mod authors:
If you use the FromFile field with EditData patches, updating the Format field to 1.18.0 or
later requires changes to your content.json. See the
migration guide for more info.
Released 28 August 2020 for SMAPI 3.6.0 or later.
- Fixed patches not always updated if they depend on mod-provided tokens that incorrectly change outside a context update.
Released 19 August 2020 for SMAPI 3.6.0 or later.
- Made 'multiple patches want to load asset' errors more user-friendly.
- Fixed error in some cases when warping to a new location as a farmhand in multiplayer.
- Fixed error editing an image previously loaded through the Scale Up mod.
Released 16 August 2020 for SMAPI 3.6.0 or later. See the release highlights for mod authors.
- Patches can now optionally update on location change, including all tokens (not only location-specific tokens).
- Patches can now resize maps automatically using
Action: EditMap(just patch past the bottom or right edges). - Added
TargetPathOnlytoken (the target field value for the current patch, without the filename). - Added
patch reloadconsole command (thanks to spacechase0!). - Added troubleshooting hints related to update rate in
patch summaryconsole command. - Removed legacy token API obsolete since Content Patcher 1.12.
- Fixed ambiguous-method detection in advanced API.
- Internal changes to prepare for realtime content updates.
Update note for mod authors:
If you use the LocationName or IsOutdoors token/condition, updating the Format field to
1.17.0 or later requires changes to your content.json. See the
migration guide for more info.
Released 12 August 2020 for SMAPI 3.6.0 or later.
- Fixed 'collection was modified' error when unloading
Action: Includepatches.
Released 08 August 2020 for SMAPI 3.6.0 or later.
- Fixed incorrect token input validation in some cases with 1.16.2.
Released 08 August 2020 for SMAPI 3.6.0 or later.
- Fixed patches not always unapplied when an
Includepatch changes. - Fixed error using some tokens within the
containsinput argument. - Fixed broken error message when multiple load patches apply in 1.16.
Released 03 August 2020 for SMAPI 3.6.0 or later.
- Fixed some patches not applied correctly in 1.16.
Released 02 August 2020 for SMAPI 3.6.0 or later. See the release highlights for mod authors.
- Added an
Includeaction to load patches from another JSON file. That includes full token support, so you can load files dynamically or conditionally. - Randomization is now consistent between players, regardless of installed content packs.
- Content packs containing
nullpatches are no longer disabled; instead those patches are now skipped with a warning. - Improved performance when updating very large content packs.
- Fixed boolean/numeric fields rejecting tokens with surrounding whitespace like
" {{SomeToken}} ". - Fixed auto-generated patch names not normalising path separators.
- Fixed
patch summaryshowing duplicate target paths in some cases. - Fixed string sorting/comparison for some special characters.
- Internal changes to prepare for realtime content updates.
Update note for mod authors:
Using "Action": "EditData" with a FromFile field is now deprecated, though it still works.
Migrating to an "Action": "Include" patch is recommended; it's more flexible and works more
intuitively. (That doesn't apply to "Action": "EditData" patches without a FromFile field.)
Released 21 July 2020 for SMAPI 3.6.1 or later.
- Fixed error using
HasFilewith filenames containing commas. - Fixed broken patches preventing other patches from being applied/updated in rare cases.
- Internal changes to prepare for 1.16.
Released 06 July 2020 for SMAPI 3.6.1 or later.
- Fixed error loading pre-1.15 content packs that use a token with empty input arguments like
{{token:}}.
Released 04 July 2020 for SMAPI 3.6.1 or later. See the release highlights for mod authors.
- Added named token arguments.
- Added a universal
|contains=argument to search token values. - Added a universal
|inputSeparator=argument to allow commas in input values using a custom separator. - Added a
keyargument to{{Random}}. - Several player tokens now let you choose whether to check the host player, current player, or both.
- Added
HasConversationTopictoken. - Reduced trace logs when a mod adds many custom tokens.
- Fixed custom tokens added by other mods able to break Content Patcher in some cases.
- Fixed support for tokens in a
From/ToArea'sWidthandHeightfields. - Fixed support for tokens in a
.jsonfile loaded throughAction: EditDatawith aFromFilepath containing tokens. - Fixed format migrations not applied to tokens within JSON objects.
- Fixed multiple input arguments allowed for tokens that only recognize one (like
{{HasFile: fileA.png, fileB.png}}). Doing so now shows an error.
Update note for mod authors:
Updating the Format field to 1.15.0 or later requires changes to your content.json. See the migration guide for more info.
Released 14 May 2020 for SMAPI 3.5.0 or later.
- Fixed patches not updating correctly in 1.14 when a changed token is only in their
FromFilefield.
Released 02 May 2020 for SMAPI 3.5.0 or later. See the release highlights for mod authors.
- Added
Roundtoken. - Added
FromFilepatch token (e.g. so you can do"HasFile:{{FromFile}}": true). - The
patch exportcommand can now export assets that haven't been loaded yet. - Fixed
Rangetoken excluding its upper bound. - Fixed validation for
Targetfields containing{{Target}}and{{TargetWithoutPath}}tokens. - Fixed validation for
Targetfields not shown inpatch summaryin some cases. - Fixed 'file does not exist' error when the
FromFilepath is ready and doesn't exist, but the patch is disabled by a patch-specific condition. - Fixed error when removing a map tile without edits.
- Fixed token handling in map tile/property fields.
- Fixed format validation for 1.13 features not applied.
Released 09 March 2020 for SMAPI 3.3.0 or later. See the release highlights for mod authors.
- Added support for arithmetic expressions.
- Added support for editing map tiles.
- Added support for editing map tile properties.
- Added support for multi-key bindings (like
LeftShift + F3). EditMappatches now also copy layers and layer properties from the source map (thanks to mouse!).- Patches are now applied in the order listed more consistently.
- Improved logic for matching tilesheets when applying a map patch.
- Fixed incorrect warning when using
HasWalletItemtoken in 1.12.
Released 01 February 2020 for SMAPI 3.2.0 or later. See the release highlights for mod authors.
- Added advanced API to let other mods add more flexible tokens.
- Added support for mod-provided tokens in
EditDatafields. - Reduced trace logs when another mod adds a custom token.
- The
patch exportcommand now exports the asset cached by the game, instead of trying to load it. - Fixed dialogue and marriage dialogue changes not applied until the next day (via SMAPI 3.2).
- Fixed error when a data model patch uses an invalid token in its fields.
- Fixed whitespace between tokens being ignored (e.g.
{{season}} {{day}}now outputsSummer 14instead ofSummer14).
Released 27 December 2019 for SMAPI 3.0.1 or later.
- Mitigated
OutOfMemoryExceptionissue for some players. (The underlying issue in SMAPI is still being investigated.) - Reduced performance impact in some cases when warping with content packs which have a large number of seasonal changes.
- Fixed patches being reapplied unnecessarily in some cases.
- Fixed token validation not applied to the entire token string in some cases.
- Fixed
Randomtokens being rerolled when warping if the patch is location-dependent. - Fixed error when married to an NPC that's not loaded.
Released 15 December 2019 for SMAPI 3.0.1 or later. See the release highlights for mod authors.
- Added
LowercaseandUppercasetokens. Randomtokens can have 'pinned keys' to support many new scenarios (see readme).Randomtokens are now bounded for immutable choices (e.g. you can use them in numeric fields if all their choices are numeric).FromAreaandToAreafields can now use tokens (thanks to spacechase0!).- Optimized asset loading/editing a bit.
- Fixed warning when an
EditDatapatch references a file that doesn't exist when that's checked with aHasFilecondition. - Fixed
HasFiletoken being case-sensitive on Linux/Mac. - Fixed error if a content pack has a null patch.
Released 02 December 2019 for SMAPI 3.0.1 or later.
- Updated for Stardew Valley 1.4.0.1.
- Fixed error when an
EditDatapatch uses tokens inFromFilethat aren't available.
Released 26 November 2019 for SMAPI 3.0.0 or later. See the release highlights for mod authors.
- Updated for Stardew Valley 1.4, including new farm type.
- Added new tokens:
HavingChildandPregnant: check if an NPC/player is having a child.HasDialogueAnswer: the player's selected response IDs for question dialogues (thanks to mus-candidus!).IsJojaMartComplete: whether the player bought a Joja membership and completed all Joja bundles.Random: a random value from the given list.Range: a list of integers between the specified min/max values.
- Added support for editing map properties with
EditMappatches. - Added support for using
FromFilewithEditDatapatches. - Added
patch exportconsole command, which lets you see what an asset looks like with all changes applied. - Added
patch parseconsole command, which parses an arbitrary tokenizable string and shows the result. - Added new 'current changes' list for each content pack to
patch summaryoutput. - Added world state IDs to the
HasFlagtoken. - Added
manifest.jsonandcontent.jsonvalidator for content pack authors. - Content packs can now use mod-provided tokens without a dependency if the patch has an appropriate
HasModcondition. - Improved error if a content pack sets a
FromFilepath with invalid characters. - Fixed
HeartsandRelationshiptokens not working for unmet NPCs. They now return0andUnmetrespectively. - Fixed issue where dynamic tokens weren't correctly updated in some cases if they depend on another dynamic token whose conditions changed. (Thanks to kfahy!)
- Fixed
patch summarydisplay for mod-provided tokens which require an unbounded input. - Fixed
patch summarynot showing token input validation errors in some cases. - Fixed
NullReferenceExceptionin some cases with invalidEntrieskeys.
Released 25 July 2019 for SMAPI 2.11.2 or later.
- Fixed
Daytoken not allowing zero values. - Fixed dynamic tokens validated before they're ready.
- Fixed mod-provided tokens called with non-ready inputs in some cases.
- Fixed Linux/Mac players getting
HasFile-related errors in some cases.
Released 12 June 2019 for SMAPI 2.11.1 or later.
- Fixed error loading local XNB files in some cases with Content Patcher 1.9.
- Fixed mod-provided tokens being asked for values when they're marked non-ready.
Released 09 June 2019 for SMAPI 2.11.1 or later.
- Added API to let other mods create custom tokens and conditions.
- Fixed config parsing errors for some players.
- Fixed tokens not being validated consistently in some cases.
- Fixed a broken warning message.
Released 27 May 2019 for SMAPI 2.11.1 or later.
- Fixed some patches broken in Content Patcher 1.8.1.
- Fixed
EditMapworking with older format versions.
Released 26 May 2019 for SMAPI 2.11.1 or later.
- Improved
patch summary:- now tracks the reason a patch wasn't loaded (instead of showing a heuristic guess);
- added more info for local tokens;
- simplified some output.
- Improved errors when a local file doesn't exist.
- Fixed patch update bugs in Content Patcher 1.8.
Released 16 May 2019 for SMAPI 2.11.1 or later.
- Added new tokens:
IsOutdoors: whether the player is outdoors.LocationName: the name of the player's current location.Target: the target field value for the current patch.TargetWithoutPath: the target field value for the current patch (only the part after the last path separator).
- Added map patching.
- Added support for list assets in the upcoming Stardew Valley 1.4.
- Improved errors when token parsing fails.
- Fixed patches not applied in some cases.
- Fixed incorrect error message when
DefaultandAllowValuesconflict. - Fixed confusing errors when a content pack is broken and using an old format version.
Thanks to spacechase0 for contributions to support the new tokens!
Released 08 May 2019 for SMAPI 2.11.0 or later.
- Added new tokens:
HasReadLetter: whether the player has opened a given mail letter.HasValue: whether the input argument is non-blank, likeHasValue:{{spouse}}.IsCommunityCenterComplete: whether all bundles in the community center are completed.IsMainPlayer: whether the player is the main player.
- Tokens can now be nested (like
Hearts:{{spouse}}). - Tokens can now be used almost everywhere (including dynamic token values, condition values, and
Fieldskeys). - Tokens with multiple values can now be used as placeholders.
- Tokens from
config.jsoncan now be unrestricted (AllowValuesis now optional). - Improved input argument validation.
- Added support for new asset structures in the upcoming Stardew Valley 1.4.
- Fixed incorrect error text when dynamic/config tokens conflict.
- Fixed config schema issues logged as
Debuginstead ofWarning. - Removed support for the condition value subkey syntax (like
"Relationship": "Abigail:Married"instead of"Relationship:Abigail": "Married"). This only affects one content pack on Nexus.
Update note for mod authors:
Updating the Format field to 1.7.0 or later requires changes to your content.json. See the migration guide for more info.
Released 06 April 2019 for SMAPI 2.11.0 or later.
- Fixed
EditDataallowing field values containing/(which is the field delimiter). - Fixed error with upcoming SMAPI 3.0 changes.
- Fixed some broken maps in Stardew Valley 1.3.36 not detected.
- Fixed typo in some errors.
- Internal rewriting to support upcoming features.
Released 05 March 2019 for SMAPI 2.11.0 or later.
- Added detection for most custom maps broken by Stardew Valley 1.3.36 (they'll now be rejected instead of crashing the game).
Released 15 January 2019 for SMAPI 2.10.1 or later.
- Fixed some conditions not available for multiplayer farmhands after 1.6.2.
Released 04 January 2019 for SMAPI 2.10.1 or later.
- Conditions are now checked much sooner when loading a save, so early setup like map debris spawning can be affected conditionally.
- Fixed token subkey form not allowed in boolean fields.
- Updated for changes in the upcoming SMAPI 3.0.
Released 08 December 2018 for SMAPI 2.9.0 or later.
- Fixed error when a content pack has a patch with no
Targetfield. - Fixed some conditions using subkeys marked invalid incorrectly.
Released 08 December 2018 for SMAPI 2.9.0 or later.
- Added new tokens:
DaysPlayed: the number of in-game days played for the current save.HasWalletItem: the special items in the player wallet.SkillLevel: the player's level for a given skill.
- Added
Windvalue forWeathertoken. - Added support for matching subkey/value pairs like
"Relationship": "Abigail:Married, Marnie:Friend". - Added support for conditional map edits (via SMAPI 2.9).
- Added support for editing
Data\NPCDispositionsafter the NPC is already created (via SMAPI 2.9). - Improved performance for most content packs.
- Improved
patch summaryformat. - Updated for the upcoming SMAPI 3.0.
- Fixed language token always marked 'not valid in this context'.
- Fixed token strings not validated for format version compatibility.
- Fixed some 1.5 tokens not validated for format version compatibility.
Update note for mod authors:
Updating the Format field to 1.6.0 or later requires changes to your content.json. See the migration guide for more info.
Released 08 November 2018 for SMAPI 2.8.0 or later.
- Added
patch summaryhint ifTargetvalue incorrectly includes a file extension. - Migrated verbose logs to SMAPI's verbose logging feature.
- Fixed yet another error setting
EditDataentries tonullsince 1.5.
Released 29 September 2018 for SMAPI 2.8.0 or later.
- Improved
patch summaryoutput a bit. - Fixed another error setting
EditDataentries tonullsince 1.5.
Released 23 September 2018 for SMAPI 2.8.0 or later.
- Added token support in
EditDatakeys. - Fixed error setting
EditDataentries tonullsince 1.5. - Fixed error using tokens in
Enabledfield since 1.5.
Released 17 September 2018 for SMAPI 2.8.0 or later.
- Added support for dynamic tokens defined by the modder.
- Added new tokens:
FarmCave(the current farm cave type);FarmhouseUpgrade(the upgrade level for the main farmhouse);FarmName(the farm name);FarmType(the farm type likeStandardorWilderness);HasFile(whether a given file path exists in the content pack);HasProfession(whether the player has a given profession);PlayerGender(the player's gender);PlayerName(the player's name);PreferredPet(whether the player is a cat or dog person);Year(the year number).
- Added subkey form for all tokens, which can be used to enable AND logic and condition negation (see readme).
- Added: you can now use any condition with
Action: Loadpatches. - Added: you can now use tokens in
EditDataentries and fields. - Added: you can now list multiple values in the
Targetfield. - Added config tokens to
patch summary. - Added warning when a config field has
AllowValuesbut a patch checks for an unlisted value. - Removed some early warnings for issues like patch conflicts. That validation required a number of restrictions on how conditions and tokens could be used. Based on discussion with content pack modders, lifting those restrictions was more valuable than the early validation.
- Removed image preloading, which is no longer needed with SMAPI 2.8+.
- Fixed
patch summaryshowing tokens that aren't valid in the current context.
Released 26 August 2018 for SMAPI 2.8.0 or later.
- Updated for Stardew Valley 1.3.29.
- Fixed broken error message.
Released 01 August 2018 for SMAPI 2.6.0 or later.
- Updated for Stardew Valley 1.3 (including multiplayer support).
- Added new tokens:
DayEvent(the festival name or wedding today);HasFlag(the letters or flags set for the current player);HasMod(the installed mods and content packs);HasSeenEvent(the events seen by the current player);Hearts:<NPC>(the relationship type for a given NPC);Relationship:<NPC>(the relationship type for a given NPC);Spouse(the player's spouse name);
- Added support for deleting entries via
EditData. - Added warnings for common mistakes in
patch summaryresult. - Fixed case sensitivity issues in some cases.
Released 08 April 2018 for SMAPI 2.5.4 or later.
- Added more detailed info to
patch summarycommand. - Improved error handling for image edits.
- Fixed unnecessary warnings when a patch is disabled.
- Fixed error when a content pack's
config.jsonhas invalid keys.
Released 26 March 2018 for SMAPI 2.5.4 or later.
- Added support for patch conditions (with initial support for season, day of month, day of week, and language).
- Added support for content packs having
config.json. - Added support for condition/config tokens in
content.json. - Added
patch summaryandpatch updatecommands to simplify troubleshooting. - Added trace logs when a content pack loads/edits an asset.
- Added optional verbose logs.
- Added unique patch names (editable via
LogNamefield) to simplify troubleshooting. - Improved error when a patch specifies an invalid source/target area.
- Fixed issue where an exception in one patch prevented other patches from being applied.
- Fixed
Targetnot being normalized. - Fixed errors using debug overlay on Linux/Mac.
Released 09 March 2018 for SMAPI 2.5.2 or later.
- Added support for overlaying images.
- Added optional debug mode for modders.
FromFile,Target, and map tilesheets are now case-insensitive.- Fixed null fields not being ignored after warning.
Released 02 March 2018 for SMAPI 2.5.2 or later.
- Added
Enabledfield to disable individual patches (thanks to f4iTh!). - Added support for XNB files in
FromFile. - Added support for maps in
FromFilewhich reference unpacked PNG tilesheets.
Released 25 February 2018 for SMAPI 2.5.2 or later.
- Initial release.
- Added support for replacing assets, editing images, and editing data files.
- Added support for extending spritesheets.
- Added support for locale-specific changes.