├── .config └── dotnet-tools.json ├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build-Common.yml │ ├── ci-AetheryteLinkInChat.yml │ ├── ci-FaloopIntegration.yml │ ├── reusable-build-plugin.yml │ └── reusable-deploy-plugin.yml ├── .gitignore ├── AetheryteLinkInChat.IpcModel ├── AetheryteLinkInChat.IpcModel.csproj ├── TeleportPayload.cs └── packages.lock.json ├── AetheryteLinkInChat ├── AetheryteLinkInChat.cs ├── AetheryteLinkInChat.csproj ├── AetheryteLinkInChat.json ├── Config │ ├── GrandCompanyAetheryte.cs │ ├── PluginConfig.cs │ └── PluginConfigWindow.cs ├── Ipc │ └── IpcProvider.cs ├── Localization.cs ├── Payloads │ ├── AetherytePayload.cs │ └── LifestreamPayload.cs ├── Solver │ ├── AetheryteSolver.cs │ └── TeleportPath.cs ├── Teleporter.cs └── packages.lock.json ├── ChatFilter ├── ChatFilter.csproj ├── ChatFilter.json ├── ChatFilterManager.cs ├── ChatFilterPlugin.cs ├── Filters │ ├── DebugMessageFilter.cs │ ├── DuplicatedMapLinkFilter.cs │ ├── DuplicatedMessageFilter.cs │ ├── IChatFilter.cs │ ├── LsGreetingFilter.cs │ ├── NoticeMessageFilter.cs │ ├── NoviceNetworkJoinMessageFilter.cs │ └── SonarRankBFilter.cs ├── PluginConfig.cs └── PluginConfigWindow.cs ├── Common ├── Api │ ├── Chat │ │ ├── ChatClient.cs │ │ ├── ChatClientEx.cs │ │ └── IChatClient.cs │ ├── Command │ │ ├── Attributes │ │ │ ├── CommandAttribute.cs │ │ │ ├── CommandHelpAttribute.cs │ │ │ └── HiddenCommandAttribute.cs │ │ ├── CommandContext.cs │ │ ├── CommandProcessor.Commands.cs │ │ ├── CommandProcessor.cs │ │ ├── DirectoryCommands.cs │ │ ├── DivinationCommand.cs │ │ ├── ICommandProcessor.cs │ │ └── ICommandProvider.cs │ ├── Config │ │ ├── ConfigManager.Commands.cs │ │ ├── ConfigManager.cs │ │ ├── IConfigManager.cs │ │ └── Migration │ │ │ └── ConfigMigrationTool.cs │ ├── Dalamud │ │ ├── Actor │ │ │ └── ActorEx.cs │ │ ├── DalamudApi.cs │ │ ├── DalamudLog.cs │ │ ├── IDalamudApi.cs │ │ ├── Payload │ │ │ └── PayloadUtilities.cs │ │ ├── SeIconCharEx.cs │ │ └── String │ │ │ └── SeStringEx.cs │ ├── Definition │ │ ├── DefinitionContainer.cs │ │ ├── DefinitionManager.Commands.cs │ │ ├── DefinitionManager.cs │ │ ├── DefinitionProvider.cs │ │ ├── DefinitionProviderFactory.cs │ │ ├── HexStringJsonConverter.cs │ │ ├── IDefinitionManager.cs │ │ ├── IDefinitionProvider.cs │ │ ├── LocalDefinitionProvider.cs │ │ └── RemoteDefinitionProvider.cs │ ├── Discord │ │ ├── DiscordWebhookClient.cs │ │ ├── DiscordWebhookClientEx.cs │ │ ├── DiscordWebhookMessage.cs │ │ └── IDiscordWebhookClient.cs │ ├── DivinationApi.cs │ ├── DivinationEnvironment.cs │ ├── IDivinationApi{T}.cs │ ├── IDivinationPluginApi.cs │ ├── Input │ │ ├── IKeyStrokeManager.cs │ │ ├── KeyStroke.cs │ │ ├── KeyStrokeManager.cs │ │ └── Win32Api.cs │ ├── Localize │ │ └── LocalizedString.cs │ ├── Memory │ │ ├── ByteArrayEx.cs │ │ ├── GameObjectEx.cs │ │ ├── IntPtrEx.cs │ │ └── MemoryUtils.cs │ ├── Network │ │ ├── INetworkHandler.cs │ │ ├── INetworkInterceptor.cs │ │ ├── IOpcodeDetector.cs │ │ ├── IOpcodeDetectorManager.cs │ │ ├── IpcHeader.cs │ │ ├── NetworkContext.cs │ │ ├── NetworkContextEx.cs │ │ └── OpcodeDetectorManager.cs │ ├── ServiceContainer.cs │ ├── Time │ │ ├── EorzeaTime.cs │ │ └── EorzeaTimeEx.cs │ ├── Ui │ │ ├── ITextureManager.cs │ │ ├── ImGuiEx.cs │ │ ├── TextureManager.cs │ │ ├── TextureManagerEx.cs │ │ └── Window │ │ │ ├── ConfigWindow.cs │ │ │ ├── IConfigWindow.cs │ │ │ ├── IWindow.cs │ │ │ ├── Window.cs │ │ │ └── WindowEx.cs │ ├── Utilities │ │ ├── FieldUpdater.cs │ │ ├── IEnumerableExtension.cs │ │ ├── IFieldUpdater.cs │ │ └── UpdateProhibitedAttribute.cs │ ├── Version │ │ ├── GameVersion.cs │ │ ├── GitVersion.cs │ │ ├── IGitVersion.cs │ │ ├── IVersionManager.cs │ │ ├── VersionManager.Commands.cs │ │ └── VersionManager.cs │ ├── Voiceroid2Proxy │ │ ├── IVoiceroid2ProxyClient.cs │ │ ├── Voiceroid2ProxyClient.cs │ │ └── Voiceroid2ProxyClientEx.cs │ └── XivApi │ │ ├── IXivApiClient.cs │ │ ├── XivApiClient.cs │ │ ├── XivApiClientEx.cs │ │ └── XivApiResponse.cs ├── Boilerplate │ ├── DivinationPlugin{TPlugin,TConfiguration,TDefinition}.cs │ ├── DivinationPlugin{TPlugin,TConfiguration}.cs │ ├── DivinationPlugin{TPlugin}.cs │ ├── EmptyConfig.cs │ ├── EmptyDefinitionContainer.cs │ ├── ExamplePlugin.cs │ └── Features │ │ ├── ICommandSupport.cs │ │ ├── IConfigWindowSupport.cs │ │ └── IDefinitionSupport.cs ├── Common.csproj └── packages.lock.json ├── Debugger ├── ByteArrayUtils.cs ├── Debugger.ColorCommand.cs ├── Debugger.IconCommand.cs ├── Debugger.cs ├── Debugger.csproj ├── Debugger.json ├── NetworkListener.cs ├── PluginConfig.cs ├── Window │ ├── DataRow.cs │ ├── DataType.cs │ ├── DataViewer.cs │ └── PluginConfigWindow.cs └── packages.lock.json ├── Directory.Build.props ├── DiscordIntegration.IpcModel ├── ClearTemplatesPayload.cs ├── ClearVariablesPayload.cs ├── DiscordIntegration.IpcModel.csproj ├── DiscordIntegrationIpcs.cs ├── UpdateTemplatesPayload.cs └── UpdateVariablesPayload.cs ├── DiscordIntegration ├── Data │ ├── ImageKeys.cs │ └── OnlineStatus.cs ├── Discord │ ├── DiscordRpc.cs │ └── DiscordRpcLogger.cs ├── DiscordIntegration.Presence.cs ├── DiscordIntegration.cs ├── DiscordIntegration.csproj ├── DiscordIntegration.json ├── Formatter.cs ├── Ipc │ ├── IpcManager.cs │ ├── IpcPayloadManager.cs │ └── IpcValueRecord.cs ├── PluginConfig.cs └── PluginConfigWindow.cs ├── Divination.sln ├── FaloopIntegration ├── Config │ ├── Jurisdiction.cs │ ├── PluginConfig.cs │ └── PluginConfigWindow.cs ├── Faloop │ ├── FaloopApiClient.cs │ ├── FaloopEmbedData.cs │ ├── FaloopSession.cs │ ├── FaloopSocketIOClient.cs │ └── Model │ │ ├── FaloopEventPayload.cs │ │ ├── MobReportData.cs │ │ ├── MockData.cs │ │ ├── UserLoginResponse.cs │ │ └── UserRefreshResponse.cs ├── FaloopIntegration.cs ├── FaloopIntegration.csproj ├── FaloopIntegration.json ├── Ipc │ └── AetheryteLinkInChatIpc.cs ├── Localization.cs ├── MobDeathEvent.cs ├── MobSpawnEvent.cs ├── PluginStatus.cs ├── Ui │ └── ActiveMobUi.cs ├── Utils.cs └── packages.lock.json ├── GitVersion.yml ├── Horoscope ├── Horoscope.cs ├── Horoscope.csproj ├── Horoscope.json ├── HoroscopeConfig.cs ├── ModuleManager.cs ├── Modules │ ├── CalcCommand.cs │ ├── IModule.cs │ ├── OverrideActTextToSpeech.cs │ ├── PowerSchemeCommand.cs │ └── TurnOffScreenCommand.cs ├── Ui │ └── HoroscopeConfigWindow.cs └── packages.lock.json ├── InstanceIDViewer ├── InstanceIDViewer.cs ├── InstanceIDViewer.csproj ├── InstanceIDViewer.json ├── NetworkListener.cs └── packages.lock.json ├── LICENSE ├── PerfectComplex ├── PerfectComplex.cs ├── PerfectComplex.csproj ├── PerfectComplex.json ├── PluginConfig.cs ├── PluginConfigWindow.cs └── PluginDefinition.cs ├── README.md ├── SseClient ├── Handlers │ ├── BuiltIn │ │ ├── BuildInChatHandler.cs │ │ ├── LsMessageHandler.cs │ │ └── ShoutMessageHandler.cs │ ├── Discord │ │ └── DiscordMessageHandler.cs │ ├── GateAnnouncementsHandler.cs │ ├── Internal │ │ ├── ISsePayloadEmitter.cs │ │ ├── ISsePayloadHandler.cs │ │ ├── ISsePayloadReceiver.cs │ │ ├── SseConnectionManager.cs │ │ ├── SsePayloadHandlerManager.cs │ │ └── SseUtils.cs │ ├── MaintenanceHandler.cs │ ├── MobHunt │ │ ├── Faloop │ │ │ ├── Api │ │ │ │ ├── FaloopApiClient.cs │ │ │ │ ├── FaloopIdentifyResult.cs │ │ │ │ └── FaloopInitResult.cs │ │ │ ├── FaloopMobInformationHandler.cs │ │ │ └── FaloopSystemMessageHandler.cs │ │ ├── MobHuntActorHandler.cs │ │ ├── MobHuntDiscordMessageHandler.cs │ │ └── MobHuntSystemMessageHandler.cs │ └── WelcomeMessageHandler.cs ├── Payloads │ ├── ActorPayload.cs │ ├── FaloopPayload.cs │ └── SsePayload.cs ├── PluginConfig.cs ├── PluginConfigWindow.cs ├── SseClient.cs ├── SseClient.csproj └── SseClient.json ├── TwitterIntegration ├── PluginConfig.cs ├── PluginConfigWindow.cs ├── TwitterIntegration.cs ├── TwitterIntegration.csproj └── TwitterIntegration.json ├── Voiceroid2Talker ├── PluginConfig.cs ├── PluginConfigWindow.cs ├── Voiceroid2Talker.cs ├── Voiceroid2Talker.csproj ├── Voiceroid2Talker.json ├── Win32Api.cs └── packages.lock.json └── renovate.json /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: SlashNephy 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build-Common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/.github/workflows/build-Common.yml -------------------------------------------------------------------------------- /.github/workflows/ci-AetheryteLinkInChat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/.github/workflows/ci-AetheryteLinkInChat.yml -------------------------------------------------------------------------------- /.github/workflows/ci-FaloopIntegration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/.github/workflows/ci-FaloopIntegration.yml -------------------------------------------------------------------------------- /.github/workflows/reusable-build-plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/.github/workflows/reusable-build-plugin.yml -------------------------------------------------------------------------------- /.github/workflows/reusable-deploy-plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/.github/workflows/reusable-deploy-plugin.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/.gitignore -------------------------------------------------------------------------------- /AetheryteLinkInChat.IpcModel/AetheryteLinkInChat.IpcModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/AetheryteLinkInChat.IpcModel/AetheryteLinkInChat.IpcModel.csproj -------------------------------------------------------------------------------- /AetheryteLinkInChat.IpcModel/TeleportPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/AetheryteLinkInChat.IpcModel/TeleportPayload.cs -------------------------------------------------------------------------------- /AetheryteLinkInChat.IpcModel/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/AetheryteLinkInChat.IpcModel/packages.lock.json -------------------------------------------------------------------------------- /AetheryteLinkInChat/AetheryteLinkInChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/AetheryteLinkInChat/AetheryteLinkInChat.cs -------------------------------------------------------------------------------- /AetheryteLinkInChat/AetheryteLinkInChat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/AetheryteLinkInChat/AetheryteLinkInChat.csproj -------------------------------------------------------------------------------- /AetheryteLinkInChat/AetheryteLinkInChat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/AetheryteLinkInChat/AetheryteLinkInChat.json -------------------------------------------------------------------------------- /AetheryteLinkInChat/Config/GrandCompanyAetheryte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/AetheryteLinkInChat/Config/GrandCompanyAetheryte.cs -------------------------------------------------------------------------------- /AetheryteLinkInChat/Config/PluginConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/AetheryteLinkInChat/Config/PluginConfig.cs -------------------------------------------------------------------------------- /AetheryteLinkInChat/Config/PluginConfigWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/AetheryteLinkInChat/Config/PluginConfigWindow.cs -------------------------------------------------------------------------------- /AetheryteLinkInChat/Ipc/IpcProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/AetheryteLinkInChat/Ipc/IpcProvider.cs -------------------------------------------------------------------------------- /AetheryteLinkInChat/Localization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/AetheryteLinkInChat/Localization.cs -------------------------------------------------------------------------------- /AetheryteLinkInChat/Payloads/AetherytePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/AetheryteLinkInChat/Payloads/AetherytePayload.cs -------------------------------------------------------------------------------- /AetheryteLinkInChat/Payloads/LifestreamPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/AetheryteLinkInChat/Payloads/LifestreamPayload.cs -------------------------------------------------------------------------------- /AetheryteLinkInChat/Solver/AetheryteSolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/AetheryteLinkInChat/Solver/AetheryteSolver.cs -------------------------------------------------------------------------------- /AetheryteLinkInChat/Solver/TeleportPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/AetheryteLinkInChat/Solver/TeleportPath.cs -------------------------------------------------------------------------------- /AetheryteLinkInChat/Teleporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/AetheryteLinkInChat/Teleporter.cs -------------------------------------------------------------------------------- /AetheryteLinkInChat/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/AetheryteLinkInChat/packages.lock.json -------------------------------------------------------------------------------- /ChatFilter/ChatFilter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/ChatFilter/ChatFilter.csproj -------------------------------------------------------------------------------- /ChatFilter/ChatFilter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/ChatFilter/ChatFilter.json -------------------------------------------------------------------------------- /ChatFilter/ChatFilterManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/ChatFilter/ChatFilterManager.cs -------------------------------------------------------------------------------- /ChatFilter/ChatFilterPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/ChatFilter/ChatFilterPlugin.cs -------------------------------------------------------------------------------- /ChatFilter/Filters/DebugMessageFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/ChatFilter/Filters/DebugMessageFilter.cs -------------------------------------------------------------------------------- /ChatFilter/Filters/DuplicatedMapLinkFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/ChatFilter/Filters/DuplicatedMapLinkFilter.cs -------------------------------------------------------------------------------- /ChatFilter/Filters/DuplicatedMessageFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/ChatFilter/Filters/DuplicatedMessageFilter.cs -------------------------------------------------------------------------------- /ChatFilter/Filters/IChatFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/ChatFilter/Filters/IChatFilter.cs -------------------------------------------------------------------------------- /ChatFilter/Filters/LsGreetingFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/ChatFilter/Filters/LsGreetingFilter.cs -------------------------------------------------------------------------------- /ChatFilter/Filters/NoticeMessageFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/ChatFilter/Filters/NoticeMessageFilter.cs -------------------------------------------------------------------------------- /ChatFilter/Filters/NoviceNetworkJoinMessageFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/ChatFilter/Filters/NoviceNetworkJoinMessageFilter.cs -------------------------------------------------------------------------------- /ChatFilter/Filters/SonarRankBFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/ChatFilter/Filters/SonarRankBFilter.cs -------------------------------------------------------------------------------- /ChatFilter/PluginConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/ChatFilter/PluginConfig.cs -------------------------------------------------------------------------------- /ChatFilter/PluginConfigWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/ChatFilter/PluginConfigWindow.cs -------------------------------------------------------------------------------- /Common/Api/Chat/ChatClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Chat/ChatClient.cs -------------------------------------------------------------------------------- /Common/Api/Chat/ChatClientEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Chat/ChatClientEx.cs -------------------------------------------------------------------------------- /Common/Api/Chat/IChatClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Chat/IChatClient.cs -------------------------------------------------------------------------------- /Common/Api/Command/Attributes/CommandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Command/Attributes/CommandAttribute.cs -------------------------------------------------------------------------------- /Common/Api/Command/Attributes/CommandHelpAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Command/Attributes/CommandHelpAttribute.cs -------------------------------------------------------------------------------- /Common/Api/Command/Attributes/HiddenCommandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Command/Attributes/HiddenCommandAttribute.cs -------------------------------------------------------------------------------- /Common/Api/Command/CommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Command/CommandContext.cs -------------------------------------------------------------------------------- /Common/Api/Command/CommandProcessor.Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Command/CommandProcessor.Commands.cs -------------------------------------------------------------------------------- /Common/Api/Command/CommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Command/CommandProcessor.cs -------------------------------------------------------------------------------- /Common/Api/Command/DirectoryCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Command/DirectoryCommands.cs -------------------------------------------------------------------------------- /Common/Api/Command/DivinationCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Command/DivinationCommand.cs -------------------------------------------------------------------------------- /Common/Api/Command/ICommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Command/ICommandProcessor.cs -------------------------------------------------------------------------------- /Common/Api/Command/ICommandProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Command/ICommandProvider.cs -------------------------------------------------------------------------------- /Common/Api/Config/ConfigManager.Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Config/ConfigManager.Commands.cs -------------------------------------------------------------------------------- /Common/Api/Config/ConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Config/ConfigManager.cs -------------------------------------------------------------------------------- /Common/Api/Config/IConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Config/IConfigManager.cs -------------------------------------------------------------------------------- /Common/Api/Config/Migration/ConfigMigrationTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Config/Migration/ConfigMigrationTool.cs -------------------------------------------------------------------------------- /Common/Api/Dalamud/Actor/ActorEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Dalamud/Actor/ActorEx.cs -------------------------------------------------------------------------------- /Common/Api/Dalamud/DalamudApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Dalamud/DalamudApi.cs -------------------------------------------------------------------------------- /Common/Api/Dalamud/DalamudLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Dalamud/DalamudLog.cs -------------------------------------------------------------------------------- /Common/Api/Dalamud/IDalamudApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Dalamud/IDalamudApi.cs -------------------------------------------------------------------------------- /Common/Api/Dalamud/Payload/PayloadUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Dalamud/Payload/PayloadUtilities.cs -------------------------------------------------------------------------------- /Common/Api/Dalamud/SeIconCharEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Dalamud/SeIconCharEx.cs -------------------------------------------------------------------------------- /Common/Api/Dalamud/String/SeStringEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Dalamud/String/SeStringEx.cs -------------------------------------------------------------------------------- /Common/Api/Definition/DefinitionContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Definition/DefinitionContainer.cs -------------------------------------------------------------------------------- /Common/Api/Definition/DefinitionManager.Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Definition/DefinitionManager.Commands.cs -------------------------------------------------------------------------------- /Common/Api/Definition/DefinitionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Definition/DefinitionManager.cs -------------------------------------------------------------------------------- /Common/Api/Definition/DefinitionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Definition/DefinitionProvider.cs -------------------------------------------------------------------------------- /Common/Api/Definition/DefinitionProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Definition/DefinitionProviderFactory.cs -------------------------------------------------------------------------------- /Common/Api/Definition/HexStringJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Definition/HexStringJsonConverter.cs -------------------------------------------------------------------------------- /Common/Api/Definition/IDefinitionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Definition/IDefinitionManager.cs -------------------------------------------------------------------------------- /Common/Api/Definition/IDefinitionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Definition/IDefinitionProvider.cs -------------------------------------------------------------------------------- /Common/Api/Definition/LocalDefinitionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Definition/LocalDefinitionProvider.cs -------------------------------------------------------------------------------- /Common/Api/Definition/RemoteDefinitionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Definition/RemoteDefinitionProvider.cs -------------------------------------------------------------------------------- /Common/Api/Discord/DiscordWebhookClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Discord/DiscordWebhookClient.cs -------------------------------------------------------------------------------- /Common/Api/Discord/DiscordWebhookClientEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Discord/DiscordWebhookClientEx.cs -------------------------------------------------------------------------------- /Common/Api/Discord/DiscordWebhookMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Discord/DiscordWebhookMessage.cs -------------------------------------------------------------------------------- /Common/Api/Discord/IDiscordWebhookClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Discord/IDiscordWebhookClient.cs -------------------------------------------------------------------------------- /Common/Api/DivinationApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/DivinationApi.cs -------------------------------------------------------------------------------- /Common/Api/DivinationEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/DivinationEnvironment.cs -------------------------------------------------------------------------------- /Common/Api/IDivinationApi{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/IDivinationApi{T}.cs -------------------------------------------------------------------------------- /Common/Api/IDivinationPluginApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/IDivinationPluginApi.cs -------------------------------------------------------------------------------- /Common/Api/Input/IKeyStrokeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Input/IKeyStrokeManager.cs -------------------------------------------------------------------------------- /Common/Api/Input/KeyStroke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Input/KeyStroke.cs -------------------------------------------------------------------------------- /Common/Api/Input/KeyStrokeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Input/KeyStrokeManager.cs -------------------------------------------------------------------------------- /Common/Api/Input/Win32Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Input/Win32Api.cs -------------------------------------------------------------------------------- /Common/Api/Localize/LocalizedString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Localize/LocalizedString.cs -------------------------------------------------------------------------------- /Common/Api/Memory/ByteArrayEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Memory/ByteArrayEx.cs -------------------------------------------------------------------------------- /Common/Api/Memory/GameObjectEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Memory/GameObjectEx.cs -------------------------------------------------------------------------------- /Common/Api/Memory/IntPtrEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Memory/IntPtrEx.cs -------------------------------------------------------------------------------- /Common/Api/Memory/MemoryUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Memory/MemoryUtils.cs -------------------------------------------------------------------------------- /Common/Api/Network/INetworkHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Network/INetworkHandler.cs -------------------------------------------------------------------------------- /Common/Api/Network/INetworkInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Network/INetworkInterceptor.cs -------------------------------------------------------------------------------- /Common/Api/Network/IOpcodeDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Network/IOpcodeDetector.cs -------------------------------------------------------------------------------- /Common/Api/Network/IOpcodeDetectorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Network/IOpcodeDetectorManager.cs -------------------------------------------------------------------------------- /Common/Api/Network/IpcHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Network/IpcHeader.cs -------------------------------------------------------------------------------- /Common/Api/Network/NetworkContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Network/NetworkContext.cs -------------------------------------------------------------------------------- /Common/Api/Network/NetworkContextEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Network/NetworkContextEx.cs -------------------------------------------------------------------------------- /Common/Api/Network/OpcodeDetectorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Network/OpcodeDetectorManager.cs -------------------------------------------------------------------------------- /Common/Api/ServiceContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/ServiceContainer.cs -------------------------------------------------------------------------------- /Common/Api/Time/EorzeaTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Time/EorzeaTime.cs -------------------------------------------------------------------------------- /Common/Api/Time/EorzeaTimeEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Time/EorzeaTimeEx.cs -------------------------------------------------------------------------------- /Common/Api/Ui/ITextureManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Ui/ITextureManager.cs -------------------------------------------------------------------------------- /Common/Api/Ui/ImGuiEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Ui/ImGuiEx.cs -------------------------------------------------------------------------------- /Common/Api/Ui/TextureManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Ui/TextureManager.cs -------------------------------------------------------------------------------- /Common/Api/Ui/TextureManagerEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Ui/TextureManagerEx.cs -------------------------------------------------------------------------------- /Common/Api/Ui/Window/ConfigWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Ui/Window/ConfigWindow.cs -------------------------------------------------------------------------------- /Common/Api/Ui/Window/IConfigWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Ui/Window/IConfigWindow.cs -------------------------------------------------------------------------------- /Common/Api/Ui/Window/IWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Ui/Window/IWindow.cs -------------------------------------------------------------------------------- /Common/Api/Ui/Window/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Ui/Window/Window.cs -------------------------------------------------------------------------------- /Common/Api/Ui/Window/WindowEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Ui/Window/WindowEx.cs -------------------------------------------------------------------------------- /Common/Api/Utilities/FieldUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Utilities/FieldUpdater.cs -------------------------------------------------------------------------------- /Common/Api/Utilities/IEnumerableExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Utilities/IEnumerableExtension.cs -------------------------------------------------------------------------------- /Common/Api/Utilities/IFieldUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Utilities/IFieldUpdater.cs -------------------------------------------------------------------------------- /Common/Api/Utilities/UpdateProhibitedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Utilities/UpdateProhibitedAttribute.cs -------------------------------------------------------------------------------- /Common/Api/Version/GameVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Version/GameVersion.cs -------------------------------------------------------------------------------- /Common/Api/Version/GitVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Version/GitVersion.cs -------------------------------------------------------------------------------- /Common/Api/Version/IGitVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Version/IGitVersion.cs -------------------------------------------------------------------------------- /Common/Api/Version/IVersionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Version/IVersionManager.cs -------------------------------------------------------------------------------- /Common/Api/Version/VersionManager.Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Version/VersionManager.Commands.cs -------------------------------------------------------------------------------- /Common/Api/Version/VersionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Version/VersionManager.cs -------------------------------------------------------------------------------- /Common/Api/Voiceroid2Proxy/IVoiceroid2ProxyClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Voiceroid2Proxy/IVoiceroid2ProxyClient.cs -------------------------------------------------------------------------------- /Common/Api/Voiceroid2Proxy/Voiceroid2ProxyClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Voiceroid2Proxy/Voiceroid2ProxyClient.cs -------------------------------------------------------------------------------- /Common/Api/Voiceroid2Proxy/Voiceroid2ProxyClientEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/Voiceroid2Proxy/Voiceroid2ProxyClientEx.cs -------------------------------------------------------------------------------- /Common/Api/XivApi/IXivApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/XivApi/IXivApiClient.cs -------------------------------------------------------------------------------- /Common/Api/XivApi/XivApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/XivApi/XivApiClient.cs -------------------------------------------------------------------------------- /Common/Api/XivApi/XivApiClientEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/XivApi/XivApiClientEx.cs -------------------------------------------------------------------------------- /Common/Api/XivApi/XivApiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Api/XivApi/XivApiResponse.cs -------------------------------------------------------------------------------- /Common/Boilerplate/DivinationPlugin{TPlugin,TConfiguration,TDefinition}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Boilerplate/DivinationPlugin{TPlugin,TConfiguration,TDefinition}.cs -------------------------------------------------------------------------------- /Common/Boilerplate/DivinationPlugin{TPlugin,TConfiguration}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Boilerplate/DivinationPlugin{TPlugin,TConfiguration}.cs -------------------------------------------------------------------------------- /Common/Boilerplate/DivinationPlugin{TPlugin}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Boilerplate/DivinationPlugin{TPlugin}.cs -------------------------------------------------------------------------------- /Common/Boilerplate/EmptyConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Boilerplate/EmptyConfig.cs -------------------------------------------------------------------------------- /Common/Boilerplate/EmptyDefinitionContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Boilerplate/EmptyDefinitionContainer.cs -------------------------------------------------------------------------------- /Common/Boilerplate/ExamplePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Boilerplate/ExamplePlugin.cs -------------------------------------------------------------------------------- /Common/Boilerplate/Features/ICommandSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Boilerplate/Features/ICommandSupport.cs -------------------------------------------------------------------------------- /Common/Boilerplate/Features/IConfigWindowSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Boilerplate/Features/IConfigWindowSupport.cs -------------------------------------------------------------------------------- /Common/Boilerplate/Features/IDefinitionSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Boilerplate/Features/IDefinitionSupport.cs -------------------------------------------------------------------------------- /Common/Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/Common.csproj -------------------------------------------------------------------------------- /Common/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Common/packages.lock.json -------------------------------------------------------------------------------- /Debugger/ByteArrayUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Debugger/ByteArrayUtils.cs -------------------------------------------------------------------------------- /Debugger/Debugger.ColorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Debugger/Debugger.ColorCommand.cs -------------------------------------------------------------------------------- /Debugger/Debugger.IconCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Debugger/Debugger.IconCommand.cs -------------------------------------------------------------------------------- /Debugger/Debugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Debugger/Debugger.cs -------------------------------------------------------------------------------- /Debugger/Debugger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Debugger/Debugger.csproj -------------------------------------------------------------------------------- /Debugger/Debugger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Debugger/Debugger.json -------------------------------------------------------------------------------- /Debugger/NetworkListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Debugger/NetworkListener.cs -------------------------------------------------------------------------------- /Debugger/PluginConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Debugger/PluginConfig.cs -------------------------------------------------------------------------------- /Debugger/Window/DataRow.cs: -------------------------------------------------------------------------------- 1 | namespace Divination.Debugger.Window; 2 | 3 | public record DataRow(int Index, string Value); 4 | -------------------------------------------------------------------------------- /Debugger/Window/DataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Debugger/Window/DataType.cs -------------------------------------------------------------------------------- /Debugger/Window/DataViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Debugger/Window/DataViewer.cs -------------------------------------------------------------------------------- /Debugger/Window/PluginConfigWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Debugger/Window/PluginConfigWindow.cs -------------------------------------------------------------------------------- /Debugger/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Debugger/packages.lock.json -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /DiscordIntegration.IpcModel/ClearTemplatesPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/DiscordIntegration.IpcModel/ClearTemplatesPayload.cs -------------------------------------------------------------------------------- /DiscordIntegration.IpcModel/ClearVariablesPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/DiscordIntegration.IpcModel/ClearVariablesPayload.cs -------------------------------------------------------------------------------- /DiscordIntegration.IpcModel/DiscordIntegration.IpcModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/DiscordIntegration.IpcModel/DiscordIntegration.IpcModel.csproj -------------------------------------------------------------------------------- /DiscordIntegration.IpcModel/DiscordIntegrationIpcs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/DiscordIntegration.IpcModel/DiscordIntegrationIpcs.cs -------------------------------------------------------------------------------- /DiscordIntegration.IpcModel/UpdateTemplatesPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/DiscordIntegration.IpcModel/UpdateTemplatesPayload.cs -------------------------------------------------------------------------------- /DiscordIntegration.IpcModel/UpdateVariablesPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/DiscordIntegration.IpcModel/UpdateVariablesPayload.cs -------------------------------------------------------------------------------- /DiscordIntegration/Data/ImageKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/DiscordIntegration/Data/ImageKeys.cs -------------------------------------------------------------------------------- /DiscordIntegration/Data/OnlineStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/DiscordIntegration/Data/OnlineStatus.cs -------------------------------------------------------------------------------- /DiscordIntegration/Discord/DiscordRpc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/DiscordIntegration/Discord/DiscordRpc.cs -------------------------------------------------------------------------------- /DiscordIntegration/Discord/DiscordRpcLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/DiscordIntegration/Discord/DiscordRpcLogger.cs -------------------------------------------------------------------------------- /DiscordIntegration/DiscordIntegration.Presence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/DiscordIntegration/DiscordIntegration.Presence.cs -------------------------------------------------------------------------------- /DiscordIntegration/DiscordIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/DiscordIntegration/DiscordIntegration.cs -------------------------------------------------------------------------------- /DiscordIntegration/DiscordIntegration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/DiscordIntegration/DiscordIntegration.csproj -------------------------------------------------------------------------------- /DiscordIntegration/DiscordIntegration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/DiscordIntegration/DiscordIntegration.json -------------------------------------------------------------------------------- /DiscordIntegration/Formatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/DiscordIntegration/Formatter.cs -------------------------------------------------------------------------------- /DiscordIntegration/Ipc/IpcManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/DiscordIntegration/Ipc/IpcManager.cs -------------------------------------------------------------------------------- /DiscordIntegration/Ipc/IpcPayloadManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/DiscordIntegration/Ipc/IpcPayloadManager.cs -------------------------------------------------------------------------------- /DiscordIntegration/Ipc/IpcValueRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/DiscordIntegration/Ipc/IpcValueRecord.cs -------------------------------------------------------------------------------- /DiscordIntegration/PluginConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/DiscordIntegration/PluginConfig.cs -------------------------------------------------------------------------------- /DiscordIntegration/PluginConfigWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/DiscordIntegration/PluginConfigWindow.cs -------------------------------------------------------------------------------- /Divination.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Divination.sln -------------------------------------------------------------------------------- /FaloopIntegration/Config/Jurisdiction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/Config/Jurisdiction.cs -------------------------------------------------------------------------------- /FaloopIntegration/Config/PluginConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/Config/PluginConfig.cs -------------------------------------------------------------------------------- /FaloopIntegration/Config/PluginConfigWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/Config/PluginConfigWindow.cs -------------------------------------------------------------------------------- /FaloopIntegration/Faloop/FaloopApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/Faloop/FaloopApiClient.cs -------------------------------------------------------------------------------- /FaloopIntegration/Faloop/FaloopEmbedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/Faloop/FaloopEmbedData.cs -------------------------------------------------------------------------------- /FaloopIntegration/Faloop/FaloopSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/Faloop/FaloopSession.cs -------------------------------------------------------------------------------- /FaloopIntegration/Faloop/FaloopSocketIOClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/Faloop/FaloopSocketIOClient.cs -------------------------------------------------------------------------------- /FaloopIntegration/Faloop/Model/FaloopEventPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/Faloop/Model/FaloopEventPayload.cs -------------------------------------------------------------------------------- /FaloopIntegration/Faloop/Model/MobReportData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/Faloop/Model/MobReportData.cs -------------------------------------------------------------------------------- /FaloopIntegration/Faloop/Model/MockData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/Faloop/Model/MockData.cs -------------------------------------------------------------------------------- /FaloopIntegration/Faloop/Model/UserLoginResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/Faloop/Model/UserLoginResponse.cs -------------------------------------------------------------------------------- /FaloopIntegration/Faloop/Model/UserRefreshResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/Faloop/Model/UserRefreshResponse.cs -------------------------------------------------------------------------------- /FaloopIntegration/FaloopIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/FaloopIntegration.cs -------------------------------------------------------------------------------- /FaloopIntegration/FaloopIntegration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/FaloopIntegration.csproj -------------------------------------------------------------------------------- /FaloopIntegration/FaloopIntegration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/FaloopIntegration.json -------------------------------------------------------------------------------- /FaloopIntegration/Ipc/AetheryteLinkInChatIpc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/Ipc/AetheryteLinkInChatIpc.cs -------------------------------------------------------------------------------- /FaloopIntegration/Localization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/Localization.cs -------------------------------------------------------------------------------- /FaloopIntegration/MobDeathEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/MobDeathEvent.cs -------------------------------------------------------------------------------- /FaloopIntegration/MobSpawnEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/MobSpawnEvent.cs -------------------------------------------------------------------------------- /FaloopIntegration/PluginStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/PluginStatus.cs -------------------------------------------------------------------------------- /FaloopIntegration/Ui/ActiveMobUi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/Ui/ActiveMobUi.cs -------------------------------------------------------------------------------- /FaloopIntegration/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/Utils.cs -------------------------------------------------------------------------------- /FaloopIntegration/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/FaloopIntegration/packages.lock.json -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /Horoscope/Horoscope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Horoscope/Horoscope.cs -------------------------------------------------------------------------------- /Horoscope/Horoscope.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Horoscope/Horoscope.csproj -------------------------------------------------------------------------------- /Horoscope/Horoscope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Horoscope/Horoscope.json -------------------------------------------------------------------------------- /Horoscope/HoroscopeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Horoscope/HoroscopeConfig.cs -------------------------------------------------------------------------------- /Horoscope/ModuleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Horoscope/ModuleManager.cs -------------------------------------------------------------------------------- /Horoscope/Modules/CalcCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Horoscope/Modules/CalcCommand.cs -------------------------------------------------------------------------------- /Horoscope/Modules/IModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Horoscope/Modules/IModule.cs -------------------------------------------------------------------------------- /Horoscope/Modules/OverrideActTextToSpeech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Horoscope/Modules/OverrideActTextToSpeech.cs -------------------------------------------------------------------------------- /Horoscope/Modules/PowerSchemeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Horoscope/Modules/PowerSchemeCommand.cs -------------------------------------------------------------------------------- /Horoscope/Modules/TurnOffScreenCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Horoscope/Modules/TurnOffScreenCommand.cs -------------------------------------------------------------------------------- /Horoscope/Ui/HoroscopeConfigWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Horoscope/Ui/HoroscopeConfigWindow.cs -------------------------------------------------------------------------------- /Horoscope/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Horoscope/packages.lock.json -------------------------------------------------------------------------------- /InstanceIDViewer/InstanceIDViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/InstanceIDViewer/InstanceIDViewer.cs -------------------------------------------------------------------------------- /InstanceIDViewer/InstanceIDViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/InstanceIDViewer/InstanceIDViewer.csproj -------------------------------------------------------------------------------- /InstanceIDViewer/InstanceIDViewer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/InstanceIDViewer/InstanceIDViewer.json -------------------------------------------------------------------------------- /InstanceIDViewer/NetworkListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/InstanceIDViewer/NetworkListener.cs -------------------------------------------------------------------------------- /InstanceIDViewer/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/InstanceIDViewer/packages.lock.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/LICENSE -------------------------------------------------------------------------------- /PerfectComplex/PerfectComplex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/PerfectComplex/PerfectComplex.cs -------------------------------------------------------------------------------- /PerfectComplex/PerfectComplex.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/PerfectComplex/PerfectComplex.csproj -------------------------------------------------------------------------------- /PerfectComplex/PerfectComplex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/PerfectComplex/PerfectComplex.json -------------------------------------------------------------------------------- /PerfectComplex/PluginConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/PerfectComplex/PluginConfig.cs -------------------------------------------------------------------------------- /PerfectComplex/PluginConfigWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/PerfectComplex/PluginConfigWindow.cs -------------------------------------------------------------------------------- /PerfectComplex/PluginDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/PerfectComplex/PluginDefinition.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/README.md -------------------------------------------------------------------------------- /SseClient/Handlers/BuiltIn/BuildInChatHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Handlers/BuiltIn/BuildInChatHandler.cs -------------------------------------------------------------------------------- /SseClient/Handlers/BuiltIn/LsMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Handlers/BuiltIn/LsMessageHandler.cs -------------------------------------------------------------------------------- /SseClient/Handlers/BuiltIn/ShoutMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Handlers/BuiltIn/ShoutMessageHandler.cs -------------------------------------------------------------------------------- /SseClient/Handlers/Discord/DiscordMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Handlers/Discord/DiscordMessageHandler.cs -------------------------------------------------------------------------------- /SseClient/Handlers/GateAnnouncementsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Handlers/GateAnnouncementsHandler.cs -------------------------------------------------------------------------------- /SseClient/Handlers/Internal/ISsePayloadEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Handlers/Internal/ISsePayloadEmitter.cs -------------------------------------------------------------------------------- /SseClient/Handlers/Internal/ISsePayloadHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Handlers/Internal/ISsePayloadHandler.cs -------------------------------------------------------------------------------- /SseClient/Handlers/Internal/ISsePayloadReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Handlers/Internal/ISsePayloadReceiver.cs -------------------------------------------------------------------------------- /SseClient/Handlers/Internal/SseConnectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Handlers/Internal/SseConnectionManager.cs -------------------------------------------------------------------------------- /SseClient/Handlers/Internal/SsePayloadHandlerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Handlers/Internal/SsePayloadHandlerManager.cs -------------------------------------------------------------------------------- /SseClient/Handlers/Internal/SseUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Handlers/Internal/SseUtils.cs -------------------------------------------------------------------------------- /SseClient/Handlers/MaintenanceHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Handlers/MaintenanceHandler.cs -------------------------------------------------------------------------------- /SseClient/Handlers/MobHunt/Faloop/Api/FaloopApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Handlers/MobHunt/Faloop/Api/FaloopApiClient.cs -------------------------------------------------------------------------------- /SseClient/Handlers/MobHunt/Faloop/Api/FaloopIdentifyResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Handlers/MobHunt/Faloop/Api/FaloopIdentifyResult.cs -------------------------------------------------------------------------------- /SseClient/Handlers/MobHunt/Faloop/Api/FaloopInitResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Handlers/MobHunt/Faloop/Api/FaloopInitResult.cs -------------------------------------------------------------------------------- /SseClient/Handlers/MobHunt/Faloop/FaloopMobInformationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Handlers/MobHunt/Faloop/FaloopMobInformationHandler.cs -------------------------------------------------------------------------------- /SseClient/Handlers/MobHunt/Faloop/FaloopSystemMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Handlers/MobHunt/Faloop/FaloopSystemMessageHandler.cs -------------------------------------------------------------------------------- /SseClient/Handlers/MobHunt/MobHuntActorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Handlers/MobHunt/MobHuntActorHandler.cs -------------------------------------------------------------------------------- /SseClient/Handlers/MobHunt/MobHuntDiscordMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Handlers/MobHunt/MobHuntDiscordMessageHandler.cs -------------------------------------------------------------------------------- /SseClient/Handlers/MobHunt/MobHuntSystemMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Handlers/MobHunt/MobHuntSystemMessageHandler.cs -------------------------------------------------------------------------------- /SseClient/Handlers/WelcomeMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Handlers/WelcomeMessageHandler.cs -------------------------------------------------------------------------------- /SseClient/Payloads/ActorPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Payloads/ActorPayload.cs -------------------------------------------------------------------------------- /SseClient/Payloads/FaloopPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Payloads/FaloopPayload.cs -------------------------------------------------------------------------------- /SseClient/Payloads/SsePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/Payloads/SsePayload.cs -------------------------------------------------------------------------------- /SseClient/PluginConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/PluginConfig.cs -------------------------------------------------------------------------------- /SseClient/PluginConfigWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/PluginConfigWindow.cs -------------------------------------------------------------------------------- /SseClient/SseClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/SseClient.cs -------------------------------------------------------------------------------- /SseClient/SseClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/SseClient.csproj -------------------------------------------------------------------------------- /SseClient/SseClient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/SseClient/SseClient.json -------------------------------------------------------------------------------- /TwitterIntegration/PluginConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/TwitterIntegration/PluginConfig.cs -------------------------------------------------------------------------------- /TwitterIntegration/PluginConfigWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/TwitterIntegration/PluginConfigWindow.cs -------------------------------------------------------------------------------- /TwitterIntegration/TwitterIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/TwitterIntegration/TwitterIntegration.cs -------------------------------------------------------------------------------- /TwitterIntegration/TwitterIntegration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/TwitterIntegration/TwitterIntegration.csproj -------------------------------------------------------------------------------- /TwitterIntegration/TwitterIntegration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/TwitterIntegration/TwitterIntegration.json -------------------------------------------------------------------------------- /Voiceroid2Talker/PluginConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Voiceroid2Talker/PluginConfig.cs -------------------------------------------------------------------------------- /Voiceroid2Talker/PluginConfigWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Voiceroid2Talker/PluginConfigWindow.cs -------------------------------------------------------------------------------- /Voiceroid2Talker/Voiceroid2Talker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Voiceroid2Talker/Voiceroid2Talker.cs -------------------------------------------------------------------------------- /Voiceroid2Talker/Voiceroid2Talker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Voiceroid2Talker/Voiceroid2Talker.csproj -------------------------------------------------------------------------------- /Voiceroid2Talker/Voiceroid2Talker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Voiceroid2Talker/Voiceroid2Talker.json -------------------------------------------------------------------------------- /Voiceroid2Talker/Win32Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Voiceroid2Talker/Win32Api.cs -------------------------------------------------------------------------------- /Voiceroid2Talker/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/Voiceroid2Talker/packages.lock.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/Divination/HEAD/renovate.json --------------------------------------------------------------------------------