fix(app): 修复 CLI 模式 KeyError 异常

Closes #341
This commit is contained in:
Quan
2026-02-09 19:00:22 +08:00
parent afaf2fb459
commit 27472257a8
5 changed files with 39 additions and 29 deletions

View File

@@ -1,8 +1,8 @@
from pathlib import Path
VERSION_MAJOR = 2
VERSION_MINOR = 7
VERSION_BETA = False
VERSION_MINOR = 8
VERSION_BETA = True
__VERSION__ = f"{VERSION_MAJOR}.{VERSION_MINOR}.{'beta' if VERSION_BETA else 'stable'}"
ROOT = Path(__file__).resolve().parent.parent.parent.joinpath("Volume")
ROOT.mkdir(exist_ok=True)