11 lines
296 B
Python
11 lines
296 B
Python
"""Application identity and release version."""
|
|
|
|
APP_NAME = "蝦皮圈優化助手"
|
|
APP_CODE_NAME = "cmshopee"
|
|
APP_VERSION = "0.1.0"
|
|
APP_UPDATE_CHECK_URL = "https://cm.833729.com/api/v1/client/releases/latest?platform=windows"
|
|
|
|
|
|
def display_name() -> str:
|
|
return f"{APP_NAME} v{APP_VERSION}"
|