From 507f896cb3798a7f9c79e421e7e852b467c1e17e Mon Sep 17 00:00:00 2001 From: Ghost <62809003+Ghost6446@users.noreply.github.com> Date: Wed, 10 Jan 2024 18:20:50 +0100 Subject: [PATCH] update version --- Src/Api/film.py | 2 +- Src/Api/tv.py | 2 +- Src/Upload/__version__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Src/Api/film.py b/Src/Api/film.py index b600fbb..f6b49b9 100644 --- a/Src/Api/film.py +++ b/Src/Api/film.py @@ -59,7 +59,7 @@ def main_dw_film(id_film, title_name, domain): embed_content = get_iframe(id_film, domain) json_win_video, json_win_param = parse_content(embed_content) - # Select first availability video quaklity + # Select first availability video quality if json_win_param['token1080p'] != "": render_quality = "1080p" elif json_win_param['token720p'] != "": render_quality = "720p" elif json_win_param['token480p'] != "": render_quality = "480p" diff --git a/Src/Api/tv.py b/Src/Api/tv.py index 95a6755..1911b38 100644 --- a/Src/Api/tv.py +++ b/Src/Api/tv.py @@ -103,7 +103,7 @@ def dw_single_ep(tv_id, eps, index_ep_select, domain, token, tv_name, season_sel embed_content = get_iframe(tv_id, eps[index_ep_select]['id'], domain, token) json_win_video, json_win_param = parse_content(embed_content) - # Select first availability video quality + # Select first availability video quality for single ep if json_win_param['token1080p'] != "": render_quality = "1080p" elif json_win_param['token720p'] != "": render_quality = "720p" elif json_win_param['token480p'] != "": render_quality = "480p" diff --git a/Src/Upload/__version__.py b/Src/Upload/__version__.py index 717f476..d005341 100644 --- a/Src/Upload/__version__.py +++ b/Src/Upload/__version__.py @@ -1,5 +1,5 @@ __title__ = 'Streaming_community' -__version__ = 'v0.7.0' +__version__ = 'v0.7.5' __author__ = 'Ghost6446' __description__ = 'A command-line program to download film' __license__ = 'MIT License'