aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2023-10-13 14:51:50 +0200
committerGitHub <noreply@github.com>2023-10-13 14:51:50 +0200
commit1f3c3f070ac2cdbbad9a9c3a1614eecab14c0506 (patch)
tree97e8ea9c323bba8b018d78e2270794c5ab04f318
parent1b656b824b12c1d70b9ad5f2d01ad63db1667a3e (diff)
downloadFlightCore-1f3c3f070ac2cdbbad9a9c3a1614eecab14c0506.tar.gz
FlightCore-1f3c3f070ac2cdbbad9a9c3a1614eecab14c0506.zip
refactor: Move `convert_release_candidate_number` (#629)
to `util` module
-rw-r--r--src-tauri/src/main.rs9
-rw-r--r--src-tauri/src/northstar/mod.rs2
-rw-r--r--src-tauri/src/util.rs9
3 files changed, 10 insertions, 10 deletions
diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs
index 6553db99..09242680 100644
--- a/src-tauri/src/main.rs
+++ b/src-tauri/src/main.rs
@@ -193,15 +193,6 @@ fn main() {
};
}
-/// Helps with converting release candidate numbers which are different on Thunderstore
-/// due to restrictions imposed by the platform
-pub fn convert_release_candidate_number(version_number: String) -> String {
- // This simply converts `-rc` to `0`
- // Works as intended for RCs < 10, e.g. `v1.9.2-rc1` -> `v1.9.201`
- // Doesn't work for larger numbers, e.g. `v1.9.2-rc11` -> `v1.9.2011` (should be `v1.9.211`)
- version_number.replace("-rc", "0").replace("00", "")
-}
-
/// Defines how Titanfall2 was installed (Steam, Origin, ...)
#[derive(Serialize, Deserialize, Debug, Clone, TS)]
#[ts(export)]
diff --git a/src-tauri/src/northstar/mod.rs b/src-tauri/src/northstar/mod.rs
index 1c2023b6..e707849e 100644
--- a/src-tauri/src/northstar/mod.rs
+++ b/src-tauri/src/northstar/mod.rs
@@ -91,7 +91,7 @@ pub async fn check_is_northstar_outdated(
};
// Release candidate version numbers are different between `mods.json` and Thunderstore
- let version_number = crate::convert_release_candidate_number(version_number);
+ let version_number = crate::util::convert_release_candidate_number(version_number);
if version_number != nmod.latest {
log::info!("Installed Northstar version outdated");
diff --git a/src-tauri/src/util.rs b/src-tauri/src/util.rs
index 274cf488..75555f3e 100644
--- a/src-tauri/src/util.rs
+++ b/src-tauri/src/util.rs
@@ -225,3 +225,12 @@ pub fn move_dir_all(
}
Ok(())
}
+
+/// Helps with converting release candidate numbers which are different on Thunderstore
+/// due to restrictions imposed by the platform
+pub fn convert_release_candidate_number(version_number: String) -> String {
+ // This simply converts `-rc` to `0`
+ // Works as intended for RCs < 10, e.g. `v1.9.2-rc1` -> `v1.9.201`
+ // Doesn't work for larger numbers, e.g. `v1.9.2-rc11` -> `v1.9.2011` (should be `v1.9.211`)
+ version_number.replace("-rc", "0").replace("00", "")
+}