├── .github ├── FUNDING.yml └── workflows │ ├── codequality.yml │ └── dotnet.yml ├── .gitignore ├── .idea ├── .idea.Fork │ └── .idea │ │ ├── .gitignore │ │ ├── dataSources.xml │ │ ├── encodings.xml │ │ ├── indexLayout.xml │ │ ├── misc.xml │ │ └── vcs.xml ├── .idea.ProjectAvery │ └── .idea │ │ ├── .gitignore │ │ ├── encodings.xml │ │ ├── indexLayout.xml │ │ ├── misc.xml │ │ └── vcs.xml ├── .name ├── config │ └── applicationhost.config ├── vcs.xml └── workspace.xml ├── .run ├── ForkBackend.run.xml └── ForkFrontend.run.xml ├── Backend ├── .gitignore ├── .run │ ├── Add Migration.run.xml │ └── Remove last migration.run.xml ├── Fork.csproj ├── Fork.sln.DotSettings ├── LICENSE ├── Migrations │ ├── 20211219165250_Initial.Designer.cs │ ├── 20211219165250_Initial.cs │ ├── 20211221225941_AddPlayers.Designer.cs │ ├── 20211221225941_AddPlayers.cs │ ├── 20211222215652_PlayerLogic.Designer.cs │ ├── 20211222215652_PlayerLogic.cs │ ├── 20220102151441_AddedPlayerFK.Designer.cs │ ├── 20220102151441_AddedPlayerFK.cs │ ├── 20241126212136_EntityFrameworkUpdate.Designer.cs │ ├── 20241126212136_EntityFrameworkUpdate.cs │ ├── 20241128192837_NullabilityUpdate.Designer.cs │ ├── 20241128192837_NullabilityUpdate.cs │ ├── 20251207100601_RestructureEntitySettings.Designer.cs │ ├── 20251207100601_RestructureEntitySettings.cs │ ├── ApplicationDbContextModelSnapshot.cs │ ├── createMigration.sh │ └── removeLastMigration.sh ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── readme.md └── src │ ├── Adapters │ ├── AbstractAdapter.cs │ ├── Fork │ │ └── ForkApiAdapter.cs │ ├── Mojang │ │ ├── Manifest.cs │ │ ├── MojangApiAdapter.cs │ │ └── VersionDetails.cs │ ├── PaperMc │ │ ├── PaperMcApiAdapter.cs │ │ ├── PaperMcVersion.cs │ │ └── PaperMcVersionList.cs │ ├── Purpur │ │ ├── PurpurApiAdapter.cs │ │ └── PurpurVersionList.cs │ └── Waterfall │ │ ├── WaterfallApiAdapter.cs │ │ ├── WaterfallVersion.cs │ │ └── WaterfallVersionList.cs │ ├── Controllers │ ├── AbstractRestController.cs │ ├── ApplicationController.cs │ ├── CreateEntityController.cs │ └── EntityController.cs │ ├── Logic │ ├── Managers │ │ ├── ApplicationManager.cs │ │ ├── EntityManager.cs │ │ ├── ServerVersionManager.cs │ │ └── TokenManager.cs │ ├── Model │ │ └── Web │ │ │ └── Mojang │ │ │ ├── PlayerByName.cs │ │ │ ├── PlayerProfile.cs │ │ │ ├── PlayerProperty.cs │ │ │ └── PlayerTextureProfile.cs │ ├── Notification │ │ └── NotificationCenter.cs │ ├── Persistence │ │ └── ApplicationDbContext.cs │ └── Services │ │ ├── AuthenticationServices │ │ └── AuthenticationService.cs │ │ ├── EntityServices │ │ ├── CommandService.cs │ │ ├── ConsoleInterpreter.cs │ │ ├── ConsoleService.cs │ │ ├── EntityPostProcessingService.cs │ │ ├── EntityService.cs │ │ ├── EntitySettingsService.cs │ │ ├── PlayerService.cs │ │ └── ServerService.cs │ │ ├── FileServices │ │ ├── FileReaderService.cs │ │ └── FileWriterService.cs │ │ ├── StateServices │ │ └── ApplicationStateService.cs │ │ └── WebServices │ │ └── DownloadService.cs │ ├── Resources │ └── DefaultHead.png │ └── Util │ ├── AuthenticationMiddleware.cs │ ├── ExtensionMethods │ ├── ApplicationBuilderExtensions.cs │ ├── EntityExtensions.cs │ ├── ProcessExtensions.cs │ └── StreamExtensions.cs │ ├── ForkConstants.cs │ ├── ForkExceptionFilterAttribute.cs │ ├── JavaUtils │ └── JavaVersionUtils.cs │ ├── MemoryUtil.cs │ ├── SwaggerUtils │ ├── FriendlyStringEnumConverter.cs │ └── TokenSecurityFilter.cs │ └── TextPlainInputFormatter.cs ├── Common ├── .gitattributes ├── .gitignore ├── ForkCommon.csproj ├── LICENSE ├── README.md └── src │ ├── ExtensionMethods │ ├── DateTimeExtensions.cs │ ├── EnumExtensions.cs │ ├── HttpClientExtensions.cs │ ├── JsonExtensionMethods.cs │ ├── StreamExtensions.cs │ └── TypeExtensionMethods.cs │ └── Model │ ├── Application │ ├── AppSettings.cs │ ├── Exceptions │ │ ├── Assert.cs │ │ ├── ExternalServiceException.cs │ │ ├── ForkException.cs │ │ ├── IllegalInternalStateException.cs │ │ └── ProgrammingErrorException.cs │ ├── SettingsKeyValue.cs │ └── State.cs │ ├── Entity │ ├── Enums │ │ ├── AutomationType.cs │ │ ├── Console │ │ │ └── ConsoleMessageType.cs │ │ ├── Difficulty.cs │ │ ├── EntityStatus.cs │ │ ├── Gamemode.cs │ │ ├── LevelType.cs │ │ ├── Player │ │ │ └── PlayerlistUpdateType.cs │ │ └── VersionType.cs │ ├── Pocos │ │ ├── Automation │ │ │ ├── AutomationTime.cs │ │ │ └── SimpleTime.cs │ │ ├── IEntity.cs │ │ ├── JavaSettings.cs │ │ ├── JavaVersion.cs │ │ ├── Player │ │ │ ├── Player.cs │ │ │ └── ServerPlayer.cs │ │ ├── Server.cs │ │ ├── ServerVersion.cs │ │ └── Settings │ │ │ ├── AbstractKeyValueSettings.cs │ │ │ ├── AbstractSettings.cs │ │ │ ├── EntitySettings.cs │ │ │ └── VanillaSettings.cs │ └── Transient │ │ └── Console │ │ ├── Commands │ │ └── Command.cs │ │ └── ConsoleMessage.cs │ ├── Notifications │ ├── AbstractNotification.cs │ └── EntityNotifications │ │ ├── AbstractEntityNotification.cs │ │ ├── ConsoleAddNotification.cs │ │ ├── EntityListUpdatedNotification.cs │ │ ├── EntityPerformanceNotification.cs │ │ ├── EntityStatusChangedNotification.cs │ │ └── PlayerNotifications │ │ ├── UpdateBanlistPlayerNotification.cs │ │ ├── UpdatePlayerNotification.cs │ │ └── UpdateWhitelistPlayerNotification.cs │ ├── Payloads │ ├── AbstractPayload.cs │ └── Entity │ │ └── CreateServerPayload.cs │ └── Privileges │ ├── AdminPrivilege.cs │ ├── AppSettings │ ├── IAppSettingsPrivilege.cs │ ├── ReadAppSettings │ │ ├── IReadAppSettingsPrivilege.cs │ │ ├── ReadAdvancedAppSettingsPrivilege.cs │ │ ├── ReadDiscordBotAppSettingsPrivilege.cs │ │ ├── ReadGeneralAppSettingsPrivilege.cs │ │ └── ReadTokenAppSettingsPrivilege.cs │ └── WriteAppSettings │ │ ├── IWriteAppSettingsPrivilege.cs │ │ ├── WriteAdvancedAppSettingsPrivilege.cs │ │ ├── WriteDiscordBotAppSettingsPrivilege.cs │ │ ├── WriteGeneralAppSettingsPrivilege.cs │ │ └── WriteTokenAppSettingsPrivilege.cs │ ├── Application │ ├── CreateEntityPrivilege.cs │ ├── DeleteEntityPrivilege.cs │ ├── IApplicationPrivilege.cs │ └── RenameEntityPrivilege.cs │ ├── Entity │ ├── IEntityPrivilege.cs │ ├── ReadEntity │ │ ├── IReadEntityPrivilege.cs │ │ ├── ReadConsoleTab │ │ │ ├── IReadConsoleTabPrivilege.cs │ │ │ ├── ReadBanlistConsoleTabPrivilege.cs │ │ │ ├── ReadConsoleConsoleTabPrivilege.cs │ │ │ ├── ReadPlayerlistConsoleTabPrivilege.cs │ │ │ └── ReadWhitelistConsoleTabPrivilege.cs │ │ ├── ReadModsTab │ │ │ └── ReadModsTabPrivilege.cs │ │ ├── ReadPluginsTab │ │ │ └── ReadPluginsTabPrivilege.cs │ │ ├── ReadSettingsTab │ │ │ ├── IReadSettingsTabPrivilege.cs │ │ │ ├── ReadGeneralSettingsTabPrivilege.cs │ │ │ ├── ReadVanillaSettingsTabPrivilege.cs │ │ │ └── ReadVersionSpecificSettingsTabPrivilege.cs │ │ └── ReadWorldsTab │ │ │ └── ReadWorldsTabPrivilege.cs │ └── WriteEntity │ │ ├── IWriteEntityPrivilege.cs │ │ ├── WriteConsoleTab │ │ └── WriteConsoleTabPrivilege.cs │ │ ├── WriteModsTab │ │ └── WriteModsTabPrivilege.cs │ │ ├── WritePluginsTab │ │ └── WritePluginsTabPrivilege.cs │ │ ├── WriteSettingsTab │ │ ├── IWriteSettingsTabPrivilege.cs │ │ ├── WriteGeneralSettingsTabPrivilege.cs │ │ ├── WriteVanillaSettingsTabPrivilege.cs │ │ └── WriteVersionSpecificSettingsTabPrivilege.cs │ │ └── WriteWorldsTab │ │ └── WriteWorldsTabPrivilege.cs │ ├── IPrivilege.cs │ ├── PrivilegeDescriptor.cs │ └── PrivilegesAttribute.cs ├── Fork.sln ├── Frontend ├── .gitattributes ├── .gitignore ├── App.razor ├── ForkFrontend.csproj ├── LICENSE ├── Logic │ ├── Services │ │ ├── Connections │ │ │ ├── AbstractConnectionService.cs │ │ │ ├── ApplicationConnectionService.cs │ │ │ ├── CreateEntityConnectionService.cs │ │ │ └── EntityConnectionService.cs │ │ ├── HttpsClients │ │ │ ├── BackendClient.cs │ │ │ └── LocalClient.cs │ │ ├── Managers │ │ │ ├── ApplicationStateManager.cs │ │ │ ├── EntityStateManager.cs │ │ │ └── ToastManager.cs │ │ ├── Notifications │ │ │ ├── NotificationHandlers │ │ │ │ ├── AbstractNotificationHandler.cs │ │ │ │ └── EntityNotificationHandlers │ │ │ │ │ ├── AbstractEntityNotificationHandler.cs │ │ │ │ │ ├── ConsoleAddNotificationHandler.cs │ │ │ │ │ ├── EntityPerformanceNotificationHandler.cs │ │ │ │ │ ├── EntityStatusChangedNotificationHandler.cs │ │ │ │ │ └── PlayerNotificationHandlers │ │ │ │ │ ├── UpdateBanlistPlayerNotificationHandler.cs │ │ │ │ │ ├── UpdatePlayerNotificationHandler.cs │ │ │ │ │ └── UpdateWhitelistPlayerNotificationHandler.cs │ │ │ └── NotificationService.cs │ │ └── Translation │ │ │ └── TranslationService.cs │ └── Utility │ │ └── Logging │ │ ├── ForkLogger.cs │ │ ├── ForkLoggerOptions.cs │ │ ├── ForkLoggerProvider.cs │ │ └── LoggingBuilderForkExtensions.cs ├── Model │ ├── Enums │ │ ├── ApplicationStatus.cs │ │ ├── RadioType.cs │ │ ├── ToastLevel.cs │ │ └── WebsocketStatus.cs │ ├── Forms │ │ └── ForkFormEntity.cs │ ├── INotificationHandler.cs │ ├── NotificationHandler.cs │ └── Toast.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── README.md ├── Razor │ ├── Components │ │ ├── Buttons │ │ │ └── IconButton.razor │ │ ├── Entity │ │ │ ├── Entity.razor │ │ │ └── Tabs │ │ │ │ ├── ConsoleTab │ │ │ │ ├── AutocompleteConsoleIn.razor │ │ │ │ ├── ConsoleIn.razor │ │ │ │ ├── ConsoleOut.razor │ │ │ │ ├── ConsoleTab.razor │ │ │ │ └── Playerlist │ │ │ │ │ ├── Banlist.razor │ │ │ │ │ ├── ISimplePlayerlist.cs │ │ │ │ │ ├── PlayerComponent.razor │ │ │ │ │ ├── Playerlist.razor │ │ │ │ │ ├── ServerPlayerComponent.razor │ │ │ │ │ └── Whitelist.razor │ │ │ │ ├── EntityTab.cs │ │ │ │ └── SettingsTab │ │ │ │ ├── DefaultSettingsTab.razor │ │ │ │ ├── GeneralSettingsTab.razor │ │ │ │ ├── SettingsTab.razor │ │ │ │ └── VanillaSettingsTab.razor │ │ ├── Forms │ │ │ ├── AbstractForkInput.cs │ │ │ ├── ForkSlider.razor │ │ │ ├── ForkSlider.razor.css │ │ │ ├── IValueListInput.cs │ │ │ ├── Radio │ │ │ │ └── ForkRadio.razor │ │ │ ├── Select │ │ │ │ └── ForkSelect.razor │ │ │ └── Text │ │ │ │ ├── ForkNumber.razor │ │ │ │ └── ForkText.razor │ │ ├── Inputs │ │ │ ├── Checkbox.razor │ │ │ └── Textfield.razor │ │ ├── LoadingOverlay.razor │ │ ├── Navbar.razor │ │ ├── Screens │ │ │ ├── AbstractScreenComponent.cs │ │ │ └── CreateEntity │ │ │ │ └── CreateEntityScreen.razor │ │ ├── Shared │ │ │ ├── AbstractForkComponent.razor │ │ │ ├── ContextMenuItem.razor │ │ │ ├── ForkErrorBoundary.razor │ │ │ ├── ForkErrorBoundary.razor.cs │ │ │ ├── IconTab.razor │ │ │ ├── IconTabControl.razor │ │ │ ├── Icons │ │ │ │ ├── AbstractIcon.razor │ │ │ │ ├── ArrowDownIcon.razor │ │ │ │ ├── CloseIcon.razor │ │ │ │ ├── CreateIcon.razor │ │ │ │ ├── CubeTransparentIcon.razor │ │ │ │ ├── DeleteIcon.razor │ │ │ │ ├── ErrorIcon.razor │ │ │ │ ├── FindIcon.razor │ │ │ │ ├── ForkSettingIcon.razor │ │ │ │ ├── GlobeIcon.razor │ │ │ │ ├── ImportIcon.razor │ │ │ │ ├── InfoIcon.razor │ │ │ │ ├── LoadingGifIcon.razor │ │ │ │ ├── PaperTypeIcon.razor │ │ │ │ ├── PluginIcon.razor │ │ │ │ ├── PurpurTypeIcon.razor │ │ │ │ ├── RestartAltIcon.razor │ │ │ │ ├── RestartIcon.razor │ │ │ │ ├── SettingIcon.razor │ │ │ │ ├── StartIcon.razor │ │ │ │ ├── StopIcon.razor │ │ │ │ ├── SuccessIcon.razor │ │ │ │ ├── TerminalIcon.razor │ │ │ │ ├── VanillaTypeIcon.razor │ │ │ │ ├── VelocityTypeIcon.razor │ │ │ │ ├── WarningIcon.razor │ │ │ │ ├── WaterfallTypeIcon.razor │ │ │ │ └── WorldIcon.razor │ │ │ ├── SelectedIndicatorVertical.razor │ │ │ ├── ToastDisplay.razor │ │ │ └── ToastDisplay.razor.css │ │ ├── Sidebar │ │ │ ├── Sidebar.razor │ │ │ ├── SidebarEntity.razor │ │ │ └── StatusIndicator.razor │ │ └── Translated.razor │ ├── EmptyLayout.razor │ ├── Index.razor │ ├── Index.razor.cs │ ├── MainLayout.razor │ └── Welcome.razor ├── _Imports.razor ├── package.json ├── tailwind.config.js ├── tailwind.extension.json └── wwwroot │ ├── css │ ├── app.css │ └── open-iconic │ │ ├── FONT-LICENSE │ │ ├── ICON-LICENSE │ │ ├── README.md │ │ └── font │ │ └── fonts │ │ ├── open-iconic.eot │ │ ├── open-iconic.otf │ │ ├── open-iconic.svg │ │ ├── open-iconic.ttf │ │ └── open-iconic.woff │ ├── favicon.ico │ ├── icon-192.png │ ├── index.html │ ├── js │ └── app.js │ ├── lib │ └── clusterizejs │ │ ├── clusterize.css │ │ └── clusterize.js │ └── resources │ ├── fonts │ └── icons.ttf │ ├── img │ ├── Fork Icon.jpg │ └── loading.gif │ └── translation.json ├── README.md ├── global.json ├── qodana-global-configuration.yaml └── qodana.yaml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/codequality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/.github/workflows/codequality.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.Fork/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/.idea/.idea.Fork/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.Fork/.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/.idea/.idea.Fork/.idea/dataSources.xml -------------------------------------------------------------------------------- /.idea/.idea.Fork/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/.idea/.idea.Fork/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/.idea.Fork/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/.idea/.idea.Fork/.idea/indexLayout.xml -------------------------------------------------------------------------------- /.idea/.idea.Fork/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/.idea/.idea.Fork/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/.idea.Fork/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/.idea/.idea.Fork/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/.idea.ProjectAvery/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/.idea/.idea.ProjectAvery/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.ProjectAvery/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/.idea/.idea.ProjectAvery/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/.idea.ProjectAvery/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/.idea/.idea.ProjectAvery/.idea/indexLayout.xml -------------------------------------------------------------------------------- /.idea/.idea.ProjectAvery/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/.idea/.idea.ProjectAvery/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/.idea.ProjectAvery/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/.idea/.idea.ProjectAvery/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | ProjectAvery.sln -------------------------------------------------------------------------------- /.idea/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/.idea/config/applicationhost.config -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.run/ForkBackend.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/.run/ForkBackend.run.xml -------------------------------------------------------------------------------- /.run/ForkFrontend.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/.run/ForkFrontend.run.xml -------------------------------------------------------------------------------- /Backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/.gitignore -------------------------------------------------------------------------------- /Backend/.run/Add Migration.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/.run/Add Migration.run.xml -------------------------------------------------------------------------------- /Backend/.run/Remove last migration.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/.run/Remove last migration.run.xml -------------------------------------------------------------------------------- /Backend/Fork.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/Fork.csproj -------------------------------------------------------------------------------- /Backend/Fork.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/Fork.sln.DotSettings -------------------------------------------------------------------------------- /Backend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/LICENSE -------------------------------------------------------------------------------- /Backend/Migrations/20211219165250_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/Migrations/20211219165250_Initial.Designer.cs -------------------------------------------------------------------------------- /Backend/Migrations/20211219165250_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/Migrations/20211219165250_Initial.cs -------------------------------------------------------------------------------- /Backend/Migrations/20211221225941_AddPlayers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/Migrations/20211221225941_AddPlayers.Designer.cs -------------------------------------------------------------------------------- /Backend/Migrations/20211221225941_AddPlayers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/Migrations/20211221225941_AddPlayers.cs -------------------------------------------------------------------------------- /Backend/Migrations/20211222215652_PlayerLogic.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/Migrations/20211222215652_PlayerLogic.Designer.cs -------------------------------------------------------------------------------- /Backend/Migrations/20211222215652_PlayerLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/Migrations/20211222215652_PlayerLogic.cs -------------------------------------------------------------------------------- /Backend/Migrations/20220102151441_AddedPlayerFK.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/Migrations/20220102151441_AddedPlayerFK.Designer.cs -------------------------------------------------------------------------------- /Backend/Migrations/20220102151441_AddedPlayerFK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/Migrations/20220102151441_AddedPlayerFK.cs -------------------------------------------------------------------------------- /Backend/Migrations/20241126212136_EntityFrameworkUpdate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/Migrations/20241126212136_EntityFrameworkUpdate.Designer.cs -------------------------------------------------------------------------------- /Backend/Migrations/20241126212136_EntityFrameworkUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/Migrations/20241126212136_EntityFrameworkUpdate.cs -------------------------------------------------------------------------------- /Backend/Migrations/20241128192837_NullabilityUpdate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/Migrations/20241128192837_NullabilityUpdate.Designer.cs -------------------------------------------------------------------------------- /Backend/Migrations/20241128192837_NullabilityUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/Migrations/20241128192837_NullabilityUpdate.cs -------------------------------------------------------------------------------- /Backend/Migrations/20251207100601_RestructureEntitySettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/Migrations/20251207100601_RestructureEntitySettings.Designer.cs -------------------------------------------------------------------------------- /Backend/Migrations/20251207100601_RestructureEntitySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/Migrations/20251207100601_RestructureEntitySettings.cs -------------------------------------------------------------------------------- /Backend/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /Backend/Migrations/createMigration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/Migrations/createMigration.sh -------------------------------------------------------------------------------- /Backend/Migrations/removeLastMigration.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | dotnet-ef migrations remove -- --host -------------------------------------------------------------------------------- /Backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/Program.cs -------------------------------------------------------------------------------- /Backend/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/Properties/launchSettings.json -------------------------------------------------------------------------------- /Backend/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/Startup.cs -------------------------------------------------------------------------------- /Backend/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/appsettings.Development.json -------------------------------------------------------------------------------- /Backend/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/appsettings.json -------------------------------------------------------------------------------- /Backend/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/readme.md -------------------------------------------------------------------------------- /Backend/src/Adapters/AbstractAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Adapters/AbstractAdapter.cs -------------------------------------------------------------------------------- /Backend/src/Adapters/Fork/ForkApiAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Adapters/Fork/ForkApiAdapter.cs -------------------------------------------------------------------------------- /Backend/src/Adapters/Mojang/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Adapters/Mojang/Manifest.cs -------------------------------------------------------------------------------- /Backend/src/Adapters/Mojang/MojangApiAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Adapters/Mojang/MojangApiAdapter.cs -------------------------------------------------------------------------------- /Backend/src/Adapters/Mojang/VersionDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Adapters/Mojang/VersionDetails.cs -------------------------------------------------------------------------------- /Backend/src/Adapters/PaperMc/PaperMcApiAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Adapters/PaperMc/PaperMcApiAdapter.cs -------------------------------------------------------------------------------- /Backend/src/Adapters/PaperMc/PaperMcVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Adapters/PaperMc/PaperMcVersion.cs -------------------------------------------------------------------------------- /Backend/src/Adapters/PaperMc/PaperMcVersionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Adapters/PaperMc/PaperMcVersionList.cs -------------------------------------------------------------------------------- /Backend/src/Adapters/Purpur/PurpurApiAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Adapters/Purpur/PurpurApiAdapter.cs -------------------------------------------------------------------------------- /Backend/src/Adapters/Purpur/PurpurVersionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Adapters/Purpur/PurpurVersionList.cs -------------------------------------------------------------------------------- /Backend/src/Adapters/Waterfall/WaterfallApiAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Adapters/Waterfall/WaterfallApiAdapter.cs -------------------------------------------------------------------------------- /Backend/src/Adapters/Waterfall/WaterfallVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Adapters/Waterfall/WaterfallVersion.cs -------------------------------------------------------------------------------- /Backend/src/Adapters/Waterfall/WaterfallVersionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Adapters/Waterfall/WaterfallVersionList.cs -------------------------------------------------------------------------------- /Backend/src/Controllers/AbstractRestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Controllers/AbstractRestController.cs -------------------------------------------------------------------------------- /Backend/src/Controllers/ApplicationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Controllers/ApplicationController.cs -------------------------------------------------------------------------------- /Backend/src/Controllers/CreateEntityController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Controllers/CreateEntityController.cs -------------------------------------------------------------------------------- /Backend/src/Controllers/EntityController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Controllers/EntityController.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Managers/ApplicationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Managers/ApplicationManager.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Managers/EntityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Managers/EntityManager.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Managers/ServerVersionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Managers/ServerVersionManager.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Managers/TokenManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Managers/TokenManager.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Model/Web/Mojang/PlayerByName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Model/Web/Mojang/PlayerByName.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Model/Web/Mojang/PlayerProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Model/Web/Mojang/PlayerProfile.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Model/Web/Mojang/PlayerProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Model/Web/Mojang/PlayerProperty.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Model/Web/Mojang/PlayerTextureProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Model/Web/Mojang/PlayerTextureProfile.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Notification/NotificationCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Notification/NotificationCenter.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Persistence/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Persistence/ApplicationDbContext.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Services/AuthenticationServices/AuthenticationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Services/AuthenticationServices/AuthenticationService.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Services/EntityServices/CommandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Services/EntityServices/CommandService.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Services/EntityServices/ConsoleInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Services/EntityServices/ConsoleInterpreter.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Services/EntityServices/ConsoleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Services/EntityServices/ConsoleService.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Services/EntityServices/EntityPostProcessingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Services/EntityServices/EntityPostProcessingService.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Services/EntityServices/EntityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Services/EntityServices/EntityService.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Services/EntityServices/EntitySettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Services/EntityServices/EntitySettingsService.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Services/EntityServices/PlayerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Services/EntityServices/PlayerService.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Services/EntityServices/ServerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Services/EntityServices/ServerService.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Services/FileServices/FileReaderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Services/FileServices/FileReaderService.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Services/FileServices/FileWriterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Services/FileServices/FileWriterService.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Services/StateServices/ApplicationStateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Services/StateServices/ApplicationStateService.cs -------------------------------------------------------------------------------- /Backend/src/Logic/Services/WebServices/DownloadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Logic/Services/WebServices/DownloadService.cs -------------------------------------------------------------------------------- /Backend/src/Resources/DefaultHead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Resources/DefaultHead.png -------------------------------------------------------------------------------- /Backend/src/Util/AuthenticationMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Util/AuthenticationMiddleware.cs -------------------------------------------------------------------------------- /Backend/src/Util/ExtensionMethods/ApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Util/ExtensionMethods/ApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /Backend/src/Util/ExtensionMethods/EntityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Util/ExtensionMethods/EntityExtensions.cs -------------------------------------------------------------------------------- /Backend/src/Util/ExtensionMethods/ProcessExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Util/ExtensionMethods/ProcessExtensions.cs -------------------------------------------------------------------------------- /Backend/src/Util/ExtensionMethods/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Util/ExtensionMethods/StreamExtensions.cs -------------------------------------------------------------------------------- /Backend/src/Util/ForkConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Util/ForkConstants.cs -------------------------------------------------------------------------------- /Backend/src/Util/ForkExceptionFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Util/ForkExceptionFilterAttribute.cs -------------------------------------------------------------------------------- /Backend/src/Util/JavaUtils/JavaVersionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Util/JavaUtils/JavaVersionUtils.cs -------------------------------------------------------------------------------- /Backend/src/Util/MemoryUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Util/MemoryUtil.cs -------------------------------------------------------------------------------- /Backend/src/Util/SwaggerUtils/FriendlyStringEnumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Util/SwaggerUtils/FriendlyStringEnumConverter.cs -------------------------------------------------------------------------------- /Backend/src/Util/SwaggerUtils/TokenSecurityFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Util/SwaggerUtils/TokenSecurityFilter.cs -------------------------------------------------------------------------------- /Backend/src/Util/TextPlainInputFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Backend/src/Util/TextPlainInputFormatter.cs -------------------------------------------------------------------------------- /Common/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/.gitattributes -------------------------------------------------------------------------------- /Common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/.gitignore -------------------------------------------------------------------------------- /Common/ForkCommon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/ForkCommon.csproj -------------------------------------------------------------------------------- /Common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/LICENSE -------------------------------------------------------------------------------- /Common/README.md: -------------------------------------------------------------------------------- 1 | # ForkCommon 2 | 3 | -------------------------------------------------------------------------------- /Common/src/ExtensionMethods/DateTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/ExtensionMethods/DateTimeExtensions.cs -------------------------------------------------------------------------------- /Common/src/ExtensionMethods/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/ExtensionMethods/EnumExtensions.cs -------------------------------------------------------------------------------- /Common/src/ExtensionMethods/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/ExtensionMethods/HttpClientExtensions.cs -------------------------------------------------------------------------------- /Common/src/ExtensionMethods/JsonExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/ExtensionMethods/JsonExtensionMethods.cs -------------------------------------------------------------------------------- /Common/src/ExtensionMethods/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/ExtensionMethods/StreamExtensions.cs -------------------------------------------------------------------------------- /Common/src/ExtensionMethods/TypeExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/ExtensionMethods/TypeExtensionMethods.cs -------------------------------------------------------------------------------- /Common/src/Model/Application/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Application/AppSettings.cs -------------------------------------------------------------------------------- /Common/src/Model/Application/Exceptions/Assert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Application/Exceptions/Assert.cs -------------------------------------------------------------------------------- /Common/src/Model/Application/Exceptions/ExternalServiceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Application/Exceptions/ExternalServiceException.cs -------------------------------------------------------------------------------- /Common/src/Model/Application/Exceptions/ForkException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Application/Exceptions/ForkException.cs -------------------------------------------------------------------------------- /Common/src/Model/Application/Exceptions/IllegalInternalStateException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Application/Exceptions/IllegalInternalStateException.cs -------------------------------------------------------------------------------- /Common/src/Model/Application/Exceptions/ProgrammingErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Application/Exceptions/ProgrammingErrorException.cs -------------------------------------------------------------------------------- /Common/src/Model/Application/SettingsKeyValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Application/SettingsKeyValue.cs -------------------------------------------------------------------------------- /Common/src/Model/Application/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Application/State.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Enums/AutomationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Enums/AutomationType.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Enums/Console/ConsoleMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Enums/Console/ConsoleMessageType.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Enums/Difficulty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Enums/Difficulty.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Enums/EntityStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Enums/EntityStatus.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Enums/Gamemode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Enums/Gamemode.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Enums/LevelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Enums/LevelType.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Enums/Player/PlayerlistUpdateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Enums/Player/PlayerlistUpdateType.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Enums/VersionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Enums/VersionType.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Pocos/Automation/AutomationTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Pocos/Automation/AutomationTime.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Pocos/Automation/SimpleTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Pocos/Automation/SimpleTime.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Pocos/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Pocos/IEntity.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Pocos/JavaSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Pocos/JavaSettings.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Pocos/JavaVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Pocos/JavaVersion.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Pocos/Player/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Pocos/Player/Player.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Pocos/Player/ServerPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Pocos/Player/ServerPlayer.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Pocos/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Pocos/Server.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Pocos/ServerVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Pocos/ServerVersion.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Pocos/Settings/AbstractKeyValueSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Pocos/Settings/AbstractKeyValueSettings.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Pocos/Settings/AbstractSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Pocos/Settings/AbstractSettings.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Pocos/Settings/EntitySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Pocos/Settings/EntitySettings.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Pocos/Settings/VanillaSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Pocos/Settings/VanillaSettings.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Transient/Console/Commands/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Transient/Console/Commands/Command.cs -------------------------------------------------------------------------------- /Common/src/Model/Entity/Transient/Console/ConsoleMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Entity/Transient/Console/ConsoleMessage.cs -------------------------------------------------------------------------------- /Common/src/Model/Notifications/AbstractNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Notifications/AbstractNotification.cs -------------------------------------------------------------------------------- /Common/src/Model/Notifications/EntityNotifications/AbstractEntityNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Notifications/EntityNotifications/AbstractEntityNotification.cs -------------------------------------------------------------------------------- /Common/src/Model/Notifications/EntityNotifications/ConsoleAddNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Notifications/EntityNotifications/ConsoleAddNotification.cs -------------------------------------------------------------------------------- /Common/src/Model/Notifications/EntityNotifications/EntityListUpdatedNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Notifications/EntityNotifications/EntityListUpdatedNotification.cs -------------------------------------------------------------------------------- /Common/src/Model/Notifications/EntityNotifications/EntityPerformanceNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Notifications/EntityNotifications/EntityPerformanceNotification.cs -------------------------------------------------------------------------------- /Common/src/Model/Notifications/EntityNotifications/EntityStatusChangedNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Notifications/EntityNotifications/EntityStatusChangedNotification.cs -------------------------------------------------------------------------------- /Common/src/Model/Notifications/EntityNotifications/PlayerNotifications/UpdateBanlistPlayerNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Notifications/EntityNotifications/PlayerNotifications/UpdateBanlistPlayerNotification.cs -------------------------------------------------------------------------------- /Common/src/Model/Notifications/EntityNotifications/PlayerNotifications/UpdatePlayerNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Notifications/EntityNotifications/PlayerNotifications/UpdatePlayerNotification.cs -------------------------------------------------------------------------------- /Common/src/Model/Notifications/EntityNotifications/PlayerNotifications/UpdateWhitelistPlayerNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Notifications/EntityNotifications/PlayerNotifications/UpdateWhitelistPlayerNotification.cs -------------------------------------------------------------------------------- /Common/src/Model/Payloads/AbstractPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Payloads/AbstractPayload.cs -------------------------------------------------------------------------------- /Common/src/Model/Payloads/Entity/CreateServerPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Payloads/Entity/CreateServerPayload.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/AdminPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/AdminPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/AppSettings/IAppSettingsPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/AppSettings/IAppSettingsPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/AppSettings/ReadAppSettings/IReadAppSettingsPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/AppSettings/ReadAppSettings/IReadAppSettingsPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/AppSettings/ReadAppSettings/ReadAdvancedAppSettingsPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/AppSettings/ReadAppSettings/ReadAdvancedAppSettingsPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/AppSettings/ReadAppSettings/ReadDiscordBotAppSettingsPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/AppSettings/ReadAppSettings/ReadDiscordBotAppSettingsPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/AppSettings/ReadAppSettings/ReadGeneralAppSettingsPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/AppSettings/ReadAppSettings/ReadGeneralAppSettingsPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/AppSettings/ReadAppSettings/ReadTokenAppSettingsPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/AppSettings/ReadAppSettings/ReadTokenAppSettingsPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/AppSettings/WriteAppSettings/IWriteAppSettingsPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/AppSettings/WriteAppSettings/IWriteAppSettingsPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/AppSettings/WriteAppSettings/WriteAdvancedAppSettingsPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/AppSettings/WriteAppSettings/WriteAdvancedAppSettingsPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/AppSettings/WriteAppSettings/WriteDiscordBotAppSettingsPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/AppSettings/WriteAppSettings/WriteDiscordBotAppSettingsPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/AppSettings/WriteAppSettings/WriteGeneralAppSettingsPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/AppSettings/WriteAppSettings/WriteGeneralAppSettingsPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/AppSettings/WriteAppSettings/WriteTokenAppSettingsPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/AppSettings/WriteAppSettings/WriteTokenAppSettingsPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Application/CreateEntityPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Application/CreateEntityPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Application/DeleteEntityPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Application/DeleteEntityPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Application/IApplicationPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Application/IApplicationPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Application/RenameEntityPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Application/RenameEntityPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/IEntityPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/IEntityPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/ReadEntity/IReadEntityPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/ReadEntity/IReadEntityPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/ReadEntity/ReadConsoleTab/IReadConsoleTabPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/ReadEntity/ReadConsoleTab/IReadConsoleTabPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/ReadEntity/ReadConsoleTab/ReadBanlistConsoleTabPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/ReadEntity/ReadConsoleTab/ReadBanlistConsoleTabPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/ReadEntity/ReadConsoleTab/ReadConsoleConsoleTabPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/ReadEntity/ReadConsoleTab/ReadConsoleConsoleTabPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/ReadEntity/ReadConsoleTab/ReadPlayerlistConsoleTabPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/ReadEntity/ReadConsoleTab/ReadPlayerlistConsoleTabPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/ReadEntity/ReadConsoleTab/ReadWhitelistConsoleTabPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/ReadEntity/ReadConsoleTab/ReadWhitelistConsoleTabPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/ReadEntity/ReadModsTab/ReadModsTabPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/ReadEntity/ReadModsTab/ReadModsTabPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/ReadEntity/ReadPluginsTab/ReadPluginsTabPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/ReadEntity/ReadPluginsTab/ReadPluginsTabPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/ReadEntity/ReadSettingsTab/IReadSettingsTabPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/ReadEntity/ReadSettingsTab/IReadSettingsTabPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/ReadEntity/ReadSettingsTab/ReadGeneralSettingsTabPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/ReadEntity/ReadSettingsTab/ReadGeneralSettingsTabPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/ReadEntity/ReadSettingsTab/ReadVanillaSettingsTabPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/ReadEntity/ReadSettingsTab/ReadVanillaSettingsTabPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/ReadEntity/ReadSettingsTab/ReadVersionSpecificSettingsTabPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/ReadEntity/ReadSettingsTab/ReadVersionSpecificSettingsTabPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/ReadEntity/ReadWorldsTab/ReadWorldsTabPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/ReadEntity/ReadWorldsTab/ReadWorldsTabPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/WriteEntity/IWriteEntityPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/WriteEntity/IWriteEntityPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/WriteEntity/WriteConsoleTab/WriteConsoleTabPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/WriteEntity/WriteConsoleTab/WriteConsoleTabPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/WriteEntity/WriteModsTab/WriteModsTabPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/WriteEntity/WriteModsTab/WriteModsTabPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/WriteEntity/WritePluginsTab/WritePluginsTabPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/WriteEntity/WritePluginsTab/WritePluginsTabPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/WriteEntity/WriteSettingsTab/IWriteSettingsTabPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/WriteEntity/WriteSettingsTab/IWriteSettingsTabPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/WriteEntity/WriteSettingsTab/WriteGeneralSettingsTabPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/WriteEntity/WriteSettingsTab/WriteGeneralSettingsTabPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/WriteEntity/WriteSettingsTab/WriteVanillaSettingsTabPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/WriteEntity/WriteSettingsTab/WriteVanillaSettingsTabPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/WriteEntity/WriteSettingsTab/WriteVersionSpecificSettingsTabPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/WriteEntity/WriteSettingsTab/WriteVersionSpecificSettingsTabPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/Entity/WriteEntity/WriteWorldsTab/WriteWorldsTabPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/Entity/WriteEntity/WriteWorldsTab/WriteWorldsTabPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/IPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/IPrivilege.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/PrivilegeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/PrivilegeDescriptor.cs -------------------------------------------------------------------------------- /Common/src/Model/Privileges/PrivilegesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Common/src/Model/Privileges/PrivilegesAttribute.cs -------------------------------------------------------------------------------- /Fork.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Fork.sln -------------------------------------------------------------------------------- /Frontend/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/.gitattributes -------------------------------------------------------------------------------- /Frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/.gitignore -------------------------------------------------------------------------------- /Frontend/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/App.razor -------------------------------------------------------------------------------- /Frontend/ForkFrontend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/ForkFrontend.csproj -------------------------------------------------------------------------------- /Frontend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/LICENSE -------------------------------------------------------------------------------- /Frontend/Logic/Services/Connections/AbstractConnectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Services/Connections/AbstractConnectionService.cs -------------------------------------------------------------------------------- /Frontend/Logic/Services/Connections/ApplicationConnectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Services/Connections/ApplicationConnectionService.cs -------------------------------------------------------------------------------- /Frontend/Logic/Services/Connections/CreateEntityConnectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Services/Connections/CreateEntityConnectionService.cs -------------------------------------------------------------------------------- /Frontend/Logic/Services/Connections/EntityConnectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Services/Connections/EntityConnectionService.cs -------------------------------------------------------------------------------- /Frontend/Logic/Services/HttpsClients/BackendClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Services/HttpsClients/BackendClient.cs -------------------------------------------------------------------------------- /Frontend/Logic/Services/HttpsClients/LocalClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Services/HttpsClients/LocalClient.cs -------------------------------------------------------------------------------- /Frontend/Logic/Services/Managers/ApplicationStateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Services/Managers/ApplicationStateManager.cs -------------------------------------------------------------------------------- /Frontend/Logic/Services/Managers/EntityStateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Services/Managers/EntityStateManager.cs -------------------------------------------------------------------------------- /Frontend/Logic/Services/Managers/ToastManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Services/Managers/ToastManager.cs -------------------------------------------------------------------------------- /Frontend/Logic/Services/Notifications/NotificationHandlers/AbstractNotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Services/Notifications/NotificationHandlers/AbstractNotificationHandler.cs -------------------------------------------------------------------------------- /Frontend/Logic/Services/Notifications/NotificationHandlers/EntityNotificationHandlers/AbstractEntityNotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Services/Notifications/NotificationHandlers/EntityNotificationHandlers/AbstractEntityNotificationHandler.cs -------------------------------------------------------------------------------- /Frontend/Logic/Services/Notifications/NotificationHandlers/EntityNotificationHandlers/ConsoleAddNotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Services/Notifications/NotificationHandlers/EntityNotificationHandlers/ConsoleAddNotificationHandler.cs -------------------------------------------------------------------------------- /Frontend/Logic/Services/Notifications/NotificationHandlers/EntityNotificationHandlers/EntityPerformanceNotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Services/Notifications/NotificationHandlers/EntityNotificationHandlers/EntityPerformanceNotificationHandler.cs -------------------------------------------------------------------------------- /Frontend/Logic/Services/Notifications/NotificationHandlers/EntityNotificationHandlers/EntityStatusChangedNotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Services/Notifications/NotificationHandlers/EntityNotificationHandlers/EntityStatusChangedNotificationHandler.cs -------------------------------------------------------------------------------- /Frontend/Logic/Services/Notifications/NotificationHandlers/EntityNotificationHandlers/PlayerNotificationHandlers/UpdateBanlistPlayerNotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Services/Notifications/NotificationHandlers/EntityNotificationHandlers/PlayerNotificationHandlers/UpdateBanlistPlayerNotificationHandler.cs -------------------------------------------------------------------------------- /Frontend/Logic/Services/Notifications/NotificationHandlers/EntityNotificationHandlers/PlayerNotificationHandlers/UpdatePlayerNotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Services/Notifications/NotificationHandlers/EntityNotificationHandlers/PlayerNotificationHandlers/UpdatePlayerNotificationHandler.cs -------------------------------------------------------------------------------- /Frontend/Logic/Services/Notifications/NotificationHandlers/EntityNotificationHandlers/PlayerNotificationHandlers/UpdateWhitelistPlayerNotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Services/Notifications/NotificationHandlers/EntityNotificationHandlers/PlayerNotificationHandlers/UpdateWhitelistPlayerNotificationHandler.cs -------------------------------------------------------------------------------- /Frontend/Logic/Services/Notifications/NotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Services/Notifications/NotificationService.cs -------------------------------------------------------------------------------- /Frontend/Logic/Services/Translation/TranslationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Services/Translation/TranslationService.cs -------------------------------------------------------------------------------- /Frontend/Logic/Utility/Logging/ForkLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Utility/Logging/ForkLogger.cs -------------------------------------------------------------------------------- /Frontend/Logic/Utility/Logging/ForkLoggerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Utility/Logging/ForkLoggerOptions.cs -------------------------------------------------------------------------------- /Frontend/Logic/Utility/Logging/ForkLoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Utility/Logging/ForkLoggerProvider.cs -------------------------------------------------------------------------------- /Frontend/Logic/Utility/Logging/LoggingBuilderForkExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Logic/Utility/Logging/LoggingBuilderForkExtensions.cs -------------------------------------------------------------------------------- /Frontend/Model/Enums/ApplicationStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Model/Enums/ApplicationStatus.cs -------------------------------------------------------------------------------- /Frontend/Model/Enums/RadioType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Model/Enums/RadioType.cs -------------------------------------------------------------------------------- /Frontend/Model/Enums/ToastLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Model/Enums/ToastLevel.cs -------------------------------------------------------------------------------- /Frontend/Model/Enums/WebsocketStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Model/Enums/WebsocketStatus.cs -------------------------------------------------------------------------------- /Frontend/Model/Forms/ForkFormEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Model/Forms/ForkFormEntity.cs -------------------------------------------------------------------------------- /Frontend/Model/INotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Model/INotificationHandler.cs -------------------------------------------------------------------------------- /Frontend/Model/NotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Model/NotificationHandler.cs -------------------------------------------------------------------------------- /Frontend/Model/Toast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Model/Toast.cs -------------------------------------------------------------------------------- /Frontend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Program.cs -------------------------------------------------------------------------------- /Frontend/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Properties/launchSettings.json -------------------------------------------------------------------------------- /Frontend/README.md: -------------------------------------------------------------------------------- 1 | # ForkFrontend 2 | 3 | -------------------------------------------------------------------------------- /Frontend/Razor/Components/Buttons/IconButton.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Buttons/IconButton.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Entity/Entity.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Entity/Entity.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Entity/Tabs/ConsoleTab/AutocompleteConsoleIn.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Entity/Tabs/ConsoleTab/AutocompleteConsoleIn.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Entity/Tabs/ConsoleTab/ConsoleIn.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Entity/Tabs/ConsoleTab/ConsoleIn.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Entity/Tabs/ConsoleTab/ConsoleOut.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Entity/Tabs/ConsoleTab/ConsoleOut.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Entity/Tabs/ConsoleTab/ConsoleTab.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Entity/Tabs/ConsoleTab/ConsoleTab.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Entity/Tabs/ConsoleTab/Playerlist/Banlist.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Entity/Tabs/ConsoleTab/Playerlist/Banlist.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Entity/Tabs/ConsoleTab/Playerlist/ISimplePlayerlist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Entity/Tabs/ConsoleTab/Playerlist/ISimplePlayerlist.cs -------------------------------------------------------------------------------- /Frontend/Razor/Components/Entity/Tabs/ConsoleTab/Playerlist/PlayerComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Entity/Tabs/ConsoleTab/Playerlist/PlayerComponent.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Entity/Tabs/ConsoleTab/Playerlist/Playerlist.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Entity/Tabs/ConsoleTab/Playerlist/Playerlist.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Entity/Tabs/ConsoleTab/Playerlist/ServerPlayerComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Entity/Tabs/ConsoleTab/Playerlist/ServerPlayerComponent.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Entity/Tabs/ConsoleTab/Playerlist/Whitelist.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Entity/Tabs/ConsoleTab/Playerlist/Whitelist.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Entity/Tabs/EntityTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Entity/Tabs/EntityTab.cs -------------------------------------------------------------------------------- /Frontend/Razor/Components/Entity/Tabs/SettingsTab/DefaultSettingsTab.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Entity/Tabs/SettingsTab/DefaultSettingsTab.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Entity/Tabs/SettingsTab/GeneralSettingsTab.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Entity/Tabs/SettingsTab/GeneralSettingsTab.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Entity/Tabs/SettingsTab/SettingsTab.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Entity/Tabs/SettingsTab/SettingsTab.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Entity/Tabs/SettingsTab/VanillaSettingsTab.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Entity/Tabs/SettingsTab/VanillaSettingsTab.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Forms/AbstractForkInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Forms/AbstractForkInput.cs -------------------------------------------------------------------------------- /Frontend/Razor/Components/Forms/ForkSlider.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Forms/ForkSlider.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Forms/ForkSlider.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Forms/ForkSlider.razor.css -------------------------------------------------------------------------------- /Frontend/Razor/Components/Forms/IValueListInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Forms/IValueListInput.cs -------------------------------------------------------------------------------- /Frontend/Razor/Components/Forms/Radio/ForkRadio.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Forms/Radio/ForkRadio.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Forms/Select/ForkSelect.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Forms/Select/ForkSelect.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Forms/Text/ForkNumber.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Forms/Text/ForkNumber.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Forms/Text/ForkText.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Forms/Text/ForkText.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Inputs/Checkbox.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Inputs/Checkbox.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Inputs/Textfield.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Inputs/Textfield.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/LoadingOverlay.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/LoadingOverlay.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Navbar.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Navbar.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Screens/AbstractScreenComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Screens/AbstractScreenComponent.cs -------------------------------------------------------------------------------- /Frontend/Razor/Components/Screens/CreateEntity/CreateEntityScreen.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Screens/CreateEntity/CreateEntityScreen.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/AbstractForkComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/AbstractForkComponent.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/ContextMenuItem.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/ContextMenuItem.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/ForkErrorBoundary.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/ForkErrorBoundary.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/ForkErrorBoundary.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/ForkErrorBoundary.razor.cs -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/IconTab.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/IconTab.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/IconTabControl.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/IconTabControl.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/AbstractIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/AbstractIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/ArrowDownIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/ArrowDownIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/CloseIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/CloseIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/CreateIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/CreateIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/CubeTransparentIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/CubeTransparentIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/DeleteIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/DeleteIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/ErrorIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/ErrorIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/FindIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/FindIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/ForkSettingIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/ForkSettingIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/GlobeIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/GlobeIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/ImportIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/ImportIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/InfoIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/InfoIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/LoadingGifIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/LoadingGifIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/PaperTypeIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/PaperTypeIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/PluginIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/PluginIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/PurpurTypeIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/PurpurTypeIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/RestartAltIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/RestartAltIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/RestartIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/RestartIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/SettingIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/SettingIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/StartIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/StartIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/StopIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/StopIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/SuccessIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/SuccessIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/TerminalIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/TerminalIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/VanillaTypeIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/VanillaTypeIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/VelocityTypeIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/VelocityTypeIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/WarningIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/WarningIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/WaterfallTypeIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/WaterfallTypeIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/Icons/WorldIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/Icons/WorldIcon.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/SelectedIndicatorVertical.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/SelectedIndicatorVertical.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/ToastDisplay.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/ToastDisplay.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Shared/ToastDisplay.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Shared/ToastDisplay.razor.css -------------------------------------------------------------------------------- /Frontend/Razor/Components/Sidebar/Sidebar.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Sidebar/Sidebar.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Sidebar/SidebarEntity.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Sidebar/SidebarEntity.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Sidebar/StatusIndicator.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Sidebar/StatusIndicator.razor -------------------------------------------------------------------------------- /Frontend/Razor/Components/Translated.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Components/Translated.razor -------------------------------------------------------------------------------- /Frontend/Razor/EmptyLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/EmptyLayout.razor -------------------------------------------------------------------------------- /Frontend/Razor/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Index.razor -------------------------------------------------------------------------------- /Frontend/Razor/Index.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Index.razor.cs -------------------------------------------------------------------------------- /Frontend/Razor/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/MainLayout.razor -------------------------------------------------------------------------------- /Frontend/Razor/Welcome.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/Razor/Welcome.razor -------------------------------------------------------------------------------- /Frontend/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/_Imports.razor -------------------------------------------------------------------------------- /Frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/package.json -------------------------------------------------------------------------------- /Frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/tailwind.config.js -------------------------------------------------------------------------------- /Frontend/tailwind.extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/tailwind.extension.json -------------------------------------------------------------------------------- /Frontend/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/wwwroot/css/app.css -------------------------------------------------------------------------------- /Frontend/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/wwwroot/css/open-iconic/FONT-LICENSE -------------------------------------------------------------------------------- /Frontend/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/wwwroot/css/open-iconic/ICON-LICENSE -------------------------------------------------------------------------------- /Frontend/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /Frontend/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /Frontend/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /Frontend/wwwroot/css/open-iconic/font/fonts/open-iconic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/wwwroot/css/open-iconic/font/fonts/open-iconic.svg -------------------------------------------------------------------------------- /Frontend/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /Frontend/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /Frontend/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Frontend/wwwroot/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/wwwroot/icon-192.png -------------------------------------------------------------------------------- /Frontend/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/wwwroot/index.html -------------------------------------------------------------------------------- /Frontend/wwwroot/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/wwwroot/js/app.js -------------------------------------------------------------------------------- /Frontend/wwwroot/lib/clusterizejs/clusterize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/wwwroot/lib/clusterizejs/clusterize.css -------------------------------------------------------------------------------- /Frontend/wwwroot/lib/clusterizejs/clusterize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/wwwroot/lib/clusterizejs/clusterize.js -------------------------------------------------------------------------------- /Frontend/wwwroot/resources/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/wwwroot/resources/fonts/icons.ttf -------------------------------------------------------------------------------- /Frontend/wwwroot/resources/img/Fork Icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/wwwroot/resources/img/Fork Icon.jpg -------------------------------------------------------------------------------- /Frontend/wwwroot/resources/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/wwwroot/resources/img/loading.gif -------------------------------------------------------------------------------- /Frontend/wwwroot/resources/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/Frontend/wwwroot/resources/translation.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/README.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/global.json -------------------------------------------------------------------------------- /qodana-global-configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/qodana-global-configuration.yaml -------------------------------------------------------------------------------- /qodana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForkGG/Fork/HEAD/qodana.yaml --------------------------------------------------------------------------------