Linux .no-updater fixes

This commit is contained in:
Natsumi
2025-11-17 20:17:13 +11:00
parent 2354a783e6
commit fd73bdae90
2 changed files with 4 additions and 2 deletions

View File

@@ -86,7 +86,8 @@
"images/VRCX_notify.png",
"images/VRCX_notify.ico",
"Version",
"src-electron/libs/linux/libopenvr_api.so"
"src-electron/libs/linux/libopenvr_api.so",
".no-updater"
],
"asarUnpack": [
"node_modules/node-api-dotnet/**/*",

View File

@@ -1,6 +1,6 @@
<template>
<div style="float: left; margin: 5px; z-index: 3000">
<el-tooltip placement="top" :content="t('view.login.updater')">
<el-tooltip v-if="!noUpdater" placement="top" :content="t('view.login.updater')">
<el-button type="default" size="small" :icon="Download" circle @click="showVRCXUpdateDialog"></el-button>
</el-tooltip>
<el-tooltip placement="top" :content="t('view.login.proxy_settings')">
@@ -165,6 +165,7 @@
const { loginForm, enableCustomEndpoint } = storeToRefs(useAuthStore());
const { toggleCustomEndpoint, relogin, deleteSavedLogin, login, getAllSavedCredentials } = useAuthStore();
const { promptProxySettings } = useGeneralSettingsStore();
const { noUpdater } = storeToRefs(useVRCXUpdaterStore());
const { t } = useI18n();