1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
<template>
<div class="fc__developer__container">
<el-button type="primary" @click="disableDevMode">
Disable developer mode
</el-button>
<el-button type="primary" @click="crashApplication">
Panic button
</el-button>
<el-button type="primary" @click="checkLinuxCompatibility">
Check NSProton Compatibility
</el-button>
<el-button type="primary" @click="toggleReleaseCandidate">
Toggle Release Candidate
</el-button>
<h3>Repair:</h3>
<el-button type="primary" @click="disableAllModsButCore">
Disable all but core mods
</el-button>
</div>
</template>
<script lang="ts">
import {defineComponent} from "vue";
import { invoke } from "@tauri-apps/api";
import { ElNotification } from "element-plus";
import { ReleaseCanal } from "../utils/ReleaseCanal";
import { GameInstall } from "../utils/GameInstall";
export default defineComponent({
name: "DeveloperView",
methods: {
disableDevMode() {
this.$store.commit('toggleDeveloperMode');
},
async crashApplication() {
await invoke("force_panic");
ElNotification({
title: 'Error',
message: "Never should have been able to get here!",
type: 'error',
position: 'bottom-right'
});
},
async checkLinuxCompatibility() {
let LinuxCompatible = await invoke("linux_checks");
if (!LinuxCompatible) {
ElNotification({
title: 'Not linux compatible',
message: 'GLIBC is not version 2.33 or greater',
type: 'error',
position: 'bottom-right'
});
} else {
ElNotification({
title: 'Linux compatible',
message: 'No error reported',
type: 'success',
position: 'bottom-right'
});
}
},
async toggleReleaseCandidate() {
// Flip between RELEASE and RELEASE_CANDIDATE
this.$store.state.release_canal = this.$store.state.release_canal === ReleaseCanal.RELEASE
? ReleaseCanal.RELEASE_CANDIDATE
: ReleaseCanal.RELEASE;
// Update current state so that update check etc can be performed
this.$store.commit("checkNorthstarUpdates");
console.log(this.$store.state)
// Display notification to highlight change
ElNotification({
title: `${this.$store.state.release_canal}`,
message: `Switched release channel to: "${this.$store.state.release_canal}"`,
type: 'success',
position: 'bottom-right'
});
},
async disableAllModsButCore() {
let game_install = {
game_path: this.$store.state.game_path,
install_type: this.$store.state.install_type
} as GameInstall;
await invoke("disable_all_but_core_caller", { gameInstall: game_install }).then((message) => {
ElNotification({
title: 'Success',
message: "Disabled all mods but core",
type: 'success',
position: 'bottom-right'
});
})
.catch((error) => {
ElNotification({
title: 'Error',
message: error,
type: 'error',
position: 'bottom-right'
});
});
}
}
});
</script>
<style scoped>
.fc__developer__container {
padding: 20px 30px;
color: white;
}
</style>
|