feat: allow skipping blank spaces in article practice mode

This commit is contained in:
Zyronon
2025-11-14 03:39:33 +00:00
parent 842838aba0
commit 6696d2f461
5 changed files with 34 additions and 15 deletions

View File

@@ -62,7 +62,9 @@ async function init() {
store.load = true
setTheme(settingStore.theme)
if (!settingStore.first) {
if (settingStore.first) {
set(APP_VERSION.key,APP_VERSION.version)
}else {
get(APP_VERSION.key).then(r => {
runtimeStore.isNew = r ? (APP_VERSION.version > Number(r)) : true
})