blob: 9d93fe1fef8f80f09bd1f924d4c084d178cae3dc (
plain)
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
|
--- a/src/views/Settings/Settings.vue
+++ b/src/views/Settings/Settings.vue
@@ -46,31 +46,0 @@
- <!--//- General | VRCX Updater-->
- <div class="options-container">
- <span class="header">{{ t('view.settings.general.vrcx_updater.header') }}</span>
- <div class="options-container-item">
- <el-button size="small" icon="el-icon-document" @click="showChangeLogDialog">{{
- t('view.settings.general.vrcx_updater.change_log')
- }}</el-button>
- <el-button size="small" icon="el-icon-upload" @click="showVRCXUpdateDialog()">{{
- t('view.settings.general.vrcx_updater.change_build')
- }}</el-button>
- </div>
- <div class="options-container-item">
- <span class="name">{{ t('view.settings.general.vrcx_updater.update_action') }}</span>
- <br />
- <el-radio-group
- :value="autoUpdateVRCX"
- size="mini"
- style="margin-top: 5px"
- @input="setAutoUpdateVRCX">
- <el-radio-button label="Off">{{
- t('view.settings.general.vrcx_updater.auto_update_off')
- }}</el-radio-button>
- <el-radio-button label="Notify">{{
- t('view.settings.general.vrcx_updater.auto_update_notify')
- }}</el-radio-button>
- <el-radio-button label="Auto Download">{{
- t('view.settings.general.vrcx_updater.auto_update_download')
- }}</el-radio-button>
- </el-radio-group>
- </div>
- </div>
--- a/src/stores/vrcxUpdater.js
+++ b/src/stores/vrcxUpdater.js
@@ -18,1 +18,1 @@
- autoUpdateVRCX: 'Auto Download',
+ autoUpdateVRCX: 'Off',
--- a/src/views/Login/Login.vue
+++ b/src/views/Login/Login.vue
@@ -5,8 +5,0 @@
- <el-tooltip placement="top" :content="t('view.login.updater')" :disabled="hideTooltips">
- <el-button
- type="default"
- size="mini"
- icon="el-icon-download"
- circle
- @click="showVRCXUpdateDialog"></el-button>
- </el-tooltip>
|