add auto-login delay setting and prompt

This commit is contained in:
pa
2026-02-01 23:25:17 +09:00
parent 7a0b0b8bd4
commit 2dab3733fd
4 changed files with 100 additions and 1 deletions

View File

@@ -139,6 +139,15 @@
:label="t('view.settings.general.logging.empty_avatar')"
:value="logEmptyAvatars"
@change="setLogEmptyAvatars" />
<simple-switch
:label="t('view.settings.general.logging.auto_login_delay')"
:value="autoLoginDelayEnabled"
@change="setAutoLoginDelayEnabled" />
<div v-if="autoLoginDelayEnabled" class="options-container-item">
<Button size="sm" variant="outline" @click="promptAutoLoginDelaySeconds">
{{ t('view.settings.general.logging.auto_login_delay_button') }}
</Button>
</div>
</div>
<div class="options-container">
<span class="header">{{ t('view.settings.general.automation.header') }}</span>
@@ -333,6 +342,7 @@
udonExceptionLogging,
logResourceLoad,
logEmptyAvatars,
autoLoginDelayEnabled,
autoStateChangeEnabled,
autoStateChangeAloneStatus,
autoStateChangeCompanyStatus,
@@ -350,6 +360,8 @@
setUdonExceptionLogging,
setLogResourceLoad,
setLogEmptyAvatars,
setAutoLoginDelayEnabled,
promptAutoLoginDelaySeconds,
setAutoStateChangeEnabled,
setAutoStateChangeAloneStatus,
setAutoStateChangeCompanyStatus,