Fix: remove hardcoded test version
This commit is contained in:
parent
81a4ef0f36
commit
b4de0d9eb4
2 changed files with 1 additions and 2 deletions
|
|
@ -159,7 +159,6 @@ class UpdateChecker(metaclass=Singleton):
|
||||||
LOG.info("Checking for application updates...")
|
LOG.info("Checking for application updates...")
|
||||||
|
|
||||||
current_version: str = APP_VERSION.lstrip("v")
|
current_version: str = APP_VERSION.lstrip("v")
|
||||||
current_version: str = "1.0.14"
|
|
||||||
|
|
||||||
async with async_client(timeout=10.0) as client:
|
async with async_client(timeout=10.0) as client:
|
||||||
response = await client.get(
|
response = await client.get(
|
||||||
|
|
|
||||||
|
|
@ -229,7 +229,7 @@ class Config(metaclass=Singleton):
|
||||||
static_ui_path: str = ""
|
static_ui_path: str = ""
|
||||||
"The path to the static UI files."
|
"The path to the static UI files."
|
||||||
|
|
||||||
check_for_updates: bool = False
|
check_for_updates: bool = True
|
||||||
"Check for application updates."
|
"Check for application updates."
|
||||||
|
|
||||||
new_version: str = ""
|
new_version: str = ""
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue