├── .config └── dotnet-tools.json ├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── codeql.yml │ └── deploy.yml ├── .gitignore ├── .graphqlrc.json ├── CommandHandler.cs ├── Configuration.cs ├── DependencyLoader.cs ├── DownloadTask.cs ├── Exceptions ├── AlreadyInUseException.cs ├── BaseMissingThingException.cs ├── DeleteFileException.cs ├── MetaMigrationException.cs ├── MigrationRequiredException.cs ├── MissingPackageException.cs ├── MissingVariantException.cs ├── MissingVersionException.cs ├── ModPathNetworkedException.cs └── MultipleModDirectoriesException.cs ├── FodyWeavers.xml ├── GameFont.cs ├── ImportTask.cs ├── LICENCE ├── LinkPayloads.cs ├── Model ├── Api │ ├── GraphQl.cs │ └── Group.cs ├── HeliosphereMeta.cs └── Penumbra │ ├── CombiningContainer.cs │ ├── CombiningModGroup.cs │ ├── CombiningOption.cs │ ├── DefaultMod.cs │ ├── IContainer.cs │ ├── ImcModGroup.cs │ ├── ImcOption.cs │ ├── ModGroup.cs │ ├── ModMeta.cs │ ├── OptionItem.cs │ └── StandardModGroup.cs ├── NativeMethods.txt ├── PackageState.cs ├── PenumbraIpc.cs ├── Plugin.cs ├── README.md ├── Resources ├── check.png ├── clock.png ├── cloud-arrow-down.png ├── file-plus.png ├── hard-drives.png ├── magnifying-glass.png ├── package.png ├── prohibit-inset.png ├── trash-simple.png └── warning.png ├── Server.cs ├── Ui ├── BreakingChangeWindow.cs ├── Components │ ├── Importer.cs │ └── ModChooser.cs ├── Dialogs │ ├── AntiVirusDialog.cs │ ├── Dialog.cs │ ├── GenericDialog.cs │ ├── MultipleModDirectoriesDialog.cs │ ├── PapCrashWarning.cs │ └── VersionMismatchDialog.cs ├── DownloadStatusWindow.cs ├── ExternalImportWindow.cs ├── FirstTimeSetupWindow.cs ├── IDrawable.cs ├── Migrations │ └── ShortVariantMigration.cs ├── MultiPromptWindow.cs ├── MultiVariantPromptWindow.cs ├── NotificationProgressManager.cs ├── PenumbraWindowIntegration.cs ├── PluginUi.cs ├── PromptHelper.cs ├── PromptWindow.cs ├── SetUpPenumbraWindow.cs └── Tabs │ ├── DownloadHistory.cs │ ├── LatestUpdate.cs │ ├── Manager.cs │ ├── Settings.cs │ └── Support.cs ├── UpdateSummary.cs ├── Util ├── Base64Ext.cs ├── Clipboard.cs ├── Consts.cs ├── DependencyHelper.cs ├── DirectoryHelper.cs ├── EnumHelper.cs ├── ErrorHelper.cs ├── FileHelper.cs ├── GloballyThrottledStream.cs ├── Guard.cs ├── GuidExt.cs ├── HashHelper.cs ├── HttpClientExt.cs ├── IReadOnlyListExt.cs ├── ImGuiHelper.cs ├── ImageHelper.cs ├── MultipartProvider.cs ├── NotificationExt.cs ├── PathHelper.cs ├── RestartManager.cs ├── SemaphoreGuard.cs ├── SentryHelper.cs ├── StringHelper.cs ├── Support.cs ├── UintHelper.cs └── WebPHelper.cs ├── changelog-testing.txt ├── changelog.txt ├── ci-tools.py ├── graphql.config.yml ├── heliosphere-plugin.csproj ├── heliosphere-plugin.sln ├── heliosphere-plugin.yaml ├── make_repo.py ├── packages.lock.json ├── queries ├── CheckVanityUrl.graphql ├── ConvertVariantId.graphql ├── ConvertVersionId.graphql ├── DownloadTask.graphql ├── GetBasicInfo.graphql ├── GetNewestVersionInfo.graphql ├── GetNewestVersionInfoAllVariants.graphql ├── GetNewestVersionInfoMulti.graphql ├── GetShortVariantId.graphql ├── GetVariant.graphql ├── GetVersions.graphql ├── Importer.graphql ├── MultiVariantInstall.graphql └── VariantInfo.graphql ├── schema.extensions.graphql └── schema.graphql /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.graphqlrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/.graphqlrc.json -------------------------------------------------------------------------------- /CommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/CommandHandler.cs -------------------------------------------------------------------------------- /Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Configuration.cs -------------------------------------------------------------------------------- /DependencyLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/DependencyLoader.cs -------------------------------------------------------------------------------- /DownloadTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/DownloadTask.cs -------------------------------------------------------------------------------- /Exceptions/AlreadyInUseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Exceptions/AlreadyInUseException.cs -------------------------------------------------------------------------------- /Exceptions/BaseMissingThingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Exceptions/BaseMissingThingException.cs -------------------------------------------------------------------------------- /Exceptions/DeleteFileException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Exceptions/DeleteFileException.cs -------------------------------------------------------------------------------- /Exceptions/MetaMigrationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Exceptions/MetaMigrationException.cs -------------------------------------------------------------------------------- /Exceptions/MigrationRequiredException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Exceptions/MigrationRequiredException.cs -------------------------------------------------------------------------------- /Exceptions/MissingPackageException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Exceptions/MissingPackageException.cs -------------------------------------------------------------------------------- /Exceptions/MissingVariantException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Exceptions/MissingVariantException.cs -------------------------------------------------------------------------------- /Exceptions/MissingVersionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Exceptions/MissingVersionException.cs -------------------------------------------------------------------------------- /Exceptions/ModPathNetworkedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Exceptions/ModPathNetworkedException.cs -------------------------------------------------------------------------------- /Exceptions/MultipleModDirectoriesException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Exceptions/MultipleModDirectoriesException.cs -------------------------------------------------------------------------------- /FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/FodyWeavers.xml -------------------------------------------------------------------------------- /GameFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/GameFont.cs -------------------------------------------------------------------------------- /ImportTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/ImportTask.cs -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/LICENCE -------------------------------------------------------------------------------- /LinkPayloads.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/LinkPayloads.cs -------------------------------------------------------------------------------- /Model/Api/GraphQl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Model/Api/GraphQl.cs -------------------------------------------------------------------------------- /Model/Api/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Model/Api/Group.cs -------------------------------------------------------------------------------- /Model/HeliosphereMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Model/HeliosphereMeta.cs -------------------------------------------------------------------------------- /Model/Penumbra/CombiningContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Model/Penumbra/CombiningContainer.cs -------------------------------------------------------------------------------- /Model/Penumbra/CombiningModGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Model/Penumbra/CombiningModGroup.cs -------------------------------------------------------------------------------- /Model/Penumbra/CombiningOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Model/Penumbra/CombiningOption.cs -------------------------------------------------------------------------------- /Model/Penumbra/DefaultMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Model/Penumbra/DefaultMod.cs -------------------------------------------------------------------------------- /Model/Penumbra/IContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Model/Penumbra/IContainer.cs -------------------------------------------------------------------------------- /Model/Penumbra/ImcModGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Model/Penumbra/ImcModGroup.cs -------------------------------------------------------------------------------- /Model/Penumbra/ImcOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Model/Penumbra/ImcOption.cs -------------------------------------------------------------------------------- /Model/Penumbra/ModGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Model/Penumbra/ModGroup.cs -------------------------------------------------------------------------------- /Model/Penumbra/ModMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Model/Penumbra/ModMeta.cs -------------------------------------------------------------------------------- /Model/Penumbra/OptionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Model/Penumbra/OptionItem.cs -------------------------------------------------------------------------------- /Model/Penumbra/StandardModGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Model/Penumbra/StandardModGroup.cs -------------------------------------------------------------------------------- /NativeMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/NativeMethods.txt -------------------------------------------------------------------------------- /PackageState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/PackageState.cs -------------------------------------------------------------------------------- /PenumbraIpc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/PenumbraIpc.cs -------------------------------------------------------------------------------- /Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Plugin.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/README.md -------------------------------------------------------------------------------- /Resources/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Resources/check.png -------------------------------------------------------------------------------- /Resources/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Resources/clock.png -------------------------------------------------------------------------------- /Resources/cloud-arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Resources/cloud-arrow-down.png -------------------------------------------------------------------------------- /Resources/file-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Resources/file-plus.png -------------------------------------------------------------------------------- /Resources/hard-drives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Resources/hard-drives.png -------------------------------------------------------------------------------- /Resources/magnifying-glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Resources/magnifying-glass.png -------------------------------------------------------------------------------- /Resources/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Resources/package.png -------------------------------------------------------------------------------- /Resources/prohibit-inset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Resources/prohibit-inset.png -------------------------------------------------------------------------------- /Resources/trash-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Resources/trash-simple.png -------------------------------------------------------------------------------- /Resources/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Resources/warning.png -------------------------------------------------------------------------------- /Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Server.cs -------------------------------------------------------------------------------- /Ui/BreakingChangeWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/BreakingChangeWindow.cs -------------------------------------------------------------------------------- /Ui/Components/Importer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/Components/Importer.cs -------------------------------------------------------------------------------- /Ui/Components/ModChooser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/Components/ModChooser.cs -------------------------------------------------------------------------------- /Ui/Dialogs/AntiVirusDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/Dialogs/AntiVirusDialog.cs -------------------------------------------------------------------------------- /Ui/Dialogs/Dialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/Dialogs/Dialog.cs -------------------------------------------------------------------------------- /Ui/Dialogs/GenericDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/Dialogs/GenericDialog.cs -------------------------------------------------------------------------------- /Ui/Dialogs/MultipleModDirectoriesDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/Dialogs/MultipleModDirectoriesDialog.cs -------------------------------------------------------------------------------- /Ui/Dialogs/PapCrashWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/Dialogs/PapCrashWarning.cs -------------------------------------------------------------------------------- /Ui/Dialogs/VersionMismatchDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/Dialogs/VersionMismatchDialog.cs -------------------------------------------------------------------------------- /Ui/DownloadStatusWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/DownloadStatusWindow.cs -------------------------------------------------------------------------------- /Ui/ExternalImportWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/ExternalImportWindow.cs -------------------------------------------------------------------------------- /Ui/FirstTimeSetupWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/FirstTimeSetupWindow.cs -------------------------------------------------------------------------------- /Ui/IDrawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/IDrawable.cs -------------------------------------------------------------------------------- /Ui/Migrations/ShortVariantMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/Migrations/ShortVariantMigration.cs -------------------------------------------------------------------------------- /Ui/MultiPromptWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/MultiPromptWindow.cs -------------------------------------------------------------------------------- /Ui/MultiVariantPromptWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/MultiVariantPromptWindow.cs -------------------------------------------------------------------------------- /Ui/NotificationProgressManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/NotificationProgressManager.cs -------------------------------------------------------------------------------- /Ui/PenumbraWindowIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/PenumbraWindowIntegration.cs -------------------------------------------------------------------------------- /Ui/PluginUi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/PluginUi.cs -------------------------------------------------------------------------------- /Ui/PromptHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/PromptHelper.cs -------------------------------------------------------------------------------- /Ui/PromptWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/PromptWindow.cs -------------------------------------------------------------------------------- /Ui/SetUpPenumbraWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/SetUpPenumbraWindow.cs -------------------------------------------------------------------------------- /Ui/Tabs/DownloadHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/Tabs/DownloadHistory.cs -------------------------------------------------------------------------------- /Ui/Tabs/LatestUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/Tabs/LatestUpdate.cs -------------------------------------------------------------------------------- /Ui/Tabs/Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/Tabs/Manager.cs -------------------------------------------------------------------------------- /Ui/Tabs/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/Tabs/Settings.cs -------------------------------------------------------------------------------- /Ui/Tabs/Support.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Ui/Tabs/Support.cs -------------------------------------------------------------------------------- /UpdateSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/UpdateSummary.cs -------------------------------------------------------------------------------- /Util/Base64Ext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/Base64Ext.cs -------------------------------------------------------------------------------- /Util/Clipboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/Clipboard.cs -------------------------------------------------------------------------------- /Util/Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/Consts.cs -------------------------------------------------------------------------------- /Util/DependencyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/DependencyHelper.cs -------------------------------------------------------------------------------- /Util/DirectoryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/DirectoryHelper.cs -------------------------------------------------------------------------------- /Util/EnumHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/EnumHelper.cs -------------------------------------------------------------------------------- /Util/ErrorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/ErrorHelper.cs -------------------------------------------------------------------------------- /Util/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/FileHelper.cs -------------------------------------------------------------------------------- /Util/GloballyThrottledStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/GloballyThrottledStream.cs -------------------------------------------------------------------------------- /Util/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/Guard.cs -------------------------------------------------------------------------------- /Util/GuidExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/GuidExt.cs -------------------------------------------------------------------------------- /Util/HashHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/HashHelper.cs -------------------------------------------------------------------------------- /Util/HttpClientExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/HttpClientExt.cs -------------------------------------------------------------------------------- /Util/IReadOnlyListExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/IReadOnlyListExt.cs -------------------------------------------------------------------------------- /Util/ImGuiHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/ImGuiHelper.cs -------------------------------------------------------------------------------- /Util/ImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/ImageHelper.cs -------------------------------------------------------------------------------- /Util/MultipartProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/MultipartProvider.cs -------------------------------------------------------------------------------- /Util/NotificationExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/NotificationExt.cs -------------------------------------------------------------------------------- /Util/PathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/PathHelper.cs -------------------------------------------------------------------------------- /Util/RestartManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/RestartManager.cs -------------------------------------------------------------------------------- /Util/SemaphoreGuard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/SemaphoreGuard.cs -------------------------------------------------------------------------------- /Util/SentryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/SentryHelper.cs -------------------------------------------------------------------------------- /Util/StringHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/StringHelper.cs -------------------------------------------------------------------------------- /Util/Support.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/Support.cs -------------------------------------------------------------------------------- /Util/UintHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/UintHelper.cs -------------------------------------------------------------------------------- /Util/WebPHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/Util/WebPHelper.cs -------------------------------------------------------------------------------- /changelog-testing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/changelog-testing.txt -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/changelog.txt -------------------------------------------------------------------------------- /ci-tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/ci-tools.py -------------------------------------------------------------------------------- /graphql.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/graphql.config.yml -------------------------------------------------------------------------------- /heliosphere-plugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/heliosphere-plugin.csproj -------------------------------------------------------------------------------- /heliosphere-plugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/heliosphere-plugin.sln -------------------------------------------------------------------------------- /heliosphere-plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/heliosphere-plugin.yaml -------------------------------------------------------------------------------- /make_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/make_repo.py -------------------------------------------------------------------------------- /packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/packages.lock.json -------------------------------------------------------------------------------- /queries/CheckVanityUrl.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/queries/CheckVanityUrl.graphql -------------------------------------------------------------------------------- /queries/ConvertVariantId.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/queries/ConvertVariantId.graphql -------------------------------------------------------------------------------- /queries/ConvertVersionId.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/queries/ConvertVersionId.graphql -------------------------------------------------------------------------------- /queries/DownloadTask.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/queries/DownloadTask.graphql -------------------------------------------------------------------------------- /queries/GetBasicInfo.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/queries/GetBasicInfo.graphql -------------------------------------------------------------------------------- /queries/GetNewestVersionInfo.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/queries/GetNewestVersionInfo.graphql -------------------------------------------------------------------------------- /queries/GetNewestVersionInfoAllVariants.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/queries/GetNewestVersionInfoAllVariants.graphql -------------------------------------------------------------------------------- /queries/GetNewestVersionInfoMulti.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/queries/GetNewestVersionInfoMulti.graphql -------------------------------------------------------------------------------- /queries/GetShortVariantId.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/queries/GetShortVariantId.graphql -------------------------------------------------------------------------------- /queries/GetVariant.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/queries/GetVariant.graphql -------------------------------------------------------------------------------- /queries/GetVersions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/queries/GetVersions.graphql -------------------------------------------------------------------------------- /queries/Importer.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/queries/Importer.graphql -------------------------------------------------------------------------------- /queries/MultiVariantInstall.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/queries/MultiVariantInstall.graphql -------------------------------------------------------------------------------- /queries/VariantInfo.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/queries/VariantInfo.graphql -------------------------------------------------------------------------------- /schema.extensions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/schema.extensions.graphql -------------------------------------------------------------------------------- /schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliosphere-xiv/plugin/HEAD/schema.graphql --------------------------------------------------------------------------------