summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/ModHelpers/ModHelper.cs
AgeCommit message (Collapse)Author
2022-07-09raise deprecation levelsJesse Plamondon-Willard
2022-07-06fix build warningsJesse Plamondon-Willard
2022-06-20add flag to disable deprecated codeJesse Plamondon-Willard
2022-05-15reduce performance impact of deprecation warningsJesse Plamondon-Willard
Creating a stack is *very* slow, so it should be avoided if possible until after the duplicate-warning check.
2022-05-08avoid [Obsolete] without message for clarityJesse Plamondon-Willard
2022-04-19move deprecation code into namespaceJesse Plamondon-Willard
2022-04-14track full mod & stack metadata in queued deprecation warningsJesse Plamondon-Willard
2022-04-14track mod metadata reference in APIs for upcoming deprecation changesJesse Plamondon-Willard
2022-04-13enable nullable annotations in SMAPI where no changes are needed (#837)Jesse Plamondon-Willard
2022-04-06fix all warnings to simplify migration to nullable annotations (#837)Jesse Plamondon-Willard
2022-04-06enable nullable annotations by default (#837)Jesse Plamondon-Willard
This adds `#nullable disable` to all existing code (except where null is impossible like enum files), so it can be migrated incrementally.
2022-04-03fix incorrect deprecation warnings for helper.ContentJesse Plamondon-Willard
2022-03-27split helper.Content API into game/mod content APIsJesse Plamondon-Willard
2020-12-20update for split-screen modeJesse Plamondon-Willard
This includes splitting GameRunner (the main game instance) from Game1 (now a per-screen game state), adding a PerScreen<T> utility to simplify per-screen values, adding separate per-screen input handling and events, adding new Context fields for split-screen, and logging the screen ID in split-screen mode to distinguish log entries.
2020-08-30use inheritdocJesse Plamondon-Willard
2020-08-23minor cleanupJesse Plamondon-Willard
2019-09-14fix typos and inconsistent spellingJesse Plamondon-Willard
2019-09-14remove deprecated APIs (#606)Jesse Plamondon-Willard
2019-02-24bump deprecation levels for upcoming SMAPI 3.0 release (#606)Jesse Plamondon-Willard
2018-12-29increase deprecation levels for the upcoming SMAPI 3.0Jesse Plamondon-Willard
2018-12-13simplify access to deprecation manager for deprecation warningsJesse Plamondon-Willard
2018-12-13tweak new API method nameJesse Plamondon-Willard
2018-12-13add content pack APIJesse Plamondon-Willard
2018-12-05add helper.CreateTemporaryContentPack to replace deprecated transitional methodJesse Plamondon-Willard
2018-12-04add SMAPI 3.0 compatibility strict mode (#606)Jesse Plamondon-Willard
2018-11-16fix content packs always failing to load if they declare a dependency on a ↵Jesse Plamondon-Willard
SMAPI mod
2018-08-22fix deprecated Read/WriteJsonFiles method enforcing newer restrictions (#468)Jesse Plamondon-Willard
2018-08-19add data API (#468)Jesse Plamondon-Willard
2018-08-11add support for loading unpacked .json files through content API (#576)Jesse Plamondon-Willard
2018-06-24merge IManifest interfaces into new project (#532)Jesse Plamondon-Willard
2018-06-05move manifest parsing into toolkit (#532)Jesse Plamondon-Willard
2018-06-02Merge branch 'create-toolkit' into developJesse Plamondon-Willard
2018-06-02add input APIJesse Plamondon-Willard
2018-05-31move location events into new event system (#310)Jesse Plamondon-Willard
2018-05-25move PathUtilities into toolkit (#532)Jesse Plamondon-Willard
2018-05-10fix documentation warningsJesse Plamondon-Willard
2018-04-28add initial multiplayer API (#480)Jesse Plamondon-Willard
2018-02-20support transitional content packs (#436)Jesse Plamondon-Willard
This commit adds an API to generate a content pack from an arbitrary folder, to support mods which already had their own content pack format before SMAPI standardised it. This lets them support both formats using the same APIs while they transition.
2018-02-19normalise path separators in read/write JSON file methods exposed to modsJesse Plamondon-Willard
2018-02-17add content pack feature (#436)Jesse Plamondon-Willard
2017-10-07reorganise repo structureJesse Plamondon-Willard