13 lines
389 B
Python
13 lines
389 B
Python
"""
|
|
Version information for UmamusumeCardManager
|
|
This file is the single source of truth for the application version.
|
|
"""
|
|
|
|
# Semantic versioning: MAJOR.MINOR.PATCH
|
|
VERSION: str = "13.0.0"
|
|
|
|
# Application metadata
|
|
APP_NAME: str = "UmamusumeCardManager"
|
|
GITHUB_REPO: str = "kiyreload27/UmamusumeCardManager"
|
|
GITHUB_API_URL: str = f"https://api.github.com/repos/{GITHUB_REPO}/releases/latest"
|