qBitrr2 5.4.0__py3-none-any.whl → 5.4.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- qBitrr/arss.py +2 -2
- qBitrr/bundled_data.py +2 -2
- qBitrr/webui.py +12 -0
- {qbitrr2-5.4.0.dist-info → qbitrr2-5.4.1.dist-info}/METADATA +1 -1
- {qbitrr2-5.4.0.dist-info → qbitrr2-5.4.1.dist-info}/RECORD +9 -9
- {qbitrr2-5.4.0.dist-info → qbitrr2-5.4.1.dist-info}/WHEEL +0 -0
- {qbitrr2-5.4.0.dist-info → qbitrr2-5.4.1.dist-info}/entry_points.txt +0 -0
- {qbitrr2-5.4.0.dist-info → qbitrr2-5.4.1.dist-info}/licenses/LICENSE +0 -0
- {qbitrr2-5.4.0.dist-info → qbitrr2-5.4.1.dist-info}/top_level.txt +0 -0
qBitrr/arss.py
CHANGED
|
@@ -2547,7 +2547,7 @@ class Arr:
|
|
|
2547
2547
|
JSONDecodeError,
|
|
2548
2548
|
):
|
|
2549
2549
|
continue
|
|
2550
|
-
if episode
|
|
2550
|
+
if episode.get("monitored", True) or self.search_unmonitored:
|
|
2551
2551
|
while True:
|
|
2552
2552
|
try:
|
|
2553
2553
|
series_info = episode.get("series") or {}
|
|
@@ -2701,7 +2701,7 @@ class Arr:
|
|
|
2701
2701
|
else None
|
|
2702
2702
|
)
|
|
2703
2703
|
AirDateUtc = episode["airDateUtc"]
|
|
2704
|
-
Monitored = episode
|
|
2704
|
+
Monitored = episode.get("monitored", True)
|
|
2705
2705
|
QualityMet = not QualityUnmet if db_entry["hasFile"] else False
|
|
2706
2706
|
customFormatMet = customFormat >= minCustomFormat
|
|
2707
2707
|
|
qBitrr/bundled_data.py
CHANGED
qBitrr/webui.py
CHANGED
|
@@ -1190,6 +1190,18 @@ class WebUI:
|
|
|
1190
1190
|
response.headers["Expires"] = "0"
|
|
1191
1191
|
return response
|
|
1192
1192
|
|
|
1193
|
+
@app.get("/sw.js")
|
|
1194
|
+
def service_worker():
|
|
1195
|
+
# Service worker must be served from root path for PWA support
|
|
1196
|
+
from flask import make_response
|
|
1197
|
+
|
|
1198
|
+
response = make_response(redirect("/static/sw.js"))
|
|
1199
|
+
# Prevent caching of the service worker to ensure updates are picked up
|
|
1200
|
+
response.headers["Cache-Control"] = "no-cache, no-store, must-revalidate"
|
|
1201
|
+
response.headers["Pragma"] = "no-cache"
|
|
1202
|
+
response.headers["Expires"] = "0"
|
|
1203
|
+
return response
|
|
1204
|
+
|
|
1193
1205
|
def _processes_payload() -> dict[str, Any]:
|
|
1194
1206
|
procs = []
|
|
1195
1207
|
search_activity_map = fetch_search_activities()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: qBitrr2
|
|
3
|
-
Version: 5.4.
|
|
3
|
+
Version: 5.4.1
|
|
4
4
|
Summary: Intelligent automation for qBittorrent and *Arr apps (Radarr/Sonarr/Lidarr) - health monitoring, instant imports, quality upgrades, request integration
|
|
5
5
|
Home-page: https://github.com/Feramance/qBitrr
|
|
6
6
|
Author: Feramance
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
qBitrr/__init__.py,sha256=smiPIV7d2lMJ_KTtFdAVlxLEBobFTheILdgry1iqpjQ,405
|
|
2
|
-
qBitrr/arss.py,sha256=
|
|
2
|
+
qBitrr/arss.py,sha256=350czDlTAjNjOjmD3MwyGVyTTdtIkYWq9Op--pf_qyg,306059
|
|
3
3
|
qBitrr/auto_update.py,sha256=hVAvAlKEdOHm6AJLlKvtkklbQhjotVcFOCH-MTigHQM,4419
|
|
4
|
-
qBitrr/bundled_data.py,sha256=
|
|
4
|
+
qBitrr/bundled_data.py,sha256=x7l2nQxu9ajAcAjVnwaC4Gbh_o5DoFw6FuJtq1RjHSk,221
|
|
5
5
|
qBitrr/config.py,sha256=e_UL8Jjz2hWAhT53Du8XZpvyY4ULC5mpyus_7i2An18,6306
|
|
6
6
|
qBitrr/db_lock.py,sha256=SRCDIoqg-AFLU-VDChAmGdfx8nhgLGETn6XKF3RdJT4,2449
|
|
7
7
|
qBitrr/env_config.py,sha256=299u_uEoyxlM_ceTD0Z_i41JdYjSHmqO6FKe7qGFgTM,2866
|
|
@@ -15,10 +15,10 @@ qBitrr/search_activity_store.py,sha256=_7MD7fFna4uTSo_pRT7DqoytSVz7tPoU9D2AV2mn-
|
|
|
15
15
|
qBitrr/tables.py,sha256=cumrb5aqJ0Uufu2biDPCIgu1_TP0hlHVi7dgAQKK_bM,3969
|
|
16
16
|
qBitrr/utils.py,sha256=T10win016yHwMMJlJ4yuPTRUI9m-AS_a_MouiAJAtC8,8190
|
|
17
17
|
qBitrr/versioning.py,sha256=00um_zKic8mMrNZ7IHEUPx4ju5Yi_TWCgZxl81IfMaM,3362
|
|
18
|
-
qBitrr/webui.py,sha256=
|
|
19
|
-
qbitrr2-5.4.
|
|
20
|
-
qbitrr2-5.4.
|
|
21
|
-
qbitrr2-5.4.
|
|
22
|
-
qbitrr2-5.4.
|
|
23
|
-
qbitrr2-5.4.
|
|
24
|
-
qbitrr2-5.4.
|
|
18
|
+
qBitrr/webui.py,sha256=YDtfQOfISvu1E6WgPwFV1U9GaNzzx2djaUFTQF-IAFs,106774
|
|
19
|
+
qbitrr2-5.4.1.dist-info/licenses/LICENSE,sha256=P978aVGi7dPbKz8lfvdiryOS5IjTAU7AA47XhBhVBlI,1066
|
|
20
|
+
qbitrr2-5.4.1.dist-info/METADATA,sha256=JGpsWhDLIHIVxf46yGFyv7ehr-vhnU85bXGcG4wk2Dk,33177
|
|
21
|
+
qbitrr2-5.4.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
22
|
+
qbitrr2-5.4.1.dist-info/entry_points.txt,sha256=MIR-l5s31VBs9qlv3HiAaMdpOOyy0MNGfM7Ib1-fKeQ,43
|
|
23
|
+
qbitrr2-5.4.1.dist-info/top_level.txt,sha256=jIINodarzsPcQeTf-vvK8-_g7cQ8CvxEg41ms14K97g,7
|
|
24
|
+
qbitrr2-5.4.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|