aboutsummaryrefslogtreecommitdiff
path: root/src-vue
diff options
context:
space:
mode:
Diffstat (limited to 'src-vue')
-rw-r--r--src-vue/src/plugins/store.ts6
-rw-r--r--src-vue/src/views/ChangelogView.vue5
-rw-r--r--src-vue/src/views/DeveloperView.vue2
-rw-r--r--src-vue/src/views/PlayView.vue6
4 files changed, 10 insertions, 9 deletions
diff --git a/src-vue/src/plugins/store.ts b/src-vue/src/plugins/store.ts
index 4fdf50a3..c731b98d 100644
--- a/src-vue/src/plugins/store.ts
+++ b/src-vue/src/plugins/store.ts
@@ -33,7 +33,7 @@ export interface FlightCoreStore {
let notification_handle: NotificationHandle;
export const store = createStore<FlightCoreStore>({
- state (): FlightCoreStore {
+ state(): FlightCoreStore {
return {
developer_mode: false,
game_path: undefined as unknown as string,
@@ -197,7 +197,7 @@ async function _initializeApp(state: any) {
// Grab Northstar release canal value from store if exists
var persistent_northstar_release_canal = (await persistentStore.get('northstar-release-canal')) as any;
- if(persistent_northstar_release_canal) { // For some reason, the plugin-store doesn't throw an eror but simply returns `null` when key not found
+ if (persistent_northstar_release_canal) { // For some reason, the plugin-store doesn't throw an eror but simply returns `null` when key not found
// Put value from peristent store into current store
state.northstar_release_canal = persistent_northstar_release_canal.value as string;
}
@@ -206,7 +206,7 @@ async function _initializeApp(state: any) {
}
// Get FlightCore version number
- state.flightcore_version = await invoke("get_version_number");
+ state.flightcore_version = await invoke("get_flightcore_version_number");
const result = await invoke("find_game_install_location_caller")
.catch((err) => {
diff --git a/src-vue/src/views/ChangelogView.vue b/src-vue/src/views/ChangelogView.vue
index 9fca5e5b..ff4f2659 100644
--- a/src-vue/src/views/ChangelogView.vue
+++ b/src-vue/src/views/ChangelogView.vue
@@ -1,6 +1,7 @@
<template>
<div class="fc__changelog__container">
- <el-link :underline="false" icon="DocumentCopy" target="_blank" href="https://github.com/R2Northstar/Northstar/releases">
+ <el-link :underline="false" icon="DocumentCopy" target="_blank"
+ href="https://github.com/R2Northstar/Northstar/releases">
Open release notes
</el-link>
</div>
@@ -18,6 +19,6 @@ export default {
}
.el-link {
- color: white;
+ color: white;
}
</style>
diff --git a/src-vue/src/views/DeveloperView.vue b/src-vue/src/views/DeveloperView.vue
index dcc0c477..3a7ec8f5 100644
--- a/src-vue/src/views/DeveloperView.vue
+++ b/src-vue/src/views/DeveloperView.vue
@@ -26,7 +26,7 @@
</template>
<script lang="ts">
-import {defineComponent} from "vue";
+import { defineComponent } from "vue";
import { invoke } from "@tauri-apps/api";
import { ElNotification } from "element-plus";
import { ReleaseCanal } from "../utils/ReleaseCanal";
diff --git a/src-vue/src/views/PlayView.vue b/src-vue/src/views/PlayView.vue
index b02acc59..7b034004 100644
--- a/src-vue/src/views/PlayView.vue
+++ b/src-vue/src/views/PlayView.vue
@@ -1,6 +1,6 @@
<script lang="ts">
import { ElNotification } from 'element-plus';
-import {Tabs} from "../utils/Tabs";
+import { Tabs } from "../utils/Tabs";
import PlayButton from '../components/PlayButton.vue';
import { defineComponent } from "vue";
@@ -55,10 +55,10 @@ export default defineComponent({
</div>
</div>
<div>
- <PlayButton/>
+ <PlayButton />
<div v-if="$store.state.developer_mode" id="fc_services__status">
<div>
- <div class="fc_version__line">Northstar is running: </div>
+ <div class="fc_version__line">Northstar is running: </div>
<div class="fc_version__line fc_version__line__boolean"> {{ northstarIsRunning }}</div>
</div>
<div>