aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src
diff options
context:
space:
mode:
authorJan <sentrycraft123@gmail.com>2024-04-14 18:01:56 +0200
committerGitHub <noreply@github.com>2024-04-14 18:01:56 +0200
commit7ab55d005aa7661d1eed6cb0a77ee6b269bfdf91 (patch)
treea9f7070d426d852845d6dfcf8728df27840fc88f /src-vue/src
parent24ca626e2bd0a7b35d4e0421ec3722fa710c62c4 (diff)
downloadFlightCore-7ab55d005aa7661d1eed6cb0a77ee6b269bfdf91.tar.gz
FlightCore-7ab55d005aa7661d1eed6cb0a77ee6b269bfdf91.zip
chore: Remove Linux checks (#893)
With NorthstarProton changing to be Proton-GE based the glibc requirement is no longer needed since it targets the Steam runtime
Diffstat (limited to 'src-vue/src')
-rw-r--r--src-vue/src/views/DeveloperView.vue14
1 files changed, 0 insertions, 14 deletions
diff --git a/src-vue/src/views/DeveloperView.vue b/src-vue/src/views/DeveloperView.vue
index f3847d36..a08c73f3 100644
--- a/src-vue/src/views/DeveloperView.vue
+++ b/src-vue/src/views/DeveloperView.vue
@@ -17,10 +17,6 @@
<h3>Linux:</h3>
- <el-button type="primary" @click="checkLinuxCompatibility">
- Check NSProton Compatibility
- </el-button>
-
<el-button type="primary" @click="installNSProton">
Install NSProton
</el-button>
@@ -210,16 +206,6 @@ export default defineComponent({
await invoke("force_panic");
showErrorNotification("Never should have been able to get here!");
},
- async checkLinuxCompatibility() {
- await invoke("linux_checks")
- .then(() => {
- showNotification('Linux compatible', 'All checks passed');
- })
- .catch((error) => {
- showNotification('Not Linux compatible', error, 'error');
- console.error(error);
- });
- },
async launchGameWithoutChecks() {
let launch_options: NorthstarLaunchOptions = { bypass_checks: true, launch_via_steam: false };
this.$store.commit('launchGame', launch_options);