Updates application version and poll interval

Increments the application version number to reflect the latest changes.

Reduces the qBittorrent polling interval to facilitate quicker updates.
This commit is contained in:
OusmBlueNinja
2025-06-04 15:22:56 -05:00
parent d1f910b629
commit 7af88d5694
2 changed files with 3 additions and 3 deletions

4
app.py
View File

@@ -1,7 +1,7 @@
# app.py
local_version = "1.0.22"
local_version = "1.0.23"
@@ -234,7 +234,7 @@ outdated = check_outdated()
def version_check_loop():
while True:
check_outdated()
time.sleep(3600) # wait for one hour
time.sleep(60) # wait for one hour
# ─── QBITTORRENT POLLING ─────────────────────────────────────────────────────────

View File

@@ -1 +1 @@
1.0.22
1.0.23