diff options
author | Jan <sentrycraft123@gmail.com> | 2023-04-06 15:06:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-06 15:06:38 +0200 |
commit | dd1e870b279f990981dcbaff79c9db58fde18ba9 (patch) | |
tree | 72ac9445ee21d368d304aee0dcaa3bc8da32d03e /src-tauri/src/constants.rs | |
parent | ad19a08e24817c4e7256174c77316829f86bb0d3 (diff) | |
download | FlightCore-dd1e870b279f990981dcbaff79c9db58fde18ba9.tar.gz FlightCore-dd1e870b279f990981dcbaff79c9db58fde18ba9.zip |
feat: Add ability to launch via Steam to DevView (#178)
* feat: Add ability to launch via Steam
* document what get_titanfall_proton() does
* revert explicit use of newly imported Path
* Format source code to pass CI
* Use new steamlocate compat_tool helper
* cargo fmt
* fix: Address various clippy issues
Addresses clippy warnings caused by newly introduced code
* fix: Cargo toml dependency formatting
Diffstat (limited to 'src-tauri/src/constants.rs')
-rw-r--r-- | src-tauri/src/constants.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src-tauri/src/constants.rs b/src-tauri/src/constants.rs index 0f4e9ab4..8c88df1e 100644 --- a/src-tauri/src/constants.rs +++ b/src-tauri/src/constants.rs @@ -29,6 +29,9 @@ pub const BLACKLISTED_MODS: [&str; 3] = [ // Titanfall2 game IDs on Origin/EA-App pub const TITANFALL2_ORIGIN_IDS: [&str; 2] = ["Origin.OFR.50.0001452", "Origin.OFR.50.0001456"]; +// Titanfall2 Steam App ID +pub const TITANFALL2_STEAM_ID: &str = "1237970"; + // Order in which the sections for release notes should be displayed pub const SECTION_ORDER: [&str; 9] = [ "feat", "fix", "docs", "style", "refactor", "build", "test", "chore", "other", |