Skip to content

Commit

Permalink
refactor: Sort listed functions alphabetically
Browse files Browse the repository at this point in the history
This reduces the change of merge conflicts when two PRs add a new function
  • Loading branch information
GeckoEidechse committed Jan 17, 2024
1 parent 6f1b492 commit fe5887f
Showing 1 changed file with 35 additions and 35 deletions.
70 changes: 35 additions & 35 deletions src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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!())
{
Expand Down

0 comments on commit fe5887f

Please sign in to comment.