summaryrefslogtreecommitdiff
path: root/src/SMAPI.Mods.ConsoleCommands/Framework
AgeCommit message (Collapse)Author
2022-12-28defer weapon data parsing until needed, handle invalid formatsJesse Plamondon-Willard
2022-12-07Replaced slingshot ID check with Type check.DaLion
2022-10-09optimize string splitsJesse Plamondon-Willard
2022-07-06update code annotationsJesse Plamondon-Willard
2022-04-13enable nullable annotations in bundled mods (#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-06remove some unused/redundant codeJesse Plamondon-Willard
2022-04-06simplify with newer pattern featuresJesse Plamondon-Willard
2022-04-06simplify 'is not' patternsJesse Plamondon-Willard
2022-04-06use target-typed newJesse Plamondon-Willard
2022-03-10fix set_farm_type not updating warpsJesse Plamondon-Willard
2022-02-19add Constants.GamePath & deprecate Constants.ExecutionPathJesse Plamondon-Willard
2022-01-29fix item repo's handling of Journal Scraps and Secret NotesJesse Plamondon-Willard
2022-01-29move item repo secret note + flavored object logic into methodsJesse Plamondon-Willard
2021-11-28update 'set_farm_type' console command for custom farm typesJesse Plamondon-Willard
2021-10-30add set_farm_type console commandJesse Plamondon-Willard
2021-09-01add hurry_all console commandJesse Plamondon-Willard
2021-07-30fix build error on LinuxJesse Plamondon-Willard
2021-07-28refactor new code a bitJesse Plamondon-Willard
2021-07-27world_clear: Adding 'removeable' option that includes everything except ↵bladeoflight16
permanent bushes
2021-07-27world_clear: Lining up parameter descriptionsbladeoflight16
2021-05-17add support for filtering the item repoJesse Plamondon-Willard
This isn't used by SMAPI itself, but is used by some mods like Lookup Anything that copy this code.
2021-05-17fix some vanilla shirts not returned by item repoJesse Plamondon-Willard
2021-04-02update resource clump logic for SDV 1.5 (#770)Jesse Plamondon-Willard
2021-03-21fix double-localization issue in regenerated bundlesJesse Plamondon-Willard
2021-03-16add console command to regenerate bundlesJesse Plamondon-Willard
2021-02-21update ambient light when setting game timeJesse Plamondon-Willard
2021-01-22rename TrainerCommand to ConsoleCommand to match the rest of the codeJesse Plamondon-Willard
2021-01-22remove inf options for player_sethealth/money/staminaJesse Plamondon-Willard
2021-01-06remove experimental performance countersJesse Plamondon-Willard
Unfortunately this impacted SMAPI's memory usage and the data was often misinterpreted by players.
2020-12-26add apply_save_fix commandJesse Plamondon-Willard
2020-12-20update for location furniture changesJesse Plamondon-Willard
2020-12-20update for item changesJesse Plamondon-Willard
2020-10-30apply fish pond rules for roe spawningJesse Plamondon-Willard
2020-10-28add SearchableItem copy constructorJesse Plamondon-Willard
This is for convenience in mods which copy this code; SMAPI itself doesn't use it.
2020-10-28fix a captured loop variableJesse Plamondon-Willard
2020-10-24add character-customization-only shirts to item repoJesse Plamondon-Willard
2020-10-24update item repo to allow creating instances laterJesse Plamondon-Willard
2020-07-26use ordinal comparison/sorting instead of invariantJesse Plamondon-Willard
2020-07-17add item repository fixes from CJB Cheats Menu codeJesse Plamondon-Willard
2020-04-11use SDate to set DaysPlayedKevin Daughtridge
2020-04-10set daysPlayed in world_set{day,season,year} commandsKevin Daughtridge
2020-03-22fix player_add error if the player has broken XNB modsJesse Plamondon-Willard
2020-01-26Merge pull request #690 from Drachenkaetzchen/performance-counterJesse Plamondon-Willard
Performance counters
2020-01-26simplify performance details outputJesse Plamondon-Willard
2020-01-26show warning when using commands while disabled, simplify some commands a bitJesse Plamondon-Willard
2020-01-26tweak namespaceJesse Plamondon-Willard
2020-01-26refactor performance counter codeJesse Plamondon-Willard
This commit performs some general refactoring, including... - avoid manually duplicating the event list; - rework the 'is important' event flag; - remove the new packages (Cyotek.Collections can be replaced with built-in types, and System.ValueTuple won't work in the Mono version used on Linux/Mac); - improve performance; - minor cleanup.
2020-01-22add test_input console commandJesse Plamondon-Willard
2020-01-21Added commands to enable and disable performance counters. Peak is now using ↵Drachenkaetzchen
the default interval