aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/plugins
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2022-10-08 00:23:05 +0200
committerGitHub <noreply@github.com>2022-10-08 00:23:05 +0200
commitef95fbebe0e96b094ca57c9295a1ed5e48644b4f (patch)
treedbd7e67e0106c1f91580f944f160f540a5839e90 /src-vue/src/plugins
parent4e6c3fc46b46b6509b97a5aeeaef8f5ab9396093 (diff)
downloadFlightCore-ef95fbebe0e96b094ca57c9295a1ed5e48644b4f.tar.gz
FlightCore-ef95fbebe0e96b094ca57c9295a1ed5e48644b4f.zip
feat: Show own version number in settings view (#11)
* feat: Show own version number in settings view Adds a new field to state that stores FlightCore version number. Version number is pulled from backend on application launch. * style: Reorder so that FC version is shown first * chore: Remove leftover TODO comment
Diffstat (limited to 'src-vue/src/plugins')
-rw-r--r--src-vue/src/plugins/store.ts12
1 files changed, 8 insertions, 4 deletions
diff --git a/src-vue/src/plugins/store.ts b/src-vue/src/plugins/store.ts
index 32fe0195..de66da3f 100644
--- a/src-vue/src/plugins/store.ts
+++ b/src-vue/src/plugins/store.ts
@@ -15,6 +15,8 @@ export interface FlightCoreStore {
game_path: string,
install_type: InstallType,
+ flightcore_version: string,
+
installed_northstar_version: string,
northstar_state: NorthstarState,
release_canal: ReleaseCanal,
@@ -31,6 +33,8 @@ export const store = createStore<FlightCoreStore>({
game_path: undefined as unknown as string,
install_type: undefined as unknown as InstallType,
+ flightcore_version: "",
+
installed_northstar_version: "",
northstar_state: NorthstarState.GAME_NOT_FOUND,
release_canal: ReleaseCanal.RELEASE,
@@ -139,6 +143,9 @@ async function _initializeApp(state: any) {
state.developer_mode = true;
}
+ // Get FlightCore version number
+ state.flightcore_version = await invoke("get_version_number");
+
const result = await invoke("find_game_install_location_caller")
.catch((err) => {
// Gamepath not found or other error
@@ -163,13 +170,10 @@ async function _checkForFlightCoreUpdates(state: FlightCoreStore) {
// Check if FlightCore up-to-date
let flightcore_is_outdated = await invoke("check_is_flightcore_outdated_caller") as boolean;
- // Get FlightCore version number
- let flightcore_version_number = await invoke("get_version_number") as string;
-
if (flightcore_is_outdated) {
ElNotification({
title: 'FlightCore outdated!',
- message: `Please update FlightCore. Running outdated version ${flightcore_version_number}`,
+ message: `Please update FlightCore. Running outdated version ${state.flightcore_version}`,
type: 'warning',
position: 'bottom-right',
duration: 0 // Duration `0` means the notification will not auto-vanish