diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-04-14 23:55:08 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-04-14 23:55:08 -0400 |
commit | c0d0ad0282169a829ffee4808088ebf434ba498d (patch) | |
tree | 2afc81d1981ad66489daaae65d394f58ebf5f8a4 /docs | |
parent | fd136d34c5d4fbfc708eabf82a5eb9396d8a4756 (diff) | |
download | SMAPI-c0d0ad0282169a829ffee4808088ebf434ba498d.tar.gz SMAPI-c0d0ad0282169a829ffee4808088ebf434ba498d.tar.bz2 SMAPI-c0d0ad0282169a829ffee4808088ebf434ba498d.zip |
show simplified stack trace for deprecation notices
Diffstat (limited to 'docs')
-rw-r--r-- | docs/release-notes.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/release-notes.md b/docs/release-notes.md index fed92d8d..01ba6e30 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -57,6 +57,7 @@ the C# mod that loads them is updated. * Added `helper.Content.ParseAssetName` to get an `IAssetName` for an arbitrary asset key. * If an asset is loaded multiple times in the same tick, `IAssetLoader.CanLoad` and `IAssetEditor.CanEdit` are now cached unless invalidated by `helper.Content.InvalidateCache`. * The `ISemanticVersion` comparison methods (`CompareTo`, `IsBetween`, `IsNewerThan`, and `IsOlderThan`) now allow null values. A null version is always considered older than any non-null version per [best practices](https://docs.microsoft.com/en-us/dotnet/api/system.icomparable-1.compareto#remarks). + * Deprecation notices now show a shorter stack trace in most cases, so it's clearer where the deprecated code is in the mod. * Fixes: * Fixed the `SDate` constructor being case-sensitive. * Fixed support for using locale codes from custom languages in asset names (e.g. `Data/Achievements.eo-EU`). |