aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/views/SettingsView.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src-vue/src/views/SettingsView.vue')
-rw-r--r--src-vue/src/views/SettingsView.vue28
1 files changed, 28 insertions, 0 deletions
diff --git a/src-vue/src/views/SettingsView.vue b/src-vue/src/views/SettingsView.vue
index 8cb6e810..ff87c394 100644
--- a/src-vue/src/views/SettingsView.vue
+++ b/src-vue/src/views/SettingsView.vue
@@ -21,6 +21,12 @@
<br />
<br />
UI design inspired by <el-link :underline="false" target="_blank" href="https://github.com/TFORevive/tforevive_launcher/" type="primary">TFORevive Launcher</el-link> (not yet public)
+
+ <h3>Testing:</h3>
+ <span>
+ Enable testing release channels
+ <el-switch v-model="enableReleasesSwitch"></el-switch>
+ </span>
</div>
</el-scrollbar>
</div>
@@ -29,6 +35,9 @@
<script lang="ts">
import { defineComponent } from "vue";
import { ElNotification } from 'element-plus';
+import { ReleaseCanal } from "../utils/ReleaseCanal";
+import { Store } from 'tauri-plugin-store-api';
+const persistentStore = new Store('flight-core-settings.json');
export default defineComponent({
name: "SettingsView",
@@ -41,6 +50,21 @@ export default defineComponent({
flightcoreVersion(): string {
return this.$store.state.flightcore_version;
},
+ enableReleasesSwitch: {
+ get(): boolean {
+ return this.$store.state.enableReleasesSwitch;
+ },
+ set(value: boolean): void {
+ this.$store.state.enableReleasesSwitch = value;
+ persistentStore.set('northstar-releases-switching', { value });
+
+ // When disabling switch, we switch release canal to stable release, to avoid users being
+ // stuck with release candidate after disabling release switching.
+ if (!value && this.$store.state.northstar_release_canal !== ReleaseCanal.RELEASE) {
+ this.$store.commit('toggleReleaseCandidate');
+ }
+ }
+ }
},
methods: {
activateDeveloperMode() {
@@ -82,4 +106,8 @@ h3:first-of-type {
.el-input {
width: 50%;
}
+
+.el-switch {
+ margin-left: 50px;
+}
</style>