2026-07-07 14:21:30 +08:00
|
|
|
"""Application identity and release version."""
|
|
|
|
|
|
|
|
|
|
APP_NAME = "蝦皮圈優化助手"
|
|
|
|
|
APP_CODE_NAME = "cmshopee"
|
|
|
|
|
APP_VERSION = "0.1.0"
|
2026-07-07 17:58:28 +08:00
|
|
|
APP_UPDATE_CHECK_URL = "https://cm.833729.com/api/v1/client/releases/latest?platform=windows"
|
2026-07-07 14:21:30 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def display_name() -> str:
|
|
|
|
|
return f"{APP_NAME} v{APP_VERSION}"
|