diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-03-02 23:58:08 +0100 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-03-02 23:58:08 +0100 |
commit | c800dd31355064be8d3de8a74326b1c2b974c78e (patch) | |
tree | c22d9c1a83fafe009f16483bc88a96bbdd49dba0 /src-tauri/src/constants.rs | |
parent | c60b7b606dd0b4bc7108f9a768a4545f0781730c (diff) | |
parent | 441b81ef0f46062713f618a57e0d297c8a7a70d3 (diff) | |
download | FlightCore-c800dd31355064be8d3de8a74326b1c2b974c78e.tar.gz FlightCore-c800dd31355064be8d3de8a74326b1c2b974c78e.zip |
Merge branch 'main' into feat/basic-log-parsingfeat/basic-log-parsing
Diffstat (limited to 'src-tauri/src/constants.rs')
-rw-r--r-- | src-tauri/src/constants.rs | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/src-tauri/src/constants.rs b/src-tauri/src/constants.rs index 4cc3c204..57a10e02 100644 --- a/src-tauri/src/constants.rs +++ b/src-tauri/src/constants.rs @@ -1,9 +1,36 @@ // This file stores various global constants values -pub const APP_USER_AGENT: &str = "R2NorthstarTools/FlightCore"; +use const_format::concatcp; + +// FlightCore user agent for web requests +pub const APP_USER_AGENT: &str = concatcp!("FlightCore/", env!("CARGO_PKG_VERSION")); // URL of the Northstar masterserver pub const MASTER_SERVER_URL: &str = "https://northstar.tf"; // server list endpoint pub const SERVER_BROWSER_ENDPOINT: &str = "/client/servers"; + +// List of core Northstar mods +pub const CORE_MODS: [&str; 3] = [ + "Northstar.Client", + "Northstar.Custom", + "Northstar.CustomServers", +]; + +// List of Thunderstoremods that shouldn't be installable +// as they behave different than common Squirrel mods +pub const BLACKLISTED_MODS: [&str; 3] = [ + "northstar-Northstar", + "northstar-NorthstarReleaseCandidate", + "ebkr-r2modman", +]; + +// Titanfall2 game IDs on Origin/EA-App +pub const TITANFALL2_ORIGIN_IDS: [&str; 2] = ["Origin.OFR.50.0001452", "Origin.OFR.50.0001456"]; + +// GitHub API endpoints for launcher/mods PRs +pub const PULLS_API_ENDPOINT_LAUNCHER: &str = + "https://api.github.com/repos/R2Northstar/NorthstarLauncher/pulls"; +pub const PULLS_API_ENDPOINT_MODS: &str = + "https://api.github.com/repos/R2Northstar/NorthstarMods/pulls"; |