├── .gitattributes ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .idea ├── AndroidProjectSystem.xml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── discord.xml ├── gradle.xml ├── kotlinc.xml ├── misc.xml └── vcs.xml ├── LICENSE ├── README.md ├── core ├── build.gradle.kts └── src │ └── main │ └── kotlin │ ├── server │ ├── AdministrationConfig.kt │ ├── Constants.kt │ ├── GameUserSettings.kt │ ├── InstallManager.kt │ ├── PowerManager.kt │ ├── ProfileLoader.kt │ ├── ServerManager.kt │ └── ServerProfile.kt │ └── settings │ ├── Settings.kt │ └── SettingsHelper.kt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── ui ├── build.gradle.kts ├── proguard-rules.pro └── src └── main └── kotlin ├── Main.kt ├── ToastManager.kt ├── ValidationResult.kt ├── VersionInfo.kt ├── components └── CollapsibleCard.kt ├── root ├── RootComponent.kt └── RootContent.kt ├── server ├── GameUserSettingsModel.kt ├── GeneralConfigurationComponent.kt ├── GeneralConfigurationModel.kt ├── GeneralConfigurationScreen.kt ├── InstallationModel.kt ├── ProfileConfigurationComponent.kt ├── ProfileConfigurationModel.kt ├── ProfileConfigurationScreen.kt ├── ServerComponent.kt ├── ServerScreen.kt └── components │ ├── InstallationSection.kt │ ├── ModsManagerView.kt │ ├── ServerControlSection.kt │ ├── ServerHeaderSection.kt │ └── general-configuration │ ├── GeneralConfigurationAutoSaveSection.kt │ ├── GeneralConfigurationBasicFields.kt │ ├── GeneralConfigurationMotdSection.kt │ ├── GeneralConfigurationPortsSection.kt │ └── GeneralConfigurationRconSection.kt ├── serverList ├── ServerListComponent.kt ├── ServerListScreen.kt └── components │ └── ServerCard.kt └── settings ├── SettingsComponent.kt ├── SettingsModel.kt └── SettingsScreen.kt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/AndroidProjectSystem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/.idea/AndroidProjectSystem.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/discord.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/.idea/discord.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/README.md -------------------------------------------------------------------------------- /core/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/core/build.gradle.kts -------------------------------------------------------------------------------- /core/src/main/kotlin/server/AdministrationConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/core/src/main/kotlin/server/AdministrationConfig.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/server/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/core/src/main/kotlin/server/Constants.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/server/GameUserSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/core/src/main/kotlin/server/GameUserSettings.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/server/InstallManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/core/src/main/kotlin/server/InstallManager.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/server/PowerManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/core/src/main/kotlin/server/PowerManager.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/server/ProfileLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/core/src/main/kotlin/server/ProfileLoader.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/server/ServerManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/core/src/main/kotlin/server/ServerManager.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/server/ServerProfile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/core/src/main/kotlin/server/ServerProfile.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/settings/Settings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/core/src/main/kotlin/settings/Settings.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/settings/SettingsHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/core/src/main/kotlin/settings/SettingsHelper.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /ui/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/build.gradle.kts -------------------------------------------------------------------------------- /ui/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/proguard-rules.pro -------------------------------------------------------------------------------- /ui/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/ToastManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/ToastManager.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/ValidationResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/ValidationResult.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/VersionInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/VersionInfo.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/components/CollapsibleCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/components/CollapsibleCard.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/root/RootComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/root/RootComponent.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/root/RootContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/root/RootContent.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/server/GameUserSettingsModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/server/GameUserSettingsModel.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/server/GeneralConfigurationComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/server/GeneralConfigurationComponent.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/server/GeneralConfigurationModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/server/GeneralConfigurationModel.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/server/GeneralConfigurationScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/server/GeneralConfigurationScreen.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/server/InstallationModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/server/InstallationModel.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/server/ProfileConfigurationComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/server/ProfileConfigurationComponent.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/server/ProfileConfigurationModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/server/ProfileConfigurationModel.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/server/ProfileConfigurationScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/server/ProfileConfigurationScreen.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/server/ServerComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/server/ServerComponent.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/server/ServerScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/server/ServerScreen.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/server/components/InstallationSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/server/components/InstallationSection.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/server/components/ModsManagerView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/server/components/ModsManagerView.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/server/components/ServerControlSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/server/components/ServerControlSection.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/server/components/ServerHeaderSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/server/components/ServerHeaderSection.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/server/components/general-configuration/GeneralConfigurationAutoSaveSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/server/components/general-configuration/GeneralConfigurationAutoSaveSection.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/server/components/general-configuration/GeneralConfigurationBasicFields.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/server/components/general-configuration/GeneralConfigurationBasicFields.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/server/components/general-configuration/GeneralConfigurationMotdSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/server/components/general-configuration/GeneralConfigurationMotdSection.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/server/components/general-configuration/GeneralConfigurationPortsSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/server/components/general-configuration/GeneralConfigurationPortsSection.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/server/components/general-configuration/GeneralConfigurationRconSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/server/components/general-configuration/GeneralConfigurationRconSection.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/serverList/ServerListComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/serverList/ServerListComponent.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/serverList/ServerListScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/serverList/ServerListScreen.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/serverList/components/ServerCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/serverList/components/ServerCard.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/settings/SettingsComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/settings/SettingsComponent.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/settings/SettingsModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/settings/SettingsModel.kt -------------------------------------------------------------------------------- /ui/src/main/kotlin/settings/SettingsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensvandeWiel/ArkAscendedServerManager/HEAD/ui/src/main/kotlin/settings/SettingsScreen.kt --------------------------------------------------------------------------------