├── .editorconfig ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── config.yml │ └── custom.md └── SUPPORT.md ├── .gitignore ├── LICENSE.txt ├── docs ├── README.md ├── mod-build-config.md ├── release-notes-archived.md ├── release-notes.md └── technical │ ├── mod-package.md │ ├── screenshots │ └── code-analyzer-example.png │ ├── smapi.md │ └── web.md └── src ├── Loader ├── Assets │ └── AboutAssets.txt ├── Loader.csproj ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── drawable │ │ ├── Splash.png │ │ ├── icon.png │ │ ├── splash_logos_crop.png │ │ └── splash_screen.xml │ ├── mipmap │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── xml │ │ └── provider_paths.xml └── packages.config ├── MobilePatch ├── Mobile │ ├── EnumerableExtension.cs │ ├── MobileMemoryExtension.cs │ ├── MobileTypeExtension.cs │ └── ReferenceEqualityComparer.cs ├── MobilePatch.csproj ├── Properties │ └── AssemblyInfo.cs └── Resources │ ├── AboutResources.txt │ ├── Resource.Designer.cs │ └── values │ └── strings.xml ├── SMAPI.Installer ├── Enums │ └── ScriptAction.cs ├── Framework │ ├── InstallerContext.cs │ └── InstallerPaths.cs ├── InteractiveInstaller.cs ├── Program.cs ├── SMAPI.Installer.csproj └── assets │ ├── README.txt │ ├── install on Linux.sh │ ├── install on Windows.bat │ ├── install on macOS.command │ ├── runtimeconfig.json │ ├── unix-launcher.sh │ └── windows-exe-config.xml ├── SMAPI.Internal.Patching ├── BasePatcher.cs ├── HarmonyPatcher.cs ├── IPatcher.cs ├── PatchHelper.cs ├── SMAPI.Internal.Patching.projitems └── SMAPI.Internal.Patching.shproj ├── SMAPI.Internal ├── ConsoleWriting │ ├── ColorSchemeConfig.cs │ ├── ColorfulConsoleWriter.cs │ ├── ConsoleLogLevel.cs │ ├── IConsoleWriter.cs │ └── MonitorColorScheme.cs ├── ExceptionHelper.cs ├── SMAPI.Internal.projitems └── SMAPI.Internal.shproj ├── SMAPI.ModBuildConfig.Analyzer.Tests ├── Framework │ ├── DiagnosticResult.cs │ ├── DiagnosticVerifier.Helper.cs │ └── DiagnosticVerifier.cs ├── Mock │ ├── Netcode │ │ ├── NetCollection.cs │ │ ├── NetFieldBase.cs │ │ ├── NetInt.cs │ │ ├── NetList.cs │ │ ├── NetObjectList.cs │ │ └── NetRef.cs │ └── StardewValley │ │ ├── Farmer.cs │ │ ├── Item.cs │ │ └── Object.cs ├── NetFieldAnalyzerTests.cs ├── ObsoleteFieldAnalyzerTests.cs └── SMAPI.ModBuildConfig.Analyzer.Tests.csproj ├── SMAPI.ModBuildConfig.Analyzer ├── AnalyzerReleases.Shipped.md ├── AnalyzerUtilities.cs ├── NetFieldAnalyzer.cs ├── ObsoleteFieldAnalyzer.cs └── SMAPI.ModBuildConfig.Analyzer.csproj ├── SMAPI.ModBuildConfig ├── DeployModTask.cs ├── Framework │ ├── ExtraAssemblyType.cs │ ├── ModFileManager.cs │ └── UserErrorException.cs ├── SMAPI.ModBuildConfig.csproj ├── assets │ ├── nuget-icon.pdn │ └── nuget-icon.png └── build │ └── smapi.targets ├── SMAPI.Mods.ConsoleCommands ├── Framework │ ├── Commands │ │ ├── ArgumentParser.cs │ │ ├── ConsoleCommand.cs │ │ ├── IConsoleCommand.cs │ │ ├── Other │ │ │ ├── ApplySaveFixCommand.cs │ │ │ ├── DebugCommand.cs │ │ │ ├── RegenerateBundles.cs │ │ │ ├── ShowDataFilesCommand.cs │ │ │ ├── ShowGameFilesCommand.cs │ │ │ └── TestInputCommand.cs │ │ ├── Player │ │ │ ├── AddCommand.cs │ │ │ ├── ListItemTypesCommand.cs │ │ │ ├── ListItemsCommand.cs │ │ │ ├── SetColorCommand.cs │ │ │ ├── SetFarmTypeCommand.cs │ │ │ ├── SetHealthCommand.cs │ │ │ ├── SetImmunityCommand.cs │ │ │ ├── SetMaxHealthCommand.cs │ │ │ ├── SetMaxStaminaCommand.cs │ │ │ ├── SetMoneyCommand.cs │ │ │ ├── SetNameCommand.cs │ │ │ ├── SetStaminaCommand.cs │ │ │ └── SetStyleCommand.cs │ │ └── World │ │ │ ├── ClearCommand.cs │ │ │ ├── DownMineLevelCommand.cs │ │ │ ├── FreezeTimeCommand.cs │ │ │ ├── HurryAllCommand.cs │ │ │ ├── SetDayCommand.cs │ │ │ ├── SetMineLevelCommand.cs │ │ │ ├── SetSeasonCommand.cs │ │ │ ├── SetTimeCommand.cs │ │ │ └── SetYearCommand.cs │ ├── ItemData │ │ ├── ItemType.cs │ │ └── SearchableItem.cs │ └── ItemRepository.cs ├── ModEntry.cs ├── SMAPI.Mods.ConsoleCommands.csproj └── manifest.json ├── SMAPI.Mods.ErrorHandler ├── ModEntry.cs ├── ModPatches │ └── PyTkPatcher.cs ├── Patches │ ├── DialoguePatcher.cs │ ├── EventPatcher.cs │ ├── GameLocationPatcher.cs │ ├── IClickableMenuPatcher.cs │ ├── NpcPatcher.cs │ ├── ObjectPatcher.cs │ ├── SaveGamePatcher.cs │ ├── SpriteBatchPatcher.cs │ └── UtilityPatcher.cs ├── SMAPI.Mods.ErrorHandler.csproj ├── i18n │ ├── de.json │ ├── default.json │ ├── es.json │ ├── fr.json │ ├── hu.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── pl.json │ ├── pt.json │ ├── ru.json │ ├── th.json │ ├── tr.json │ ├── uk.json │ └── zh.json └── manifest.json ├── SMAPI.Mods.SaveBackup ├── ModEntry.cs ├── SMAPI.Mods.SaveBackup.csproj └── manifest.json ├── SMAPI.Mods.VirtualKeyboard ├── KeyButton.cs ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── SMAPI.Mods.VirtualKeyboard.csproj ├── VirtualToggle.cs ├── assets │ └── togglebutton.png └── manifest.json ├── SMAPI.Tests.ModApiConsumer ├── ApiConsumer.cs ├── Interfaces │ └── ISimpleApi.cs ├── README.md └── SMAPI.Tests.ModApiConsumer.csproj ├── SMAPI.Tests.ModApiProvider ├── Framework │ ├── BaseApi.cs │ └── SimpleApi.cs ├── ProviderMod.cs ├── README.md └── SMAPI.Tests.ModApiProvider.csproj ├── SMAPI.Tests ├── Core │ ├── AssetNameTests.cs │ ├── AssumptionTests.cs │ ├── InterfaceProxyTests.cs │ ├── ModResolverTests.cs │ └── TranslationTests.cs ├── SMAPI.Tests.csproj ├── Sample.cs ├── Utilities │ ├── KeybindListTests.cs │ ├── PathUtilitiesTests.cs │ ├── SDateTests.cs │ └── SemanticVersionTests.cs ├── WikiClient │ └── ChangeDescriptorTests.cs └── app.config ├── SMAPI.Toolkit.CoreInterfaces ├── IManifest.cs ├── IManifestContentPackFor.cs ├── IManifestDependency.cs ├── ISemanticVersion.cs └── SMAPI.Toolkit.CoreInterfaces.csproj ├── SMAPI.Toolkit ├── Framework │ ├── Clients │ │ ├── WebApi │ │ │ ├── ModEntryModel.cs │ │ │ ├── ModEntryVersionModel.cs │ │ │ ├── ModExtendedMetadataModel.cs │ │ │ ├── ModSearchEntryModel.cs │ │ │ ├── ModSearchModel.cs │ │ │ └── WebApiClient.cs │ │ └── Wiki │ │ │ ├── ChangeDescriptor.cs │ │ │ ├── WikiClient.cs │ │ │ ├── WikiCompatibilityInfo.cs │ │ │ ├── WikiCompatibilityStatus.cs │ │ │ ├── WikiDataOverrideEntry.cs │ │ │ ├── WikiModEntry.cs │ │ │ └── WikiModList.cs │ ├── Constants.cs │ ├── GameScanning │ │ ├── GameFolderType.cs │ │ └── GameScanner.cs │ ├── LowLevelEnvironmentUtility.cs │ ├── ManifestValidator.cs │ ├── ModData │ │ ├── MetadataModel.cs │ │ ├── ModDataField.cs │ │ ├── ModDataFieldKey.cs │ │ ├── ModDataModel.cs │ │ ├── ModDataRecord.cs │ │ ├── ModDataRecordVersionedFields.cs │ │ ├── ModDatabase.cs │ │ ├── ModStatus.cs │ │ └── ModWarning.cs │ ├── ModScanning │ │ ├── ModFolder.cs │ │ ├── ModParseError.cs │ │ ├── ModScanner.cs │ │ └── ModType.cs │ ├── SemanticVersionReader.cs │ └── UpdateData │ │ ├── ModSiteKey.cs │ │ └── UpdateKey.cs ├── ModToolkit.cs ├── Properties │ └── AssemblyInfo.cs ├── SMAPI.Toolkit.csproj ├── SemanticVersion.cs ├── SemanticVersionComparer.cs ├── Serialization │ ├── Converters │ │ ├── ManifestContentPackForConverter.cs │ │ ├── ManifestDependencyArrayConverter.cs │ │ ├── NonStandardSemanticVersionConverter.cs │ │ ├── SemanticVersionConverter.cs │ │ └── SimpleReadOnlyConverter.cs │ ├── InternalExtensions.cs │ ├── JsonHelper.cs │ ├── Models │ │ ├── Manifest.cs │ │ ├── ManifestContentPackFor.cs │ │ └── ManifestDependency.cs │ └── SParseException.cs └── Utilities │ ├── EnvironmentUtility.cs │ ├── FileUtilities.cs │ ├── PathLookups │ ├── CaseInsensitiveFileLookup.cs │ ├── IFileLookup.cs │ └── MinimalFileLookup.cs │ ├── PathUtilities.cs │ └── Platform.cs ├── SMAPI.Web.LegacyRedirects └── Startup.cs ├── SMAPI.Web ├── BackgroundService.cs ├── Controllers │ ├── IndexController.cs │ ├── JsonValidatorController.cs │ ├── LogParserController.cs │ ├── ModsApiController.cs │ └── ModsController.cs ├── Framework │ ├── AllowLargePostsAttribute.cs │ ├── Caching │ │ ├── BaseCacheRepository.cs │ │ ├── Cached.cs │ │ ├── ICacheRepository.cs │ │ ├── Mods │ │ │ ├── IModCacheRepository.cs │ │ │ └── ModCacheMemoryRepository.cs │ │ └── Wiki │ │ │ ├── IWikiCacheRepository.cs │ │ │ ├── WikiCacheMemoryRepository.cs │ │ │ └── WikiMetadata.cs │ ├── Clients │ │ ├── Chucklefish │ │ │ ├── ChucklefishClient.cs │ │ │ └── IChucklefishClient.cs │ │ ├── CurseForge │ │ │ ├── CurseForgeClient.cs │ │ │ ├── ICurseForgeClient.cs │ │ │ └── ResponseModels │ │ │ │ ├── ModFileModel.cs │ │ │ │ ├── ModLinksModel.cs │ │ │ │ ├── ModModel.cs │ │ │ │ └── ResponseModel.cs │ │ ├── GenericModDownload.cs │ │ ├── GenericModPage.cs │ │ ├── GitHub │ │ │ ├── GitAsset.cs │ │ │ ├── GitHubClient.cs │ │ │ ├── GitLicense.cs │ │ │ ├── GitRelease.cs │ │ │ ├── GitRepo.cs │ │ │ └── IGitHubClient.cs │ │ ├── IModSiteClient.cs │ │ ├── ModDrop │ │ │ ├── IModDropClient.cs │ │ │ ├── ModDropClient.cs │ │ │ └── ResponseModels │ │ │ │ ├── FileDataModel.cs │ │ │ │ ├── ModDataModel.cs │ │ │ │ ├── ModListModel.cs │ │ │ │ └── ModModel.cs │ │ ├── Nexus │ │ │ ├── DisabledNexusClient.cs │ │ │ ├── INexusClient.cs │ │ │ ├── NexusClient.cs │ │ │ ├── NexusModStatus.cs │ │ │ └── ResponseModels │ │ │ │ └── NexusMod.cs │ │ └── Pastebin │ │ │ ├── IPastebinClient.cs │ │ │ ├── PasteInfo.cs │ │ │ └── PastebinClient.cs │ ├── Compression │ │ ├── GzipHelper.cs │ │ └── IGzipHelper.cs │ ├── ConfigModels │ │ ├── ApiClientsConfig.cs │ │ ├── BackgroundServicesConfig.cs │ │ ├── ModCompatibilityListConfig.cs │ │ ├── ModOverrideConfig.cs │ │ ├── ModUpdateCheckConfig.cs │ │ ├── SiteConfig.cs │ │ └── SmapiInfoConfig.cs │ ├── Extensions.cs │ ├── IModDownload.cs │ ├── IModPage.cs │ ├── InternalControllerFeatureProvider.cs │ ├── JobDashboardAuthorizationFilter.cs │ ├── LogParsing │ │ ├── LogMessageBuilder.cs │ │ ├── LogParseException.cs │ │ ├── LogParser.cs │ │ └── Models │ │ │ ├── LogLevel.cs │ │ │ ├── LogMessage.cs │ │ │ ├── LogModInfo.cs │ │ │ ├── LogSection.cs │ │ │ ├── ModType.cs │ │ │ └── ParsedLog.cs │ ├── ModInfoModel.cs │ ├── ModSiteManager.cs │ ├── RedirectRules │ │ ├── RedirectHostsToUrlsRule.cs │ │ ├── RedirectMatchRule.cs │ │ ├── RedirectPathsToUrlsRule.cs │ │ └── RedirectToHttpsRule.cs │ ├── RemoteModStatus.cs │ ├── Storage │ │ ├── IStorageProvider.cs │ │ ├── StorageProvider.cs │ │ ├── StoredFileInfo.cs │ │ └── UploadResult.cs │ └── VersionConstraint.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── SMAPI.Web.csproj ├── Startup.cs ├── ViewModels │ ├── IndexModel.cs │ ├── IndexVersionModel.cs │ ├── JsonValidator │ │ ├── JsonValidatorErrorModel.cs │ │ ├── JsonValidatorModel.cs │ │ └── JsonValidatorRequestModel.cs │ ├── LogParserModel.cs │ ├── LogViewFormat.cs │ ├── ModCompatibilityModel.cs │ ├── ModLinkModel.cs │ ├── ModListModel.cs │ └── ModModel.cs ├── Views │ ├── Index │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── JsonValidator │ │ └── Index.cshtml │ ├── LogParser │ │ └── Index.cshtml │ ├── Mods │ │ └── Index.cshtml │ ├── Shared │ │ └── _Layout.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ ├── Content │ ├── css │ │ ├── file-upload.css │ │ ├── index.css │ │ ├── json-validator.css │ │ ├── log-parser.css │ │ ├── main.css │ │ ├── mods.css │ │ └── privacy.css │ ├── images │ │ ├── direct-download-icon.png │ │ ├── external │ │ │ ├── patreon-header-help.png │ │ │ ├── patreon-header-upcoming.png │ │ │ └── patreon-header-what-i-do.png │ │ ├── ko-fi.png │ │ ├── nexus-icon.png │ │ ├── patreon.png │ │ ├── paypal.png │ │ ├── pufferchick-cool.svg │ │ ├── pufferchick.svg │ │ └── sidebar-bg.svg │ └── js │ │ ├── file-upload.js │ │ ├── index.js │ │ ├── json-validator.js │ │ ├── log-parser.js │ │ └── mods.js │ ├── SMAPI.metadata.json │ ├── favicon.ico │ └── schemas │ ├── content-patcher.json │ ├── i18n.json │ └── manifest.json ├── SMAPI.sln ├── SMAPI.sln.DotSettings └── SMAPI ├── Constants.cs ├── ContentSource.cs ├── Context.cs ├── Enums ├── LoadStage.cs └── SkillType.cs ├── Events ├── AssetEditPriority.cs ├── AssetLoadPriority.cs ├── AssetReadyEventArgs.cs ├── AssetRequestedEventArgs.cs ├── AssetsInvalidatedEventArgs.cs ├── BuildingListChangedEventArgs.cs ├── ButtonPressedEventArgs.cs ├── ButtonReleasedEventArgs.cs ├── ButtonsChangedEventArgs.cs ├── ChestInventoryChangedEventArgs.cs ├── CursorMovedEventArgs.cs ├── DayEndingEventArgs.cs ├── DayStartedEventArgs.cs ├── DebrisListChangedEventArgs.cs ├── EventPriority.cs ├── EventPriorityAttribute.cs ├── FurnitureListChangedEventArgs.cs ├── GameLaunchedEventArgs.cs ├── IContentEvents.cs ├── IDisplayEvents.cs ├── IGameLoopEvents.cs ├── IInputEvents.cs ├── IModEvents.cs ├── IMultiplayerEvents.cs ├── IPlayerEvents.cs ├── ISpecialisedEvents.cs ├── IWorldEvents.cs ├── InventoryChangedEventArgs.cs ├── ItemStackSizeChange.cs ├── LargeTerrainFeatureListChangedEventArgs.cs ├── LevelChangedEventArgs.cs ├── LoadStageChangedEventArgs.cs ├── LocaleChangedEventArgs.cs ├── LocationListChangedEventArgs.cs ├── MenuChangedEventArgs.cs ├── ModMessageReceivedEventArgs.cs ├── MouseWheelScrolledEventArgs.cs ├── NpcListChangedEventArgs.cs ├── ObjectListChangedEventArgs.cs ├── OneSecondUpdateTickedEventArgs.cs ├── OneSecondUpdateTickingEventArgs.cs ├── PeerConnectedEventArgs.cs ├── PeerContextReceivedEventArgs.cs ├── PeerDisconnectedEventArgs.cs ├── RenderedActiveMenuEventArgs.cs ├── RenderedEventArgs.cs ├── RenderedHudEventArgs.cs ├── RenderedWorldEventArgs.cs ├── RenderingActiveMenuEventArgs.cs ├── RenderingEventArgs.cs ├── RenderingHudEventArgs.cs ├── RenderingWorldEventArgs.cs ├── ReturnedToTitleEventArgs.cs ├── SaveCreatedEventArgs.cs ├── SaveCreatingEventArgs.cs ├── SaveLoadedEventArgs.cs ├── SavedEventArgs.cs ├── SavingEventArgs.cs ├── TerrainFeatureListChangedEventArgs.cs ├── TimeChangedEventArgs.cs ├── UnvalidatedUpdateTickedEventArgs.cs ├── UnvalidatedUpdateTickingEventArgs.cs ├── UpdateTickedEventArgs.cs ├── UpdateTickingEventArgs.cs ├── WarpedEventArgs.cs └── WindowResizedEventArgs.cs ├── Framework ├── Command.cs ├── CommandManager.cs ├── CommandQueue.cs ├── Commands │ ├── HarmonySummaryCommand.cs │ ├── HelpCommand.cs │ ├── IInternalCommand.cs │ └── ReloadI18nCommand.cs ├── Content │ ├── AssetData.cs │ ├── AssetDataForDictionary.cs │ ├── AssetDataForImage.cs │ ├── AssetDataForMap.cs │ ├── AssetDataForObject.cs │ ├── AssetEditOperation.cs │ ├── AssetInfo.cs │ ├── AssetInterceptorChange.cs │ ├── AssetLoadOperation.cs │ ├── AssetName.cs │ ├── AssetOperationGroup.cs │ ├── ContentCache.cs │ ├── RawTextureData.cs │ └── TilesheetReference.cs ├── ContentCoordinator.cs ├── ContentManagers │ ├── BaseContentManager.cs │ ├── GameContentManager.cs │ ├── GameContentManagerForAssetPropagation.cs │ ├── IContentManager.cs │ └── ModContentManager.cs ├── ContentPack.cs ├── CursorPosition.cs ├── Deprecations │ ├── DeprecationLevel.cs │ ├── DeprecationManager.cs │ ├── DeprecationWarning.cs │ └── ImmutableStackTrace.cs ├── Events │ ├── EventManager.cs │ ├── IManagedEvent.cs │ ├── ManagedEvent.cs │ ├── ManagedEventHandler.cs │ ├── ModContentEvents.cs │ ├── ModDisplayEvents.cs │ ├── ModEvents.cs │ ├── ModEventsBase.cs │ ├── ModGameLoopEvents.cs │ ├── ModInputEvents.cs │ ├── ModMultiplayerEvents.cs │ ├── ModPlayerEvents.cs │ ├── ModSpecialisedEvents.cs │ └── ModWorldEvents.cs ├── Exceptions │ ├── ContentLoadErrorType.cs │ ├── SAssemblyLoadFailedException.cs │ └── SContentLoadException.cs ├── ExitState.cs ├── GameVersion.cs ├── IModMetadata.cs ├── Input │ ├── GamePadStateBuilder.cs │ ├── IInputStateBuilder.cs │ ├── KeyboardStateBuilder.cs │ ├── MouseStateBuilder.cs │ └── SInputState.cs ├── InternalExtensions.cs ├── Logging │ ├── InterceptingTextWriter.cs │ ├── LogFileManager.cs │ ├── LogManager.cs │ └── LogOnceCacheKey.cs ├── ModHelpers │ ├── BaseHelper.cs │ ├── CommandHelper.cs │ ├── ContentHelper.cs │ ├── ContentPackHelper.cs │ ├── DataHelper.cs │ ├── GameContentHelper.cs │ ├── InputHelper.cs │ ├── ModContentHelper.cs │ ├── ModHelper.cs │ ├── ModRegistryHelper.cs │ ├── MultiplayerHelper.cs │ ├── ReflectionHelper.cs │ └── TranslationHelper.cs ├── ModLinked.cs ├── ModLoading │ ├── AssemblyDefinitionResolver.cs │ ├── AssemblyLoadStatus.cs │ ├── AssemblyLoader.cs │ ├── AssemblyParseResult.cs │ ├── Finders │ │ ├── EventFinder.cs │ │ ├── FieldFinder.cs │ │ ├── LegacyAssemblyFinder.cs │ │ ├── MethodFinder.cs │ │ ├── PropertyFinder.cs │ │ ├── ReferenceToMemberWithUnexpectedTypeFinder.cs │ │ ├── ReferenceToMissingMemberFinder.cs │ │ ├── TypeAssemblyFinder.cs │ │ └── TypeFinder.cs │ ├── Framework │ │ ├── BaseInstructionHandler.cs │ │ ├── RecursiveRewriter.cs │ │ └── RewriteHelper.cs │ ├── IInstructionHandler.cs │ ├── IncompatibleInstructionException.cs │ ├── InstructionHandleResult.cs │ ├── InvalidModStateException.cs │ ├── ModDependencyStatus.cs │ ├── ModFailReason.cs │ ├── ModMetadata.cs │ ├── ModMetadataStatus.cs │ ├── ModResolver.cs │ ├── PlatformAssemblyMap.cs │ ├── RewriteFacades │ │ ├── AccessToolsFacade.cs │ │ ├── AnimalQueryMenuMethods.cs │ │ ├── CraftingPageMobileMethods.cs │ │ ├── EnumMethods.cs │ │ ├── Game1Methods.cs │ │ ├── GameMenuMethods.cs │ │ ├── HarmonyInstanceFacade.cs │ │ ├── HarmonyInstanceMethods.cs │ │ ├── HarmonyMethodFacade.cs │ │ ├── IClickableMenuMethods.cs │ │ ├── InventoryMenuMethods.cs │ │ ├── ItemGrabMenuMethods.cs │ │ ├── MapPageMethods.cs │ │ ├── MenuWithInventoryMethods.cs │ │ ├── OptionsElementMethods.cs │ │ ├── SoundBankMethods.cs │ │ ├── SpriteBatchFacade.cs │ │ ├── SpriteTextMethods.cs │ │ ├── TextBoxMethods.cs │ │ └── UtilityMethods.cs │ ├── Rewriters │ │ ├── ArchitectureAssemblyRewriter.cs │ │ ├── FieldReplaceRewriter.cs │ │ ├── HarmonyRewriter.cs │ │ ├── HeuristicFieldAccessibilityRewriter.cs │ │ ├── HeuristicFieldRewriter.cs │ │ ├── HeuristicMethodRewriter.cs │ │ ├── MethodParentRewriter.cs │ │ ├── MethodToAnotherStaticMethodRewriter.cs │ │ ├── ModuleReferenceRewriter.cs │ │ ├── PropertyToFieldRewriter.cs │ │ ├── ReferenceToMissingMemberRewriter.cs │ │ ├── TypeFieldToAnotherTypeFieldRewriter.cs │ │ ├── TypeFieldToAnotherTypePropertyRewriter.cs │ │ ├── TypePropertyToAnotherTypeMethodRewriter.cs │ │ └── TypeReferenceRewriter.cs │ ├── Symbols │ │ ├── SymbolReader.cs │ │ ├── SymbolReaderProvider.cs │ │ └── SymbolWriterProvider.cs │ └── TypeReferenceComparer.cs ├── ModRegistry.cs ├── Models │ └── SConfig.cs ├── Monitor.cs ├── Networking │ ├── MessageType.cs │ ├── ModMessageModel.cs │ ├── MultiplayerPeer.cs │ ├── MultiplayerPeerMod.cs │ ├── RemoteContextModModel.cs │ ├── RemoteContextModel.cs │ ├── SGalaxyNetClient.cs │ ├── SGalaxyNetServer.cs │ ├── SLidgrenClient.cs │ └── SLidgrenServer.cs ├── Reflection │ ├── IInterfaceProxyFactory.cs │ ├── InterfaceProxyFactory.cs │ ├── ReflectedField.cs │ ├── ReflectedMethod.cs │ ├── ReflectedProperty.cs │ └── Reflector.cs ├── Rendering │ ├── SDisplayDevice.cs │ └── SXnaDisplayDevice.cs ├── SChatBox.cs ├── SCore.cs ├── SGame.cs ├── SGameRunner.cs ├── SModHooks.cs ├── SMultiplayer.cs ├── Serialization │ ├── ColorConverter.cs │ ├── KeybindConverter.cs │ ├── PointConverter.cs │ ├── RectangleConverter.cs │ └── Vector2Converter.cs ├── Singleton.cs ├── SnapshotDiff.cs ├── SnapshotItemListDiff.cs ├── SnapshotListDiff.cs ├── StateTracking │ ├── ChestTracker.cs │ ├── Comparers │ │ ├── EquatableComparer.cs │ │ ├── GenericEqualsComparer.cs │ │ └── ObjectReferenceComparer.cs │ ├── FieldWatchers │ │ ├── BaseDisposableWatcher.cs │ │ ├── ComparableListWatcher.cs │ │ ├── ComparableWatcher.cs │ │ ├── ImmutableCollectionWatcher.cs │ │ ├── NetCollectionWatcher.cs │ │ ├── NetDictionaryWatcher.cs │ │ ├── NetListWatcher.cs │ │ ├── NetValueWatcher.cs │ │ ├── ObservableCollectionWatcher.cs │ │ └── WatcherFactory.cs │ ├── ICollectionWatcher.cs │ ├── IDictionaryWatcher.cs │ ├── IValueWatcher.cs │ ├── IWatcher.cs │ ├── LocationTracker.cs │ ├── PlayerTracker.cs │ ├── Snapshots │ │ ├── LocationSnapshot.cs │ │ ├── PlayerSnapshot.cs │ │ ├── WatcherSnapshot.cs │ │ └── WorldLocationsSnapshot.cs │ └── WorldLocationsTracker.cs ├── TemporaryHacks │ └── MiniMonoModHotfix.cs ├── Translator.cs ├── Utilities │ ├── ContextHash.cs │ ├── Countdown.cs │ ├── IntervalMemoryCache.cs │ └── TickCacheDictionary.cs └── WatcherCore.cs ├── GameFramework.cs ├── GamePlatform.cs ├── IAssetData.cs ├── IAssetDataForDictionary.cs ├── IAssetDataForImage.cs ├── IAssetDataForMap.cs ├── IAssetEditor.cs ├── IAssetInfo.cs ├── IAssetLoader.cs ├── IAssetName.cs ├── ICommandHelper.cs ├── IContentHelper.cs ├── IContentPack.cs ├── IContentPackHelper.cs ├── ICursorPosition.cs ├── IDataHelper.cs ├── IGameContentHelper.cs ├── IInputHelper.cs ├── IMod.cs ├── IModContentHelper.cs ├── IModHelper.cs ├── IModInfo.cs ├── IModLinked.cs ├── IModRegistry.cs ├── IMonitor.cs ├── IMultiplayerHelper.cs ├── IMultiplayerPeer.cs ├── IMultiplayerPeerMod.cs ├── IRawTextureData.cs ├── IReflectedField.cs ├── IReflectedMethod.cs ├── IReflectedProperty.cs ├── IReflectionHelper.cs ├── ITranslationHelper.cs ├── LogLevel.cs ├── Metadata ├── CoreAssetPropagator.cs └── InstructionMetadata.cs ├── Mobile ├── FarmMigrationPatch.cs └── IsExternalInit.cs ├── Mod.cs ├── PatchMapMode.cs ├── PatchMode.cs ├── Patches ├── Game1Patcher.cs ├── JunimoHarvesterPatch.cs ├── LocationSwitchPatch.cs ├── OnAppPausePatch.cs ├── SaveBackupPatch.cs ├── SaveGamePatch.cs ├── SpriteFontPatch.cs ├── StringPatcher.cs ├── ThreadSilenceExitPatch.cs ├── TitleMenuPatcher.cs └── UIThreadPatch.cs ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── Resources └── Resource.designer.cs ├── SAlertDialogUtil.cs ├── SButton.cs ├── SButtonState.cs ├── SGameConsole.cs ├── SMAPI.config.json ├── SMAPI.csproj ├── SMainActivity.cs ├── SemanticVersion.cs ├── Translation.cs ├── Utilities ├── AssetPathUtilities │ └── AssetNamePartEnumerator.cs ├── DelegatingModHooks.cs ├── Keybind.cs ├── KeybindList.cs ├── PathUtilities.cs ├── PerScreen.cs └── SDate.cs ├── app.manifest ├── i18n ├── de.json ├── default.json ├── es.json ├── fr.json ├── hu.json ├── it.json ├── ja.json ├── ko.json ├── pl.json ├── pt.json ├── ru.json ├── th.json ├── tr.json ├── uk.json └── zh.json ├── icon.ico └── steam_appid.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/mod-build-config.md: -------------------------------------------------------------------------------- 1 | [Documentation moved](technical/mod-package.md). 2 | -------------------------------------------------------------------------------- /docs/release-notes-archived.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/docs/release-notes-archived.md -------------------------------------------------------------------------------- /docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/docs/release-notes.md -------------------------------------------------------------------------------- /docs/technical/mod-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/docs/technical/mod-package.md -------------------------------------------------------------------------------- /docs/technical/screenshots/code-analyzer-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/docs/technical/screenshots/code-analyzer-example.png -------------------------------------------------------------------------------- /docs/technical/smapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/docs/technical/smapi.md -------------------------------------------------------------------------------- /docs/technical/web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/docs/technical/web.md -------------------------------------------------------------------------------- /src/Loader/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/Loader/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /src/Loader/Loader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/Loader/Loader.csproj -------------------------------------------------------------------------------- /src/Loader/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/Loader/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /src/Loader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/Loader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Loader/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/Loader/Resources/AboutResources.txt -------------------------------------------------------------------------------- /src/Loader/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/Loader/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /src/Loader/Resources/drawable/Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/Loader/Resources/drawable/Splash.png -------------------------------------------------------------------------------- /src/Loader/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/Loader/Resources/drawable/icon.png -------------------------------------------------------------------------------- /src/Loader/Resources/drawable/splash_logos_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/Loader/Resources/drawable/splash_logos_crop.png -------------------------------------------------------------------------------- /src/Loader/Resources/drawable/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/Loader/Resources/drawable/splash_screen.xml -------------------------------------------------------------------------------- /src/Loader/Resources/mipmap/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/Loader/Resources/mipmap/ic_launcher.png -------------------------------------------------------------------------------- /src/Loader/Resources/mipmap/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/Loader/Resources/mipmap/ic_launcher_background.png -------------------------------------------------------------------------------- /src/Loader/Resources/mipmap/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/Loader/Resources/mipmap/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/Loader/Resources/mipmap/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/Loader/Resources/mipmap/ic_launcher_round.png -------------------------------------------------------------------------------- /src/Loader/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/Loader/Resources/values/colors.xml -------------------------------------------------------------------------------- /src/Loader/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/Loader/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /src/Loader/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/Loader/Resources/values/strings.xml -------------------------------------------------------------------------------- /src/Loader/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/Loader/Resources/values/styles.xml -------------------------------------------------------------------------------- /src/Loader/Resources/xml/provider_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/Loader/Resources/xml/provider_paths.xml -------------------------------------------------------------------------------- /src/Loader/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/Loader/packages.config -------------------------------------------------------------------------------- /src/MobilePatch/Mobile/EnumerableExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/MobilePatch/Mobile/EnumerableExtension.cs -------------------------------------------------------------------------------- /src/MobilePatch/Mobile/MobileMemoryExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/MobilePatch/Mobile/MobileMemoryExtension.cs -------------------------------------------------------------------------------- /src/MobilePatch/Mobile/MobileTypeExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/MobilePatch/Mobile/MobileTypeExtension.cs -------------------------------------------------------------------------------- /src/MobilePatch/Mobile/ReferenceEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/MobilePatch/Mobile/ReferenceEqualityComparer.cs -------------------------------------------------------------------------------- /src/MobilePatch/MobilePatch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/MobilePatch/MobilePatch.csproj -------------------------------------------------------------------------------- /src/MobilePatch/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/MobilePatch/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/MobilePatch/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/MobilePatch/Resources/AboutResources.txt -------------------------------------------------------------------------------- /src/MobilePatch/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/MobilePatch/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /src/MobilePatch/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/MobilePatch/Resources/values/strings.xml -------------------------------------------------------------------------------- /src/SMAPI.Installer/Enums/ScriptAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Installer/Enums/ScriptAction.cs -------------------------------------------------------------------------------- /src/SMAPI.Installer/Framework/InstallerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Installer/Framework/InstallerContext.cs -------------------------------------------------------------------------------- /src/SMAPI.Installer/Framework/InstallerPaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Installer/Framework/InstallerPaths.cs -------------------------------------------------------------------------------- /src/SMAPI.Installer/InteractiveInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Installer/InteractiveInstaller.cs -------------------------------------------------------------------------------- /src/SMAPI.Installer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Installer/Program.cs -------------------------------------------------------------------------------- /src/SMAPI.Installer/SMAPI.Installer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Installer/SMAPI.Installer.csproj -------------------------------------------------------------------------------- /src/SMAPI.Installer/assets/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Installer/assets/README.txt -------------------------------------------------------------------------------- /src/SMAPI.Installer/assets/install on Linux.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | cd "`dirname "$0"`" 4 | internal/linux/SMAPI.Installer 5 | -------------------------------------------------------------------------------- /src/SMAPI.Installer/assets/install on Windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Installer/assets/install on Windows.bat -------------------------------------------------------------------------------- /src/SMAPI.Installer/assets/install on macOS.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Installer/assets/install on macOS.command -------------------------------------------------------------------------------- /src/SMAPI.Installer/assets/runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Installer/assets/runtimeconfig.json -------------------------------------------------------------------------------- /src/SMAPI.Installer/assets/unix-launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Installer/assets/unix-launcher.sh -------------------------------------------------------------------------------- /src/SMAPI.Installer/assets/windows-exe-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Installer/assets/windows-exe-config.xml -------------------------------------------------------------------------------- /src/SMAPI.Internal.Patching/BasePatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Internal.Patching/BasePatcher.cs -------------------------------------------------------------------------------- /src/SMAPI.Internal.Patching/HarmonyPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Internal.Patching/HarmonyPatcher.cs -------------------------------------------------------------------------------- /src/SMAPI.Internal.Patching/IPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Internal.Patching/IPatcher.cs -------------------------------------------------------------------------------- /src/SMAPI.Internal.Patching/PatchHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Internal.Patching/PatchHelper.cs -------------------------------------------------------------------------------- /src/SMAPI.Internal.Patching/SMAPI.Internal.Patching.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Internal.Patching/SMAPI.Internal.Patching.projitems -------------------------------------------------------------------------------- /src/SMAPI.Internal.Patching/SMAPI.Internal.Patching.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Internal.Patching/SMAPI.Internal.Patching.shproj -------------------------------------------------------------------------------- /src/SMAPI.Internal/ConsoleWriting/ColorSchemeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Internal/ConsoleWriting/ColorSchemeConfig.cs -------------------------------------------------------------------------------- /src/SMAPI.Internal/ConsoleWriting/ColorfulConsoleWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Internal/ConsoleWriting/ColorfulConsoleWriter.cs -------------------------------------------------------------------------------- /src/SMAPI.Internal/ConsoleWriting/ConsoleLogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Internal/ConsoleWriting/ConsoleLogLevel.cs -------------------------------------------------------------------------------- /src/SMAPI.Internal/ConsoleWriting/IConsoleWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Internal/ConsoleWriting/IConsoleWriter.cs -------------------------------------------------------------------------------- /src/SMAPI.Internal/ConsoleWriting/MonitorColorScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Internal/ConsoleWriting/MonitorColorScheme.cs -------------------------------------------------------------------------------- /src/SMAPI.Internal/ExceptionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Internal/ExceptionHelper.cs -------------------------------------------------------------------------------- /src/SMAPI.Internal/SMAPI.Internal.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Internal/SMAPI.Internal.projitems -------------------------------------------------------------------------------- /src/SMAPI.Internal/SMAPI.Internal.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Internal/SMAPI.Internal.shproj -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig.Analyzer.Tests/Framework/DiagnosticResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig.Analyzer.Tests/Framework/DiagnosticResult.cs -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig.Analyzer.Tests/Framework/DiagnosticVerifier.Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig.Analyzer.Tests/Framework/DiagnosticVerifier.Helper.cs -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig.Analyzer.Tests/Framework/DiagnosticVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig.Analyzer.Tests/Framework/DiagnosticVerifier.cs -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/Netcode/NetCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/Netcode/NetCollection.cs -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/Netcode/NetFieldBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/Netcode/NetFieldBase.cs -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/Netcode/NetInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/Netcode/NetInt.cs -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/Netcode/NetList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/Netcode/NetList.cs -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/Netcode/NetObjectList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/Netcode/NetObjectList.cs -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/Netcode/NetRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/Netcode/NetRef.cs -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/StardewValley/Farmer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/StardewValley/Farmer.cs -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/StardewValley/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/StardewValley/Item.cs -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/StardewValley/Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/StardewValley/Object.cs -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig.Analyzer.Tests/NetFieldAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig.Analyzer.Tests/NetFieldAnalyzerTests.cs -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig.Analyzer.Tests/ObsoleteFieldAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig.Analyzer.Tests/ObsoleteFieldAnalyzerTests.cs -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig.Analyzer.Tests/SMAPI.ModBuildConfig.Analyzer.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig.Analyzer.Tests/SMAPI.ModBuildConfig.Analyzer.Tests.csproj -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig.Analyzer/AnalyzerReleases.Shipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig.Analyzer/AnalyzerReleases.Shipped.md -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig.Analyzer/AnalyzerUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig.Analyzer/AnalyzerUtilities.cs -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig.Analyzer/NetFieldAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig.Analyzer/NetFieldAnalyzer.cs -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig.Analyzer/ObsoleteFieldAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig.Analyzer/ObsoleteFieldAnalyzer.cs -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig.Analyzer/SMAPI.ModBuildConfig.Analyzer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig.Analyzer/SMAPI.ModBuildConfig.Analyzer.csproj -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig/DeployModTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig/DeployModTask.cs -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig/Framework/ExtraAssemblyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig/Framework/ExtraAssemblyType.cs -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig/Framework/ModFileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig/Framework/ModFileManager.cs -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig/Framework/UserErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig/Framework/UserErrorException.cs -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig/SMAPI.ModBuildConfig.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig/SMAPI.ModBuildConfig.csproj -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig/assets/nuget-icon.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig/assets/nuget-icon.pdn -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig/assets/nuget-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig/assets/nuget-icon.png -------------------------------------------------------------------------------- /src/SMAPI.ModBuildConfig/build/smapi.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.ModBuildConfig/build/smapi.targets -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/ArgumentParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/ArgumentParser.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/ConsoleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/ConsoleCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/IConsoleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/IConsoleCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Other/ApplySaveFixCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Other/ApplySaveFixCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Other/DebugCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Other/DebugCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Other/RegenerateBundles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Other/RegenerateBundles.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Other/ShowDataFilesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Other/ShowDataFilesCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Other/ShowGameFilesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Other/ShowGameFilesCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Other/TestInputCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Other/TestInputCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/AddCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/AddCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/ListItemTypesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/ListItemTypesCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/ListItemsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/ListItemsCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetColorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetColorCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetFarmTypeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetFarmTypeCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetHealthCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetHealthCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetImmunityCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetImmunityCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetMaxHealthCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetMaxHealthCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetMaxStaminaCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetMaxStaminaCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetMoneyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetMoneyCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetNameCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetNameCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetStaminaCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetStaminaCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetStyleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetStyleCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/World/ClearCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/World/ClearCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/World/DownMineLevelCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/World/DownMineLevelCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/World/FreezeTimeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/World/FreezeTimeCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/World/HurryAllCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/World/HurryAllCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/World/SetDayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/World/SetDayCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/World/SetMineLevelCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/World/SetMineLevelCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/World/SetSeasonCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/World/SetSeasonCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/World/SetTimeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/World/SetTimeCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/World/SetYearCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/World/SetYearCommand.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/ItemData/ItemType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/ItemData/ItemType.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/ItemData/SearchableItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/ItemData/SearchableItem.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/Framework/ItemRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/Framework/ItemRepository.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/ModEntry.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/SMAPI.Mods.ConsoleCommands.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/SMAPI.Mods.ConsoleCommands.csproj -------------------------------------------------------------------------------- /src/SMAPI.Mods.ConsoleCommands/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ConsoleCommands/manifest.json -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/ModEntry.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/ModPatches/PyTkPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/ModPatches/PyTkPatcher.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/Patches/DialoguePatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/Patches/DialoguePatcher.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/Patches/EventPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/Patches/EventPatcher.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/Patches/GameLocationPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/Patches/GameLocationPatcher.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/Patches/IClickableMenuPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/Patches/IClickableMenuPatcher.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/Patches/NpcPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/Patches/NpcPatcher.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/Patches/ObjectPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/Patches/ObjectPatcher.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/Patches/SaveGamePatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/Patches/SaveGamePatcher.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/Patches/SpriteBatchPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/Patches/SpriteBatchPatcher.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/Patches/UtilityPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/Patches/UtilityPatcher.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/SMAPI.Mods.ErrorHandler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/SMAPI.Mods.ErrorHandler.csproj -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/i18n/de.json -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/i18n/default.json -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/i18n/es.json -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/i18n/fr.json -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/i18n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/i18n/hu.json -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/i18n/it.json -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/i18n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/i18n/ja.json -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/i18n/ko.json -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/i18n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/i18n/pl.json -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/i18n/pt.json -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/i18n/ru.json -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/i18n/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/i18n/th.json -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/i18n/tr.json -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/i18n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/i18n/uk.json -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/i18n/zh.json: -------------------------------------------------------------------------------- 1 | { 2 | // warning messages 3 | "warn.invalid-content-removed": "非法内容已移除以防游戏闪退(查看SMAPI控制台获得更多信息)" 4 | } 5 | -------------------------------------------------------------------------------- /src/SMAPI.Mods.ErrorHandler/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.ErrorHandler/manifest.json -------------------------------------------------------------------------------- /src/SMAPI.Mods.SaveBackup/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.SaveBackup/ModEntry.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.SaveBackup/SMAPI.Mods.SaveBackup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.SaveBackup/SMAPI.Mods.SaveBackup.csproj -------------------------------------------------------------------------------- /src/SMAPI.Mods.SaveBackup/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.SaveBackup/manifest.json -------------------------------------------------------------------------------- /src/SMAPI.Mods.VirtualKeyboard/KeyButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.VirtualKeyboard/KeyButton.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.VirtualKeyboard/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.VirtualKeyboard/ModConfig.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.VirtualKeyboard/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.VirtualKeyboard/ModEntry.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.VirtualKeyboard/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SMAPI.Mods.VirtualKeyboard/SMAPI.Mods.VirtualKeyboard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.VirtualKeyboard/SMAPI.Mods.VirtualKeyboard.csproj -------------------------------------------------------------------------------- /src/SMAPI.Mods.VirtualKeyboard/VirtualToggle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.VirtualKeyboard/VirtualToggle.cs -------------------------------------------------------------------------------- /src/SMAPI.Mods.VirtualKeyboard/assets/togglebutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.VirtualKeyboard/assets/togglebutton.png -------------------------------------------------------------------------------- /src/SMAPI.Mods.VirtualKeyboard/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Mods.VirtualKeyboard/manifest.json -------------------------------------------------------------------------------- /src/SMAPI.Tests.ModApiConsumer/ApiConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Tests.ModApiConsumer/ApiConsumer.cs -------------------------------------------------------------------------------- /src/SMAPI.Tests.ModApiConsumer/Interfaces/ISimpleApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Tests.ModApiConsumer/Interfaces/ISimpleApi.cs -------------------------------------------------------------------------------- /src/SMAPI.Tests.ModApiConsumer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Tests.ModApiConsumer/README.md -------------------------------------------------------------------------------- /src/SMAPI.Tests.ModApiConsumer/SMAPI.Tests.ModApiConsumer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Tests.ModApiConsumer/SMAPI.Tests.ModApiConsumer.csproj -------------------------------------------------------------------------------- /src/SMAPI.Tests.ModApiProvider/Framework/BaseApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Tests.ModApiProvider/Framework/BaseApi.cs -------------------------------------------------------------------------------- /src/SMAPI.Tests.ModApiProvider/Framework/SimpleApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Tests.ModApiProvider/Framework/SimpleApi.cs -------------------------------------------------------------------------------- /src/SMAPI.Tests.ModApiProvider/ProviderMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Tests.ModApiProvider/ProviderMod.cs -------------------------------------------------------------------------------- /src/SMAPI.Tests.ModApiProvider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Tests.ModApiProvider/README.md -------------------------------------------------------------------------------- /src/SMAPI.Tests.ModApiProvider/SMAPI.Tests.ModApiProvider.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Tests.ModApiProvider/SMAPI.Tests.ModApiProvider.csproj -------------------------------------------------------------------------------- /src/SMAPI.Tests/Core/AssetNameTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Tests/Core/AssetNameTests.cs -------------------------------------------------------------------------------- /src/SMAPI.Tests/Core/AssumptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Tests/Core/AssumptionTests.cs -------------------------------------------------------------------------------- /src/SMAPI.Tests/Core/InterfaceProxyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Tests/Core/InterfaceProxyTests.cs -------------------------------------------------------------------------------- /src/SMAPI.Tests/Core/ModResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Tests/Core/ModResolverTests.cs -------------------------------------------------------------------------------- /src/SMAPI.Tests/Core/TranslationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Tests/Core/TranslationTests.cs -------------------------------------------------------------------------------- /src/SMAPI.Tests/SMAPI.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Tests/SMAPI.Tests.csproj -------------------------------------------------------------------------------- /src/SMAPI.Tests/Sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Tests/Sample.cs -------------------------------------------------------------------------------- /src/SMAPI.Tests/Utilities/KeybindListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Tests/Utilities/KeybindListTests.cs -------------------------------------------------------------------------------- /src/SMAPI.Tests/Utilities/PathUtilitiesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Tests/Utilities/PathUtilitiesTests.cs -------------------------------------------------------------------------------- /src/SMAPI.Tests/Utilities/SDateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Tests/Utilities/SDateTests.cs -------------------------------------------------------------------------------- /src/SMAPI.Tests/Utilities/SemanticVersionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Tests/Utilities/SemanticVersionTests.cs -------------------------------------------------------------------------------- /src/SMAPI.Tests/WikiClient/ChangeDescriptorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Tests/WikiClient/ChangeDescriptorTests.cs -------------------------------------------------------------------------------- /src/SMAPI.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Tests/app.config -------------------------------------------------------------------------------- /src/SMAPI.Toolkit.CoreInterfaces/IManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit.CoreInterfaces/IManifest.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit.CoreInterfaces/IManifestContentPackFor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit.CoreInterfaces/IManifestContentPackFor.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit.CoreInterfaces/IManifestDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit.CoreInterfaces/IManifestDependency.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit.CoreInterfaces/ISemanticVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit.CoreInterfaces/ISemanticVersion.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit.CoreInterfaces/SMAPI.Toolkit.CoreInterfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit.CoreInterfaces/SMAPI.Toolkit.CoreInterfaces.csproj -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/Clients/WebApi/ModEntryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/Clients/WebApi/ModEntryModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/Clients/WebApi/ModEntryVersionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/Clients/WebApi/ModEntryVersionModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/Clients/WebApi/ModExtendedMetadataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/Clients/WebApi/ModExtendedMetadataModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/Clients/WebApi/ModSearchEntryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/Clients/WebApi/ModSearchEntryModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/Clients/WebApi/ModSearchModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/Clients/WebApi/ModSearchModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/Clients/WebApi/WebApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/Clients/WebApi/WebApiClient.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/Clients/Wiki/ChangeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/Clients/Wiki/ChangeDescriptor.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/Clients/Wiki/WikiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/Clients/Wiki/WikiClient.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/Clients/Wiki/WikiCompatibilityInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/Clients/Wiki/WikiCompatibilityInfo.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/Clients/Wiki/WikiCompatibilityStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/Clients/Wiki/WikiCompatibilityStatus.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/Clients/Wiki/WikiDataOverrideEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/Clients/Wiki/WikiDataOverrideEntry.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/Clients/Wiki/WikiModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/Clients/Wiki/WikiModEntry.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/Clients/Wiki/WikiModList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/Clients/Wiki/WikiModList.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/Constants.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/GameScanning/GameFolderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/GameScanning/GameFolderType.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/GameScanning/GameScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/GameScanning/GameScanner.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/LowLevelEnvironmentUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/LowLevelEnvironmentUtility.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/ManifestValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/ManifestValidator.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/ModData/MetadataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/ModData/MetadataModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/ModData/ModDataField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/ModData/ModDataField.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/ModData/ModDataFieldKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/ModData/ModDataFieldKey.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/ModData/ModDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/ModData/ModDataModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/ModData/ModDataRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/ModData/ModDataRecord.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/ModData/ModDataRecordVersionedFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/ModData/ModDataRecordVersionedFields.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/ModData/ModDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/ModData/ModDatabase.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/ModData/ModStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/ModData/ModStatus.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/ModData/ModWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/ModData/ModWarning.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/ModScanning/ModFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/ModScanning/ModFolder.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/ModScanning/ModParseError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/ModScanning/ModParseError.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/ModScanning/ModScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/ModScanning/ModScanner.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/ModScanning/ModType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/ModScanning/ModType.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/SemanticVersionReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/SemanticVersionReader.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/UpdateData/ModSiteKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/UpdateData/ModSiteKey.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Framework/UpdateData/UpdateKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Framework/UpdateData/UpdateKey.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/ModToolkit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/ModToolkit.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/SMAPI.Toolkit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/SMAPI.Toolkit.csproj -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/SemanticVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/SemanticVersion.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/SemanticVersionComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/SemanticVersionComparer.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Serialization/Converters/ManifestContentPackForConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Serialization/Converters/ManifestContentPackForConverter.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Serialization/Converters/ManifestDependencyArrayConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Serialization/Converters/ManifestDependencyArrayConverter.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Serialization/Converters/NonStandardSemanticVersionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Serialization/Converters/NonStandardSemanticVersionConverter.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Serialization/Converters/SemanticVersionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Serialization/Converters/SemanticVersionConverter.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Serialization/Converters/SimpleReadOnlyConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Serialization/Converters/SimpleReadOnlyConverter.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Serialization/InternalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Serialization/InternalExtensions.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Serialization/JsonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Serialization/JsonHelper.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Serialization/Models/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Serialization/Models/Manifest.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Serialization/Models/ManifestContentPackFor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Serialization/Models/ManifestContentPackFor.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Serialization/Models/ManifestDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Serialization/Models/ManifestDependency.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Serialization/SParseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Serialization/SParseException.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Utilities/EnvironmentUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Utilities/EnvironmentUtility.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Utilities/FileUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Utilities/FileUtilities.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Utilities/PathLookups/CaseInsensitiveFileLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Utilities/PathLookups/CaseInsensitiveFileLookup.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Utilities/PathLookups/IFileLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Utilities/PathLookups/IFileLookup.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Utilities/PathLookups/MinimalFileLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Utilities/PathLookups/MinimalFileLookup.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Utilities/PathUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Utilities/PathUtilities.cs -------------------------------------------------------------------------------- /src/SMAPI.Toolkit/Utilities/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Toolkit/Utilities/Platform.cs -------------------------------------------------------------------------------- /src/SMAPI.Web.LegacyRedirects/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web.LegacyRedirects/Startup.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/BackgroundService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/BackgroundService.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Controllers/IndexController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Controllers/IndexController.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Controllers/JsonValidatorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Controllers/JsonValidatorController.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Controllers/LogParserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Controllers/LogParserController.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Controllers/ModsApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Controllers/ModsApiController.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Controllers/ModsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Controllers/ModsController.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/AllowLargePostsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/AllowLargePostsAttribute.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Caching/BaseCacheRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Caching/BaseCacheRepository.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Caching/Cached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Caching/Cached.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Caching/ICacheRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Caching/ICacheRepository.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Caching/Mods/IModCacheRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Caching/Mods/IModCacheRepository.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Caching/Mods/ModCacheMemoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Caching/Mods/ModCacheMemoryRepository.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Caching/Wiki/IWikiCacheRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Caching/Wiki/IWikiCacheRepository.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Caching/Wiki/WikiCacheMemoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Caching/Wiki/WikiCacheMemoryRepository.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Caching/Wiki/WikiMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Caching/Wiki/WikiMetadata.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/Chucklefish/ChucklefishClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/Chucklefish/ChucklefishClient.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/Chucklefish/IChucklefishClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/Chucklefish/IChucklefishClient.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/CurseForge/CurseForgeClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/CurseForge/CurseForgeClient.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/CurseForge/ICurseForgeClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/CurseForge/ICurseForgeClient.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/CurseForge/ResponseModels/ModFileModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/CurseForge/ResponseModels/ModFileModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/CurseForge/ResponseModels/ModLinksModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/CurseForge/ResponseModels/ModLinksModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/CurseForge/ResponseModels/ModModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/CurseForge/ResponseModels/ModModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/CurseForge/ResponseModels/ResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/CurseForge/ResponseModels/ResponseModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/GenericModDownload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/GenericModDownload.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/GenericModPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/GenericModPage.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/GitHub/GitAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/GitHub/GitAsset.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/GitHub/GitHubClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/GitHub/GitHubClient.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/GitHub/GitLicense.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/GitHub/GitLicense.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/GitHub/GitRelease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/GitHub/GitRelease.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/GitHub/GitRepo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/GitHub/GitRepo.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/GitHub/IGitHubClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/GitHub/IGitHubClient.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/IModSiteClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/IModSiteClient.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/ModDrop/IModDropClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/ModDrop/IModDropClient.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/ModDrop/ModDropClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/ModDrop/ModDropClient.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/ModDrop/ResponseModels/FileDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/ModDrop/ResponseModels/FileDataModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/ModDrop/ResponseModels/ModDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/ModDrop/ResponseModels/ModDataModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/ModDrop/ResponseModels/ModListModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/ModDrop/ResponseModels/ModListModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/ModDrop/ResponseModels/ModModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/ModDrop/ResponseModels/ModModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/Nexus/DisabledNexusClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/Nexus/DisabledNexusClient.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/Nexus/INexusClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/Nexus/INexusClient.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/Nexus/NexusClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/Nexus/NexusClient.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/Nexus/NexusModStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/Nexus/NexusModStatus.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/Nexus/ResponseModels/NexusMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/Nexus/ResponseModels/NexusMod.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/Pastebin/IPastebinClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/Pastebin/IPastebinClient.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/Pastebin/PasteInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/Pastebin/PasteInfo.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Clients/Pastebin/PastebinClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Clients/Pastebin/PastebinClient.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Compression/GzipHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Compression/GzipHelper.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Compression/IGzipHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Compression/IGzipHelper.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/ConfigModels/BackgroundServicesConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/ConfigModels/BackgroundServicesConfig.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/ConfigModels/ModCompatibilityListConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/ConfigModels/ModCompatibilityListConfig.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/ConfigModels/ModOverrideConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/ConfigModels/ModOverrideConfig.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/ConfigModels/ModUpdateCheckConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/ConfigModels/ModUpdateCheckConfig.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/ConfigModels/SmapiInfoConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/ConfigModels/SmapiInfoConfig.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Extensions.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/IModDownload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/IModDownload.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/IModPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/IModPage.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/InternalControllerFeatureProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/InternalControllerFeatureProvider.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/JobDashboardAuthorizationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/JobDashboardAuthorizationFilter.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/LogParsing/LogMessageBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/LogParsing/LogMessageBuilder.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/LogParsing/LogParseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/LogParsing/LogParseException.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/LogParsing/LogParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/LogParsing/LogParser.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/LogParsing/Models/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/LogParsing/Models/LogLevel.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/LogParsing/Models/LogMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/LogParsing/Models/LogMessage.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/LogParsing/Models/LogModInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/LogParsing/Models/LogModInfo.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/LogParsing/Models/LogSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/LogParsing/Models/LogSection.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/LogParsing/Models/ModType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/LogParsing/Models/ModType.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/LogParsing/Models/ParsedLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/LogParsing/Models/ParsedLog.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/ModInfoModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/ModInfoModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/ModSiteManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/ModSiteManager.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/RedirectRules/RedirectHostsToUrlsRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/RedirectRules/RedirectHostsToUrlsRule.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/RedirectRules/RedirectMatchRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/RedirectRules/RedirectMatchRule.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/RedirectRules/RedirectPathsToUrlsRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/RedirectRules/RedirectPathsToUrlsRule.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/RedirectRules/RedirectToHttpsRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/RedirectRules/RedirectToHttpsRule.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/RemoteModStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/RemoteModStatus.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Storage/IStorageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Storage/IStorageProvider.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Storage/StorageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Storage/StorageProvider.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Storage/StoredFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Storage/StoredFileInfo.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/Storage/UploadResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/Storage/UploadResult.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Framework/VersionConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Framework/VersionConstraint.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Program.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/SMAPI.Web/SMAPI.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/SMAPI.Web.csproj -------------------------------------------------------------------------------- /src/SMAPI.Web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Startup.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/ViewModels/IndexModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/ViewModels/IndexModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/ViewModels/IndexVersionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/ViewModels/IndexVersionModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/ViewModels/JsonValidator/JsonValidatorErrorModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/ViewModels/JsonValidator/JsonValidatorErrorModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/ViewModels/JsonValidator/JsonValidatorModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/ViewModels/JsonValidator/JsonValidatorModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/ViewModels/JsonValidator/JsonValidatorRequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/ViewModels/JsonValidator/JsonValidatorRequestModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/ViewModels/LogParserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/ViewModels/LogParserModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/ViewModels/LogViewFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/ViewModels/LogViewFormat.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/ViewModels/ModCompatibilityModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/ViewModels/ModCompatibilityModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/ViewModels/ModLinkModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/ViewModels/ModLinkModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/ViewModels/ModListModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/ViewModels/ModListModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/ViewModels/ModModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/ViewModels/ModModel.cs -------------------------------------------------------------------------------- /src/SMAPI.Web/Views/Index/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Views/Index/Index.cshtml -------------------------------------------------------------------------------- /src/SMAPI.Web/Views/Index/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Views/Index/Privacy.cshtml -------------------------------------------------------------------------------- /src/SMAPI.Web/Views/JsonValidator/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Views/JsonValidator/Index.cshtml -------------------------------------------------------------------------------- /src/SMAPI.Web/Views/LogParser/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Views/LogParser/Index.cshtml -------------------------------------------------------------------------------- /src/SMAPI.Web/Views/Mods/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Views/Mods/Index.cshtml -------------------------------------------------------------------------------- /src/SMAPI.Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/SMAPI.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/SMAPI.Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/appsettings.Development.json -------------------------------------------------------------------------------- /src/SMAPI.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/appsettings.json -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/css/file-upload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/Content/css/file-upload.css -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/Content/css/index.css -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/css/json-validator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/Content/css/json-validator.css -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/css/log-parser.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/Content/css/log-parser.css -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/Content/css/main.css -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/css/mods.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/Content/css/mods.css -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/css/privacy.css: -------------------------------------------------------------------------------- 1 | h3 { 2 | border: 0; 3 | } 4 | -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/images/direct-download-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/Content/images/direct-download-icon.png -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/images/external/patreon-header-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/Content/images/external/patreon-header-help.png -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/images/external/patreon-header-upcoming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/Content/images/external/patreon-header-upcoming.png -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/images/external/patreon-header-what-i-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/Content/images/external/patreon-header-what-i-do.png -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/images/ko-fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/Content/images/ko-fi.png -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/images/nexus-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/Content/images/nexus-icon.png -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/images/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/Content/images/patreon.png -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/images/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/Content/images/paypal.png -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/images/pufferchick-cool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/Content/images/pufferchick-cool.svg -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/images/pufferchick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/Content/images/pufferchick.svg -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/images/sidebar-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/Content/images/sidebar-bg.svg -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/js/file-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/Content/js/file-upload.js -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/Content/js/index.js -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/js/json-validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/Content/js/json-validator.js -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/js/log-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/Content/js/log-parser.js -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/Content/js/mods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/Content/js/mods.js -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/SMAPI.metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/SMAPI.metadata.json -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/schemas/content-patcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/schemas/content-patcher.json -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/schemas/i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/schemas/i18n.json -------------------------------------------------------------------------------- /src/SMAPI.Web/wwwroot/schemas/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.Web/wwwroot/schemas/manifest.json -------------------------------------------------------------------------------- /src/SMAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.sln -------------------------------------------------------------------------------- /src/SMAPI.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI.sln.DotSettings -------------------------------------------------------------------------------- /src/SMAPI/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Constants.cs -------------------------------------------------------------------------------- /src/SMAPI/ContentSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/ContentSource.cs -------------------------------------------------------------------------------- /src/SMAPI/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Context.cs -------------------------------------------------------------------------------- /src/SMAPI/Enums/LoadStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Enums/LoadStage.cs -------------------------------------------------------------------------------- /src/SMAPI/Enums/SkillType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Enums/SkillType.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/AssetEditPriority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/AssetEditPriority.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/AssetLoadPriority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/AssetLoadPriority.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/AssetReadyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/AssetReadyEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/AssetRequestedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/AssetRequestedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/AssetsInvalidatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/AssetsInvalidatedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/BuildingListChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/BuildingListChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/ButtonPressedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/ButtonPressedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/ButtonReleasedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/ButtonReleasedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/ButtonsChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/ButtonsChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/ChestInventoryChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/ChestInventoryChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/CursorMovedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/CursorMovedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/DayEndingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/DayEndingEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/DayStartedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/DayStartedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/DebrisListChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/DebrisListChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/EventPriority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/EventPriority.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/EventPriorityAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/EventPriorityAttribute.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/FurnitureListChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/FurnitureListChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/GameLaunchedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/GameLaunchedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/IContentEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/IContentEvents.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/IDisplayEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/IDisplayEvents.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/IGameLoopEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/IGameLoopEvents.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/IInputEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/IInputEvents.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/IModEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/IModEvents.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/IMultiplayerEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/IMultiplayerEvents.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/IPlayerEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/IPlayerEvents.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/ISpecialisedEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/ISpecialisedEvents.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/IWorldEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/IWorldEvents.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/InventoryChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/InventoryChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/ItemStackSizeChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/ItemStackSizeChange.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/LargeTerrainFeatureListChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/LargeTerrainFeatureListChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/LevelChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/LevelChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/LoadStageChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/LoadStageChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/LocaleChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/LocaleChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/LocationListChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/LocationListChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/MenuChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/MenuChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/ModMessageReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/ModMessageReceivedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/MouseWheelScrolledEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/MouseWheelScrolledEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/NpcListChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/NpcListChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/ObjectListChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/ObjectListChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/OneSecondUpdateTickedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/OneSecondUpdateTickedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/OneSecondUpdateTickingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/OneSecondUpdateTickingEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/PeerConnectedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/PeerConnectedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/PeerContextReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/PeerContextReceivedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/PeerDisconnectedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/PeerDisconnectedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/RenderedActiveMenuEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/RenderedActiveMenuEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/RenderedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/RenderedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/RenderedHudEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/RenderedHudEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/RenderedWorldEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/RenderedWorldEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/RenderingActiveMenuEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/RenderingActiveMenuEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/RenderingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/RenderingEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/RenderingHudEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/RenderingHudEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/RenderingWorldEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/RenderingWorldEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/ReturnedToTitleEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/ReturnedToTitleEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/SaveCreatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/SaveCreatedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/SaveCreatingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/SaveCreatingEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/SaveLoadedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/SaveLoadedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/SavedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/SavedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/SavingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/SavingEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/TerrainFeatureListChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/TerrainFeatureListChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/TimeChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/TimeChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/UnvalidatedUpdateTickedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/UnvalidatedUpdateTickedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/UnvalidatedUpdateTickingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/UnvalidatedUpdateTickingEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/UpdateTickedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/UpdateTickedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/UpdateTickingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/UpdateTickingEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/WarpedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/WarpedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Events/WindowResizedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Events/WindowResizedEventArgs.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Command.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/CommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/CommandManager.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/CommandQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/CommandQueue.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Commands/HarmonySummaryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Commands/HarmonySummaryCommand.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Commands/HelpCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Commands/HelpCommand.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Commands/IInternalCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Commands/IInternalCommand.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Commands/ReloadI18nCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Commands/ReloadI18nCommand.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Content/AssetData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Content/AssetData.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Content/AssetDataForDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Content/AssetDataForDictionary.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Content/AssetDataForImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Content/AssetDataForImage.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Content/AssetDataForMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Content/AssetDataForMap.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Content/AssetDataForObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Content/AssetDataForObject.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Content/AssetEditOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Content/AssetEditOperation.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Content/AssetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Content/AssetInfo.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Content/AssetInterceptorChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Content/AssetInterceptorChange.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Content/AssetLoadOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Content/AssetLoadOperation.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Content/AssetName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Content/AssetName.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Content/AssetOperationGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Content/AssetOperationGroup.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Content/ContentCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Content/ContentCache.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Content/RawTextureData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Content/RawTextureData.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Content/TilesheetReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Content/TilesheetReference.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ContentCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ContentCoordinator.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ContentManagers/BaseContentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ContentManagers/BaseContentManager.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ContentManagers/GameContentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ContentManagers/GameContentManager.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ContentManagers/GameContentManagerForAssetPropagation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ContentManagers/GameContentManagerForAssetPropagation.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ContentManagers/IContentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ContentManagers/IContentManager.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ContentManagers/ModContentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ContentManagers/ModContentManager.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ContentPack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ContentPack.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/CursorPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/CursorPosition.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Deprecations/DeprecationLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Deprecations/DeprecationLevel.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Deprecations/DeprecationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Deprecations/DeprecationManager.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Deprecations/DeprecationWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Deprecations/DeprecationWarning.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Deprecations/ImmutableStackTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Deprecations/ImmutableStackTrace.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Events/EventManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Events/EventManager.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Events/IManagedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Events/IManagedEvent.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Events/ManagedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Events/ManagedEvent.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Events/ManagedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Events/ManagedEventHandler.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Events/ModContentEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Events/ModContentEvents.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Events/ModDisplayEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Events/ModDisplayEvents.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Events/ModEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Events/ModEvents.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Events/ModEventsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Events/ModEventsBase.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Events/ModGameLoopEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Events/ModGameLoopEvents.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Events/ModInputEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Events/ModInputEvents.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Events/ModMultiplayerEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Events/ModMultiplayerEvents.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Events/ModPlayerEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Events/ModPlayerEvents.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Events/ModSpecialisedEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Events/ModSpecialisedEvents.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Events/ModWorldEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Events/ModWorldEvents.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Exceptions/ContentLoadErrorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Exceptions/ContentLoadErrorType.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Exceptions/SAssemblyLoadFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Exceptions/SAssemblyLoadFailedException.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Exceptions/SContentLoadException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Exceptions/SContentLoadException.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ExitState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ExitState.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/GameVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/GameVersion.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/IModMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/IModMetadata.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Input/GamePadStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Input/GamePadStateBuilder.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Input/IInputStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Input/IInputStateBuilder.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Input/KeyboardStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Input/KeyboardStateBuilder.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Input/MouseStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Input/MouseStateBuilder.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Input/SInputState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Input/SInputState.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/InternalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/InternalExtensions.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Logging/InterceptingTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Logging/InterceptingTextWriter.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Logging/LogFileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Logging/LogFileManager.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Logging/LogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Logging/LogManager.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Logging/LogOnceCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Logging/LogOnceCacheKey.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModHelpers/BaseHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModHelpers/BaseHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModHelpers/CommandHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModHelpers/CommandHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModHelpers/ContentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModHelpers/ContentHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModHelpers/ContentPackHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModHelpers/ContentPackHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModHelpers/DataHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModHelpers/DataHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModHelpers/GameContentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModHelpers/GameContentHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModHelpers/InputHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModHelpers/InputHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModHelpers/ModContentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModHelpers/ModContentHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModHelpers/ModHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModHelpers/ModHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModHelpers/ModRegistryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModHelpers/ModRegistryHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModHelpers/MultiplayerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModHelpers/MultiplayerHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModHelpers/ReflectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModHelpers/ReflectionHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModHelpers/TranslationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModHelpers/TranslationHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLinked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLinked.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/AssemblyDefinitionResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/AssemblyDefinitionResolver.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/AssemblyLoadStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/AssemblyLoadStatus.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/AssemblyLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/AssemblyLoader.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/AssemblyParseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/AssemblyParseResult.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Finders/EventFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Finders/EventFinder.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Finders/FieldFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Finders/FieldFinder.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Finders/LegacyAssemblyFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Finders/LegacyAssemblyFinder.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Finders/MethodFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Finders/MethodFinder.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Finders/PropertyFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Finders/PropertyFinder.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Finders/ReferenceToMemberWithUnexpectedTypeFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Finders/ReferenceToMemberWithUnexpectedTypeFinder.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Finders/ReferenceToMissingMemberFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Finders/ReferenceToMissingMemberFinder.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Finders/TypeAssemblyFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Finders/TypeAssemblyFinder.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Finders/TypeFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Finders/TypeFinder.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Framework/BaseInstructionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Framework/BaseInstructionHandler.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Framework/RecursiveRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Framework/RecursiveRewriter.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Framework/RewriteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Framework/RewriteHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/IInstructionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/IInstructionHandler.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/IncompatibleInstructionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/IncompatibleInstructionException.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/InstructionHandleResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/InstructionHandleResult.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/InvalidModStateException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/InvalidModStateException.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/ModDependencyStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/ModDependencyStatus.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/ModFailReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/ModFailReason.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/ModMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/ModMetadata.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/ModMetadataStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/ModMetadataStatus.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/ModResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/ModResolver.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/PlatformAssemblyMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/PlatformAssemblyMap.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/RewriteFacades/AccessToolsFacade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/RewriteFacades/AccessToolsFacade.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/RewriteFacades/AnimalQueryMenuMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/RewriteFacades/AnimalQueryMenuMethods.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/RewriteFacades/CraftingPageMobileMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/RewriteFacades/CraftingPageMobileMethods.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/RewriteFacades/EnumMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/RewriteFacades/EnumMethods.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/RewriteFacades/Game1Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/RewriteFacades/Game1Methods.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/RewriteFacades/GameMenuMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/RewriteFacades/GameMenuMethods.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/RewriteFacades/HarmonyInstanceFacade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/RewriteFacades/HarmonyInstanceFacade.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/RewriteFacades/HarmonyInstanceMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/RewriteFacades/HarmonyInstanceMethods.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/RewriteFacades/HarmonyMethodFacade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/RewriteFacades/HarmonyMethodFacade.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/RewriteFacades/IClickableMenuMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/RewriteFacades/IClickableMenuMethods.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/RewriteFacades/InventoryMenuMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/RewriteFacades/InventoryMenuMethods.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/RewriteFacades/ItemGrabMenuMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/RewriteFacades/ItemGrabMenuMethods.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/RewriteFacades/MapPageMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/RewriteFacades/MapPageMethods.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/RewriteFacades/MenuWithInventoryMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/RewriteFacades/MenuWithInventoryMethods.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/RewriteFacades/OptionsElementMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/RewriteFacades/OptionsElementMethods.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/RewriteFacades/SoundBankMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/RewriteFacades/SoundBankMethods.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/RewriteFacades/SpriteBatchFacade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/RewriteFacades/SpriteBatchFacade.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/RewriteFacades/SpriteTextMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/RewriteFacades/SpriteTextMethods.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/RewriteFacades/TextBoxMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/RewriteFacades/TextBoxMethods.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/RewriteFacades/UtilityMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/RewriteFacades/UtilityMethods.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Rewriters/ArchitectureAssemblyRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Rewriters/ArchitectureAssemblyRewriter.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Rewriters/FieldReplaceRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Rewriters/FieldReplaceRewriter.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Rewriters/HarmonyRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Rewriters/HarmonyRewriter.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Rewriters/HeuristicFieldAccessibilityRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Rewriters/HeuristicFieldAccessibilityRewriter.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Rewriters/HeuristicFieldRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Rewriters/HeuristicFieldRewriter.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Rewriters/HeuristicMethodRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Rewriters/HeuristicMethodRewriter.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Rewriters/MethodParentRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Rewriters/MethodParentRewriter.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Rewriters/MethodToAnotherStaticMethodRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Rewriters/MethodToAnotherStaticMethodRewriter.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Rewriters/ModuleReferenceRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Rewriters/ModuleReferenceRewriter.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Rewriters/PropertyToFieldRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Rewriters/PropertyToFieldRewriter.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Rewriters/ReferenceToMissingMemberRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Rewriters/ReferenceToMissingMemberRewriter.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Rewriters/TypeFieldToAnotherTypeFieldRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Rewriters/TypeFieldToAnotherTypeFieldRewriter.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Rewriters/TypeFieldToAnotherTypePropertyRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Rewriters/TypeFieldToAnotherTypePropertyRewriter.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Rewriters/TypePropertyToAnotherTypeMethodRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Rewriters/TypePropertyToAnotherTypeMethodRewriter.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Rewriters/TypeReferenceRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Rewriters/TypeReferenceRewriter.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Symbols/SymbolReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Symbols/SymbolReader.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Symbols/SymbolReaderProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Symbols/SymbolReaderProvider.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/Symbols/SymbolWriterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/Symbols/SymbolWriterProvider.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModLoading/TypeReferenceComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModLoading/TypeReferenceComparer.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/ModRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/ModRegistry.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Models/SConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Models/SConfig.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Monitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Monitor.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Networking/MessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Networking/MessageType.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Networking/ModMessageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Networking/ModMessageModel.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Networking/MultiplayerPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Networking/MultiplayerPeer.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Networking/MultiplayerPeerMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Networking/MultiplayerPeerMod.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Networking/RemoteContextModModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Networking/RemoteContextModModel.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Networking/RemoteContextModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Networking/RemoteContextModel.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Networking/SGalaxyNetClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Networking/SGalaxyNetClient.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Networking/SGalaxyNetServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Networking/SGalaxyNetServer.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Networking/SLidgrenClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Networking/SLidgrenClient.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Networking/SLidgrenServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Networking/SLidgrenServer.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Reflection/IInterfaceProxyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Reflection/IInterfaceProxyFactory.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Reflection/InterfaceProxyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Reflection/InterfaceProxyFactory.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Reflection/ReflectedField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Reflection/ReflectedField.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Reflection/ReflectedMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Reflection/ReflectedMethod.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Reflection/ReflectedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Reflection/ReflectedProperty.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Reflection/Reflector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Reflection/Reflector.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Rendering/SDisplayDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Rendering/SDisplayDevice.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Rendering/SXnaDisplayDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Rendering/SXnaDisplayDevice.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/SChatBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/SChatBox.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/SCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/SCore.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/SGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/SGame.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/SGameRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/SGameRunner.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/SModHooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/SModHooks.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/SMultiplayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/SMultiplayer.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Serialization/ColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Serialization/ColorConverter.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Serialization/KeybindConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Serialization/KeybindConverter.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Serialization/PointConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Serialization/PointConverter.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Serialization/RectangleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Serialization/RectangleConverter.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Serialization/Vector2Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Serialization/Vector2Converter.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Singleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Singleton.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/SnapshotDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/SnapshotDiff.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/SnapshotItemListDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/SnapshotItemListDiff.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/SnapshotListDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/SnapshotListDiff.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/ChestTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/ChestTracker.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/Comparers/EquatableComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/Comparers/EquatableComparer.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/Comparers/GenericEqualsComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/Comparers/GenericEqualsComparer.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/Comparers/ObjectReferenceComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/Comparers/ObjectReferenceComparer.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/FieldWatchers/BaseDisposableWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/FieldWatchers/BaseDisposableWatcher.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/FieldWatchers/ComparableListWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/FieldWatchers/ComparableListWatcher.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/FieldWatchers/ComparableWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/FieldWatchers/ComparableWatcher.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/FieldWatchers/ImmutableCollectionWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/FieldWatchers/ImmutableCollectionWatcher.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/FieldWatchers/NetCollectionWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/FieldWatchers/NetCollectionWatcher.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/FieldWatchers/NetDictionaryWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/FieldWatchers/NetDictionaryWatcher.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/FieldWatchers/NetListWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/FieldWatchers/NetListWatcher.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/FieldWatchers/NetValueWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/FieldWatchers/NetValueWatcher.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/FieldWatchers/ObservableCollectionWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/FieldWatchers/ObservableCollectionWatcher.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/FieldWatchers/WatcherFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/FieldWatchers/WatcherFactory.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/ICollectionWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/ICollectionWatcher.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/IDictionaryWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/IDictionaryWatcher.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/IValueWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/IValueWatcher.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/IWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/IWatcher.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/LocationTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/LocationTracker.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/PlayerTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/PlayerTracker.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/Snapshots/LocationSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/Snapshots/LocationSnapshot.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/Snapshots/PlayerSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/Snapshots/PlayerSnapshot.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/Snapshots/WatcherSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/Snapshots/WatcherSnapshot.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/Snapshots/WorldLocationsSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/Snapshots/WorldLocationsSnapshot.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/StateTracking/WorldLocationsTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/StateTracking/WorldLocationsTracker.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/TemporaryHacks/MiniMonoModHotfix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/TemporaryHacks/MiniMonoModHotfix.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Translator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Translator.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Utilities/ContextHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Utilities/ContextHash.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Utilities/Countdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Utilities/Countdown.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Utilities/IntervalMemoryCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Utilities/IntervalMemoryCache.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/Utilities/TickCacheDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/Utilities/TickCacheDictionary.cs -------------------------------------------------------------------------------- /src/SMAPI/Framework/WatcherCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Framework/WatcherCore.cs -------------------------------------------------------------------------------- /src/SMAPI/GameFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/GameFramework.cs -------------------------------------------------------------------------------- /src/SMAPI/GamePlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/GamePlatform.cs -------------------------------------------------------------------------------- /src/SMAPI/IAssetData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IAssetData.cs -------------------------------------------------------------------------------- /src/SMAPI/IAssetDataForDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IAssetDataForDictionary.cs -------------------------------------------------------------------------------- /src/SMAPI/IAssetDataForImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IAssetDataForImage.cs -------------------------------------------------------------------------------- /src/SMAPI/IAssetDataForMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IAssetDataForMap.cs -------------------------------------------------------------------------------- /src/SMAPI/IAssetEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IAssetEditor.cs -------------------------------------------------------------------------------- /src/SMAPI/IAssetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IAssetInfo.cs -------------------------------------------------------------------------------- /src/SMAPI/IAssetLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IAssetLoader.cs -------------------------------------------------------------------------------- /src/SMAPI/IAssetName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IAssetName.cs -------------------------------------------------------------------------------- /src/SMAPI/ICommandHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/ICommandHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/IContentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IContentHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/IContentPack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IContentPack.cs -------------------------------------------------------------------------------- /src/SMAPI/IContentPackHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IContentPackHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/ICursorPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/ICursorPosition.cs -------------------------------------------------------------------------------- /src/SMAPI/IDataHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IDataHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/IGameContentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IGameContentHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/IInputHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IInputHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/IMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IMod.cs -------------------------------------------------------------------------------- /src/SMAPI/IModContentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IModContentHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/IModHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IModHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/IModInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IModInfo.cs -------------------------------------------------------------------------------- /src/SMAPI/IModLinked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IModLinked.cs -------------------------------------------------------------------------------- /src/SMAPI/IModRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IModRegistry.cs -------------------------------------------------------------------------------- /src/SMAPI/IMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IMonitor.cs -------------------------------------------------------------------------------- /src/SMAPI/IMultiplayerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IMultiplayerHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/IMultiplayerPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IMultiplayerPeer.cs -------------------------------------------------------------------------------- /src/SMAPI/IMultiplayerPeerMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IMultiplayerPeerMod.cs -------------------------------------------------------------------------------- /src/SMAPI/IRawTextureData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IRawTextureData.cs -------------------------------------------------------------------------------- /src/SMAPI/IReflectedField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IReflectedField.cs -------------------------------------------------------------------------------- /src/SMAPI/IReflectedMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IReflectedMethod.cs -------------------------------------------------------------------------------- /src/SMAPI/IReflectedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IReflectedProperty.cs -------------------------------------------------------------------------------- /src/SMAPI/IReflectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/IReflectionHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/ITranslationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/ITranslationHelper.cs -------------------------------------------------------------------------------- /src/SMAPI/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/LogLevel.cs -------------------------------------------------------------------------------- /src/SMAPI/Metadata/CoreAssetPropagator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Metadata/CoreAssetPropagator.cs -------------------------------------------------------------------------------- /src/SMAPI/Metadata/InstructionMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Metadata/InstructionMetadata.cs -------------------------------------------------------------------------------- /src/SMAPI/Mobile/FarmMigrationPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Mobile/FarmMigrationPatch.cs -------------------------------------------------------------------------------- /src/SMAPI/Mobile/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Mobile/IsExternalInit.cs -------------------------------------------------------------------------------- /src/SMAPI/Mod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Mod.cs -------------------------------------------------------------------------------- /src/SMAPI/PatchMapMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/PatchMapMode.cs -------------------------------------------------------------------------------- /src/SMAPI/PatchMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/PatchMode.cs -------------------------------------------------------------------------------- /src/SMAPI/Patches/Game1Patcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Patches/Game1Patcher.cs -------------------------------------------------------------------------------- /src/SMAPI/Patches/JunimoHarvesterPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Patches/JunimoHarvesterPatch.cs -------------------------------------------------------------------------------- /src/SMAPI/Patches/LocationSwitchPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Patches/LocationSwitchPatch.cs -------------------------------------------------------------------------------- /src/SMAPI/Patches/OnAppPausePatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Patches/OnAppPausePatch.cs -------------------------------------------------------------------------------- /src/SMAPI/Patches/SaveBackupPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Patches/SaveBackupPatch.cs -------------------------------------------------------------------------------- /src/SMAPI/Patches/SaveGamePatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Patches/SaveGamePatch.cs -------------------------------------------------------------------------------- /src/SMAPI/Patches/SpriteFontPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Patches/SpriteFontPatch.cs -------------------------------------------------------------------------------- /src/SMAPI/Patches/StringPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Patches/StringPatcher.cs -------------------------------------------------------------------------------- /src/SMAPI/Patches/ThreadSilenceExitPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Patches/ThreadSilenceExitPatch.cs -------------------------------------------------------------------------------- /src/SMAPI/Patches/TitleMenuPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Patches/TitleMenuPatcher.cs -------------------------------------------------------------------------------- /src/SMAPI/Patches/UIThreadPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Patches/UIThreadPatch.cs -------------------------------------------------------------------------------- /src/SMAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Program.cs -------------------------------------------------------------------------------- /src/SMAPI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SMAPI/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /src/SMAPI/SAlertDialogUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/SAlertDialogUtil.cs -------------------------------------------------------------------------------- /src/SMAPI/SButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/SButton.cs -------------------------------------------------------------------------------- /src/SMAPI/SButtonState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/SButtonState.cs -------------------------------------------------------------------------------- /src/SMAPI/SGameConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/SGameConsole.cs -------------------------------------------------------------------------------- /src/SMAPI/SMAPI.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/SMAPI.config.json -------------------------------------------------------------------------------- /src/SMAPI/SMAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/SMAPI.csproj -------------------------------------------------------------------------------- /src/SMAPI/SMainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/SMainActivity.cs -------------------------------------------------------------------------------- /src/SMAPI/SemanticVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/SemanticVersion.cs -------------------------------------------------------------------------------- /src/SMAPI/Translation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Translation.cs -------------------------------------------------------------------------------- /src/SMAPI/Utilities/AssetPathUtilities/AssetNamePartEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Utilities/AssetPathUtilities/AssetNamePartEnumerator.cs -------------------------------------------------------------------------------- /src/SMAPI/Utilities/DelegatingModHooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Utilities/DelegatingModHooks.cs -------------------------------------------------------------------------------- /src/SMAPI/Utilities/Keybind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Utilities/Keybind.cs -------------------------------------------------------------------------------- /src/SMAPI/Utilities/KeybindList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Utilities/KeybindList.cs -------------------------------------------------------------------------------- /src/SMAPI/Utilities/PathUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Utilities/PathUtilities.cs -------------------------------------------------------------------------------- /src/SMAPI/Utilities/PerScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Utilities/PerScreen.cs -------------------------------------------------------------------------------- /src/SMAPI/Utilities/SDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/Utilities/SDate.cs -------------------------------------------------------------------------------- /src/SMAPI/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/app.manifest -------------------------------------------------------------------------------- /src/SMAPI/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/i18n/de.json -------------------------------------------------------------------------------- /src/SMAPI/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/i18n/default.json -------------------------------------------------------------------------------- /src/SMAPI/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/i18n/es.json -------------------------------------------------------------------------------- /src/SMAPI/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/i18n/fr.json -------------------------------------------------------------------------------- /src/SMAPI/i18n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/i18n/hu.json -------------------------------------------------------------------------------- /src/SMAPI/i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/i18n/it.json -------------------------------------------------------------------------------- /src/SMAPI/i18n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/i18n/ja.json -------------------------------------------------------------------------------- /src/SMAPI/i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/i18n/ko.json -------------------------------------------------------------------------------- /src/SMAPI/i18n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/i18n/pl.json -------------------------------------------------------------------------------- /src/SMAPI/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/i18n/pt.json -------------------------------------------------------------------------------- /src/SMAPI/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/i18n/ru.json -------------------------------------------------------------------------------- /src/SMAPI/i18n/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/i18n/th.json -------------------------------------------------------------------------------- /src/SMAPI/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/i18n/tr.json -------------------------------------------------------------------------------- /src/SMAPI/i18n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/i18n/uk.json -------------------------------------------------------------------------------- /src/SMAPI/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/i18n/zh.json -------------------------------------------------------------------------------- /src/SMAPI/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZaneYork/SMAPI/HEAD/src/SMAPI/icon.ico -------------------------------------------------------------------------------- /src/SMAPI/steam_appid.txt: -------------------------------------------------------------------------------- 1 | 413150 --------------------------------------------------------------------------------