aboutsummaryrefslogtreecommitdiff
path: root/src-tauri/src/main.rs
diff options
context:
space:
mode:
authorGeckoEidechse <gecko.eidechse+git@pm.me>2024-01-17 01:33:21 +0100
committerGeckoEidechse <gecko.eidechse+git@pm.me>2024-01-17 01:33:21 +0100
commitfe5887ff9dd82bc20df26f7191e10e982e563023 (patch)
tree4612c4505030a83158ffc9ffa9c41465cf2050b8 /src-tauri/src/main.rs
parent6f1b492a63555c126337ed93aaa9d7b5451bf67e (diff)
downloadFlightCore-fe5887ff9dd82bc20df26f7191e10e982e563023.tar.gz
FlightCore-fe5887ff9dd82bc20df26f7191e10e982e563023.zip
refactor: Sort listed functions alphabetically
This reduces the change of merge conflicts when two PRs add a new function
Diffstat (limited to 'src-tauri/src/main.rs')
-rw-r--r--src-tauri/src/main.rs70
1 files changed, 35 insertions, 35 deletions
diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs
index 09242680..cda3dae7 100644
--- a/src-tauri/src/main.rs
+++ b/src-tauri/src/main.rs
@@ -116,50 +116,50 @@ fn main() {
})
.manage(Counter(Default::default()))
.invoke_handler(tauri::generate_handler![
- util::force_panic,
- northstar::install::find_game_install_location,
- util::get_flightcore_version_number,
- northstar::get_northstar_version_number,
+ development::install_git_main,
+ github::compare_tags,
+ github::get_list_of_tags,
+ github::pull_requests::apply_launcher_pr,
+ github::pull_requests::apply_mods_pr,
+ github::pull_requests::get_launcher_download_link,
+ github::pull_requests::get_pull_requests_wrapper,
+ github::release_notes::check_is_flightcore_outdated,
+ github::release_notes::get_newest_flightcore_version,
+ github::release_notes::get_northstar_release_notes,
+ mod_management::delete_northstar_mod,
+ mod_management::delete_thunderstore_mod,
+ mod_management::get_installed_mods_and_properties,
+ mod_management::install_mod_wrapper,
+ mod_management::set_mod_enabled_status,
northstar::check_is_northstar_outdated,
- repair_and_verify::verify_install_location,
- platform_specific::get_host_os,
+ northstar::get_available_northstar_versions,
+ northstar::get_northstar_version_number,
+ northstar::install::find_game_install_location,
northstar::install::install_northstar_wrapper,
northstar::install::update_northstar,
- northstar::launch_northstar,
northstar::launch_northstar_steam,
- github::release_notes::check_is_flightcore_outdated,
- repair_and_verify::get_log_list,
- repair_and_verify::verify_game_files,
- mod_management::set_mod_enabled_status,
- repair_and_verify::disable_all_but_core,
- util::is_debug_mode,
- github::release_notes::get_northstar_release_notes,
+ northstar::launch_northstar,
+ northstar::profile::delete_profile,
+ northstar::profile::fetch_profiles,
+ northstar::profile::validate_profile,
+ platform_specific::get_host_os,
+ platform_specific::get_local_northstar_proton_wrapper_version,
+ platform_specific::install_northstar_proton_wrapper,
platform_specific::linux_checks,
- mod_management::get_installed_mods_and_properties,
- mod_management::install_mod_wrapper,
+ platform_specific::uninstall_northstar_proton_wrapper,
repair_and_verify::clean_up_download_folder_wrapper,
- github::release_notes::get_newest_flightcore_version,
- mod_management::delete_northstar_mod,
+ repair_and_verify::disable_all_but_core,
+ repair_and_verify::get_log_list,
+ repair_and_verify::verify_game_files,
+ repair_and_verify::verify_install_location,
+ thunderstore::query_thunderstore_packages_api,
+ util::close_application,
+ util::force_panic,
+ util::get_flightcore_version_number,
util::get_server_player_count,
+ util::is_debug_mode,
util::kill_northstar,
- mod_management::delete_thunderstore_mod,
- platform_specific::install_northstar_proton_wrapper,
- platform_specific::uninstall_northstar_proton_wrapper,
- platform_specific::get_local_northstar_proton_wrapper_version,
util::open_repair_window,
- thunderstore::query_thunderstore_packages_api,
- github::get_list_of_tags,
- github::compare_tags,
- github::pull_requests::get_pull_requests_wrapper,
- github::pull_requests::apply_launcher_pr,
- github::pull_requests::apply_mods_pr,
- github::pull_requests::get_launcher_download_link,
- util::close_application,
- development::install_git_main,
- northstar::get_available_northstar_versions,
- northstar::profile::fetch_profiles,
- northstar::profile::validate_profile,
- northstar::profile::delete_profile,
])
.run(tauri::generate_context!())
{