├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── analysis_options.yaml ├── assets ├── app_icon.ico ├── flags │ ├── de.svg │ ├── en.svg │ ├── pl.svg │ └── ru.svg ├── i18n │ ├── bg.json │ ├── de.json │ ├── en.json │ ├── fr.json │ ├── hu.json │ ├── pl.json │ └── ru.json └── logos │ └── kyber.svg ├── crowdin.yml ├── installer ├── app_icon.ico └── installer.iss ├── lib ├── api │ ├── backend │ │ └── download_info.dart │ └── kyber │ │ ├── proxy.dart │ │ └── server_response.dart ├── constants │ ├── api_constants.dart │ ├── maps.dart │ ├── mod_categories.dart │ ├── modes.dart │ └── routes.dart ├── logic │ ├── event_cubic.dart │ ├── frosty_cubic.dart │ ├── game_status_cubic.dart │ ├── status_cubit.dart │ └── widget_cubic.dart ├── main.dart ├── screens │ ├── cosmetic_mods │ │ └── cosmetic_mods.dart │ ├── dialogs │ │ ├── battlefront_options_dialog.dart │ │ ├── installed_mod_dialog.dart │ │ ├── join_server_dialog │ │ │ ├── join_dialog.dart │ │ │ └── widgets │ │ │ │ ├── download_screen.dart │ │ │ │ ├── password_input.dart │ │ │ │ ├── required_mods.dart │ │ │ │ └── team_selector.dart │ │ ├── kyber_release_channel_dialog.dart │ │ ├── outdated_frosty_dialog.dart │ │ ├── update_dialog │ │ │ └── update_dialog.dart │ │ └── walk_through │ │ │ ├── walk_through.dart │ │ │ └── widgets │ │ │ ├── frosty_selector.dart │ │ │ ├── installed_mods.dart │ │ │ └── nexusmods_login.dart │ ├── discord_events │ │ └── discord_events.dart │ ├── errors │ │ ├── battlefront_not_installed.dart │ │ ├── chromium_not_found.dart │ │ ├── missing_permissions.dart │ │ └── no_executable.dart │ ├── feedback.dart │ ├── installed_mods.dart │ ├── map_rotation_creator │ │ ├── map_rotation_creator.dart │ │ ├── map_rotation_export_dialog.dart │ │ └── widgets │ │ │ ├── map_rotation_active_map.dart │ │ │ └── map_rotation_mode_maps.dart │ ├── mod_browser.dart │ ├── mod_profiles │ │ ├── edit_profile.dart │ │ ├── frosty_profile.dart │ │ ├── mod_profiles.dart │ │ └── widgets │ │ │ ├── active_mods.dart │ │ │ ├── export_profile_dialog.dart │ │ │ ├── installed_mods.dart │ │ │ └── mod_category.dart │ ├── run_battlefront │ │ ├── run_battlefront.dart │ │ └── run_dialog.dart │ ├── saved_profiles.dart │ ├── server_browser │ │ ├── server_browser.dart │ │ └── widgets │ │ │ └── server.dart │ ├── server_host │ │ ├── hosting_dialog.dart │ │ └── server_host.dart │ ├── settings │ │ ├── settings.dart │ │ └── widgets │ │ │ ├── platform_selector.dart │ │ │ ├── settings_card.dart │ │ │ └── symlinks_dialog.dart │ └── troubleshooting.dart ├── utils │ ├── app_locale.dart │ ├── auto_updater.dart │ ├── battlefront_options.dart │ ├── custom_logger.dart │ ├── dll_injector.dart │ ├── helpers │ │ ├── map_helper.dart │ │ ├── origin_helper.dart │ │ ├── path_helper.dart │ │ ├── platform_helper.dart │ │ ├── puppeteer_helper.dart │ │ ├── storage_helper.dart │ │ ├── system_tasks.dart │ │ ├── unzip_helper.dart │ │ └── window_helper.dart │ ├── services │ │ ├── api_service.dart │ │ ├── download_service.dart │ │ ├── frosty_profile_service.dart │ │ ├── frosty_service.dart │ │ ├── kyber_api_service.dart │ │ ├── mod_installer_service.dart │ │ ├── mod_service.dart │ │ ├── navigator_service.dart │ │ ├── nexusmods_api_service.dart │ │ ├── nexusmods_login_service.dart │ │ ├── notification_service.dart │ │ ├── profile_service.dart │ │ └── rpc_service.dart │ ├── translation │ │ ├── translate_preferences.dart │ │ └── translation_delegate.dart │ └── types │ │ ├── freezed │ │ ├── discord_event.dart │ │ ├── frosty_collection.dart │ │ ├── frosty_cubic_state.dart │ │ ├── frosty_profile.dart │ │ ├── frosty_version.dart │ │ ├── game_status.dart │ │ ├── github_asset.dart │ │ ├── kyber_server.dart │ │ ├── mod.dart │ │ ├── mod_profile.dart │ │ └── nexus_mods_search_result.dart │ │ ├── frosty_config.dart │ │ ├── map.dart │ │ ├── mod_info.dart │ │ ├── mode.dart │ │ ├── pack_type.dart │ │ ├── process_details.dart │ │ └── saved_profile.dart └── widgets │ ├── button_text.dart │ ├── custom_button.dart │ ├── custom_tooltip.dart │ ├── navigation_bar.dart │ └── unordered_list.dart ├── packages └── dynamic_env │ ├── .gitignore │ ├── .metadata │ ├── analysis_options.yaml │ ├── lib │ ├── dynamic_env.dart │ ├── dynamic_env_method_channel.dart │ └── dynamic_env_platform_interface.dart │ ├── pubspec.yaml │ └── windows │ ├── .gitignore │ ├── CMakeLists.txt │ ├── dynamic_env_plugin.cpp │ ├── dynamic_env_plugin.h │ ├── dynamic_env_plugin_c_api.cpp │ └── include │ └── dynamic_env │ └── dynamic_env_plugin_c_api.h ├── pubspec.lock ├── pubspec.yaml └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /assets/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/assets/app_icon.ico -------------------------------------------------------------------------------- /assets/flags/de.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/assets/flags/de.svg -------------------------------------------------------------------------------- /assets/flags/en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/assets/flags/en.svg -------------------------------------------------------------------------------- /assets/flags/pl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/assets/flags/pl.svg -------------------------------------------------------------------------------- /assets/flags/ru.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/assets/flags/ru.svg -------------------------------------------------------------------------------- /assets/i18n/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/assets/i18n/bg.json -------------------------------------------------------------------------------- /assets/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/assets/i18n/de.json -------------------------------------------------------------------------------- /assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/assets/i18n/en.json -------------------------------------------------------------------------------- /assets/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/assets/i18n/fr.json -------------------------------------------------------------------------------- /assets/i18n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/assets/i18n/hu.json -------------------------------------------------------------------------------- /assets/i18n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/assets/i18n/pl.json -------------------------------------------------------------------------------- /assets/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/assets/i18n/ru.json -------------------------------------------------------------------------------- /assets/logos/kyber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/assets/logos/kyber.svg -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/crowdin.yml -------------------------------------------------------------------------------- /installer/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/installer/app_icon.ico -------------------------------------------------------------------------------- /installer/installer.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/installer/installer.iss -------------------------------------------------------------------------------- /lib/api/backend/download_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/api/backend/download_info.dart -------------------------------------------------------------------------------- /lib/api/kyber/proxy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/api/kyber/proxy.dart -------------------------------------------------------------------------------- /lib/api/kyber/server_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/api/kyber/server_response.dart -------------------------------------------------------------------------------- /lib/constants/api_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/constants/api_constants.dart -------------------------------------------------------------------------------- /lib/constants/maps.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/constants/maps.dart -------------------------------------------------------------------------------- /lib/constants/mod_categories.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/constants/mod_categories.dart -------------------------------------------------------------------------------- /lib/constants/modes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/constants/modes.dart -------------------------------------------------------------------------------- /lib/constants/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/constants/routes.dart -------------------------------------------------------------------------------- /lib/logic/event_cubic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/logic/event_cubic.dart -------------------------------------------------------------------------------- /lib/logic/frosty_cubic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/logic/frosty_cubic.dart -------------------------------------------------------------------------------- /lib/logic/game_status_cubic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/logic/game_status_cubic.dart -------------------------------------------------------------------------------- /lib/logic/status_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/logic/status_cubit.dart -------------------------------------------------------------------------------- /lib/logic/widget_cubic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/logic/widget_cubic.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/screens/cosmetic_mods/cosmetic_mods.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/cosmetic_mods/cosmetic_mods.dart -------------------------------------------------------------------------------- /lib/screens/dialogs/battlefront_options_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/dialogs/battlefront_options_dialog.dart -------------------------------------------------------------------------------- /lib/screens/dialogs/installed_mod_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/dialogs/installed_mod_dialog.dart -------------------------------------------------------------------------------- /lib/screens/dialogs/join_server_dialog/join_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/dialogs/join_server_dialog/join_dialog.dart -------------------------------------------------------------------------------- /lib/screens/dialogs/join_server_dialog/widgets/download_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/dialogs/join_server_dialog/widgets/download_screen.dart -------------------------------------------------------------------------------- /lib/screens/dialogs/join_server_dialog/widgets/password_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/dialogs/join_server_dialog/widgets/password_input.dart -------------------------------------------------------------------------------- /lib/screens/dialogs/join_server_dialog/widgets/required_mods.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/dialogs/join_server_dialog/widgets/required_mods.dart -------------------------------------------------------------------------------- /lib/screens/dialogs/join_server_dialog/widgets/team_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/dialogs/join_server_dialog/widgets/team_selector.dart -------------------------------------------------------------------------------- /lib/screens/dialogs/kyber_release_channel_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/dialogs/kyber_release_channel_dialog.dart -------------------------------------------------------------------------------- /lib/screens/dialogs/outdated_frosty_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/dialogs/outdated_frosty_dialog.dart -------------------------------------------------------------------------------- /lib/screens/dialogs/update_dialog/update_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/dialogs/update_dialog/update_dialog.dart -------------------------------------------------------------------------------- /lib/screens/dialogs/walk_through/walk_through.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/dialogs/walk_through/walk_through.dart -------------------------------------------------------------------------------- /lib/screens/dialogs/walk_through/widgets/frosty_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/dialogs/walk_through/widgets/frosty_selector.dart -------------------------------------------------------------------------------- /lib/screens/dialogs/walk_through/widgets/installed_mods.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/dialogs/walk_through/widgets/installed_mods.dart -------------------------------------------------------------------------------- /lib/screens/dialogs/walk_through/widgets/nexusmods_login.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/dialogs/walk_through/widgets/nexusmods_login.dart -------------------------------------------------------------------------------- /lib/screens/discord_events/discord_events.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/discord_events/discord_events.dart -------------------------------------------------------------------------------- /lib/screens/errors/battlefront_not_installed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/errors/battlefront_not_installed.dart -------------------------------------------------------------------------------- /lib/screens/errors/chromium_not_found.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/errors/chromium_not_found.dart -------------------------------------------------------------------------------- /lib/screens/errors/missing_permissions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/errors/missing_permissions.dart -------------------------------------------------------------------------------- /lib/screens/errors/no_executable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/errors/no_executable.dart -------------------------------------------------------------------------------- /lib/screens/feedback.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/feedback.dart -------------------------------------------------------------------------------- /lib/screens/installed_mods.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/installed_mods.dart -------------------------------------------------------------------------------- /lib/screens/map_rotation_creator/map_rotation_creator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/map_rotation_creator/map_rotation_creator.dart -------------------------------------------------------------------------------- /lib/screens/map_rotation_creator/map_rotation_export_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/map_rotation_creator/map_rotation_export_dialog.dart -------------------------------------------------------------------------------- /lib/screens/map_rotation_creator/widgets/map_rotation_active_map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/map_rotation_creator/widgets/map_rotation_active_map.dart -------------------------------------------------------------------------------- /lib/screens/map_rotation_creator/widgets/map_rotation_mode_maps.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/map_rotation_creator/widgets/map_rotation_mode_maps.dart -------------------------------------------------------------------------------- /lib/screens/mod_browser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/mod_browser.dart -------------------------------------------------------------------------------- /lib/screens/mod_profiles/edit_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/mod_profiles/edit_profile.dart -------------------------------------------------------------------------------- /lib/screens/mod_profiles/frosty_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/mod_profiles/frosty_profile.dart -------------------------------------------------------------------------------- /lib/screens/mod_profiles/mod_profiles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/mod_profiles/mod_profiles.dart -------------------------------------------------------------------------------- /lib/screens/mod_profiles/widgets/active_mods.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/mod_profiles/widgets/active_mods.dart -------------------------------------------------------------------------------- /lib/screens/mod_profiles/widgets/export_profile_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/mod_profiles/widgets/export_profile_dialog.dart -------------------------------------------------------------------------------- /lib/screens/mod_profiles/widgets/installed_mods.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/mod_profiles/widgets/installed_mods.dart -------------------------------------------------------------------------------- /lib/screens/mod_profiles/widgets/mod_category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/mod_profiles/widgets/mod_category.dart -------------------------------------------------------------------------------- /lib/screens/run_battlefront/run_battlefront.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/run_battlefront/run_battlefront.dart -------------------------------------------------------------------------------- /lib/screens/run_battlefront/run_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/run_battlefront/run_dialog.dart -------------------------------------------------------------------------------- /lib/screens/saved_profiles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/saved_profiles.dart -------------------------------------------------------------------------------- /lib/screens/server_browser/server_browser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/server_browser/server_browser.dart -------------------------------------------------------------------------------- /lib/screens/server_browser/widgets/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/server_browser/widgets/server.dart -------------------------------------------------------------------------------- /lib/screens/server_host/hosting_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/server_host/hosting_dialog.dart -------------------------------------------------------------------------------- /lib/screens/server_host/server_host.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/server_host/server_host.dart -------------------------------------------------------------------------------- /lib/screens/settings/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/settings/settings.dart -------------------------------------------------------------------------------- /lib/screens/settings/widgets/platform_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/settings/widgets/platform_selector.dart -------------------------------------------------------------------------------- /lib/screens/settings/widgets/settings_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/settings/widgets/settings_card.dart -------------------------------------------------------------------------------- /lib/screens/settings/widgets/symlinks_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/settings/widgets/symlinks_dialog.dart -------------------------------------------------------------------------------- /lib/screens/troubleshooting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/screens/troubleshooting.dart -------------------------------------------------------------------------------- /lib/utils/app_locale.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/app_locale.dart -------------------------------------------------------------------------------- /lib/utils/auto_updater.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/auto_updater.dart -------------------------------------------------------------------------------- /lib/utils/battlefront_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/battlefront_options.dart -------------------------------------------------------------------------------- /lib/utils/custom_logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/custom_logger.dart -------------------------------------------------------------------------------- /lib/utils/dll_injector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/dll_injector.dart -------------------------------------------------------------------------------- /lib/utils/helpers/map_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/helpers/map_helper.dart -------------------------------------------------------------------------------- /lib/utils/helpers/origin_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/helpers/origin_helper.dart -------------------------------------------------------------------------------- /lib/utils/helpers/path_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/helpers/path_helper.dart -------------------------------------------------------------------------------- /lib/utils/helpers/platform_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/helpers/platform_helper.dart -------------------------------------------------------------------------------- /lib/utils/helpers/puppeteer_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/helpers/puppeteer_helper.dart -------------------------------------------------------------------------------- /lib/utils/helpers/storage_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/helpers/storage_helper.dart -------------------------------------------------------------------------------- /lib/utils/helpers/system_tasks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/helpers/system_tasks.dart -------------------------------------------------------------------------------- /lib/utils/helpers/unzip_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/helpers/unzip_helper.dart -------------------------------------------------------------------------------- /lib/utils/helpers/window_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/helpers/window_helper.dart -------------------------------------------------------------------------------- /lib/utils/services/api_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/services/api_service.dart -------------------------------------------------------------------------------- /lib/utils/services/download_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/services/download_service.dart -------------------------------------------------------------------------------- /lib/utils/services/frosty_profile_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/services/frosty_profile_service.dart -------------------------------------------------------------------------------- /lib/utils/services/frosty_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/services/frosty_service.dart -------------------------------------------------------------------------------- /lib/utils/services/kyber_api_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/services/kyber_api_service.dart -------------------------------------------------------------------------------- /lib/utils/services/mod_installer_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/services/mod_installer_service.dart -------------------------------------------------------------------------------- /lib/utils/services/mod_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/services/mod_service.dart -------------------------------------------------------------------------------- /lib/utils/services/navigator_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/services/navigator_service.dart -------------------------------------------------------------------------------- /lib/utils/services/nexusmods_api_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/services/nexusmods_api_service.dart -------------------------------------------------------------------------------- /lib/utils/services/nexusmods_login_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/services/nexusmods_login_service.dart -------------------------------------------------------------------------------- /lib/utils/services/notification_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/services/notification_service.dart -------------------------------------------------------------------------------- /lib/utils/services/profile_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/services/profile_service.dart -------------------------------------------------------------------------------- /lib/utils/services/rpc_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/services/rpc_service.dart -------------------------------------------------------------------------------- /lib/utils/translation/translate_preferences.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/translation/translate_preferences.dart -------------------------------------------------------------------------------- /lib/utils/translation/translation_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/translation/translation_delegate.dart -------------------------------------------------------------------------------- /lib/utils/types/freezed/discord_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/types/freezed/discord_event.dart -------------------------------------------------------------------------------- /lib/utils/types/freezed/frosty_collection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/types/freezed/frosty_collection.dart -------------------------------------------------------------------------------- /lib/utils/types/freezed/frosty_cubic_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/types/freezed/frosty_cubic_state.dart -------------------------------------------------------------------------------- /lib/utils/types/freezed/frosty_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/types/freezed/frosty_profile.dart -------------------------------------------------------------------------------- /lib/utils/types/freezed/frosty_version.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/types/freezed/frosty_version.dart -------------------------------------------------------------------------------- /lib/utils/types/freezed/game_status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/types/freezed/game_status.dart -------------------------------------------------------------------------------- /lib/utils/types/freezed/github_asset.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/types/freezed/github_asset.dart -------------------------------------------------------------------------------- /lib/utils/types/freezed/kyber_server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/types/freezed/kyber_server.dart -------------------------------------------------------------------------------- /lib/utils/types/freezed/mod.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/types/freezed/mod.dart -------------------------------------------------------------------------------- /lib/utils/types/freezed/mod_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/types/freezed/mod_profile.dart -------------------------------------------------------------------------------- /lib/utils/types/freezed/nexus_mods_search_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/types/freezed/nexus_mods_search_result.dart -------------------------------------------------------------------------------- /lib/utils/types/frosty_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/types/frosty_config.dart -------------------------------------------------------------------------------- /lib/utils/types/map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/types/map.dart -------------------------------------------------------------------------------- /lib/utils/types/mod_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/types/mod_info.dart -------------------------------------------------------------------------------- /lib/utils/types/mode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/types/mode.dart -------------------------------------------------------------------------------- /lib/utils/types/pack_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/types/pack_type.dart -------------------------------------------------------------------------------- /lib/utils/types/process_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/types/process_details.dart -------------------------------------------------------------------------------- /lib/utils/types/saved_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/utils/types/saved_profile.dart -------------------------------------------------------------------------------- /lib/widgets/button_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/widgets/button_text.dart -------------------------------------------------------------------------------- /lib/widgets/custom_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/widgets/custom_button.dart -------------------------------------------------------------------------------- /lib/widgets/custom_tooltip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/widgets/custom_tooltip.dart -------------------------------------------------------------------------------- /lib/widgets/navigation_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/widgets/navigation_bar.dart -------------------------------------------------------------------------------- /lib/widgets/unordered_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/lib/widgets/unordered_list.dart -------------------------------------------------------------------------------- /packages/dynamic_env/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/packages/dynamic_env/.gitignore -------------------------------------------------------------------------------- /packages/dynamic_env/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/packages/dynamic_env/.metadata -------------------------------------------------------------------------------- /packages/dynamic_env/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/packages/dynamic_env/analysis_options.yaml -------------------------------------------------------------------------------- /packages/dynamic_env/lib/dynamic_env.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/packages/dynamic_env/lib/dynamic_env.dart -------------------------------------------------------------------------------- /packages/dynamic_env/lib/dynamic_env_method_channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/packages/dynamic_env/lib/dynamic_env_method_channel.dart -------------------------------------------------------------------------------- /packages/dynamic_env/lib/dynamic_env_platform_interface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/packages/dynamic_env/lib/dynamic_env_platform_interface.dart -------------------------------------------------------------------------------- /packages/dynamic_env/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/packages/dynamic_env/pubspec.yaml -------------------------------------------------------------------------------- /packages/dynamic_env/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/packages/dynamic_env/windows/.gitignore -------------------------------------------------------------------------------- /packages/dynamic_env/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/packages/dynamic_env/windows/CMakeLists.txt -------------------------------------------------------------------------------- /packages/dynamic_env/windows/dynamic_env_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/packages/dynamic_env/windows/dynamic_env_plugin.cpp -------------------------------------------------------------------------------- /packages/dynamic_env/windows/dynamic_env_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/packages/dynamic_env/windows/dynamic_env_plugin.h -------------------------------------------------------------------------------- /packages/dynamic_env/windows/dynamic_env_plugin_c_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/packages/dynamic_env/windows/dynamic_env_plugin_c_api.cpp -------------------------------------------------------------------------------- /packages/dynamic_env/windows/include/dynamic_env/dynamic_env_plugin_c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/packages/dynamic_env/windows/include/dynamic_env/dynamic_env_plugin_c_api.h -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmchairDevelopers/KyberModManager/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------