From 3b06e2e86e32701a203c68a1da434bef4d164105 Mon Sep 17 00:00:00 2001 From: Lasith Manujitha Date: Tue, 5 Nov 2024 02:13:54 +0530 Subject: [PATCH 1/2] rel: Bump version to 2.0.0 --- plugin.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.json b/plugin.json index 66ea4bd..9bbdd3d 100644 --- a/plugin.json +++ b/plugin.json @@ -4,7 +4,7 @@ "Name": "AnyVideo Downloader", "Description": "Plugin for downloading videos from YouTube, Facebook, Twitter, Instagram, and many other websites.", "Author": "z1nc0r3", - "Version": "1.1.1", + "Version": "2.0.0", "Language": "python", "Website": "https://github.com/z1nc0r3/AnyVideo-Downloader-Flow-Plugin", "IcoPath": "Images\\app.png", From 792a82ece21a1c9b2fd5e5ef4e8ab851d94867b6 Mon Sep 17 00:00:00 2001 From: Lasith Manujitha Date: Tue, 5 Nov 2024 02:25:39 +0530 Subject: [PATCH 2/2] chore: Update README for version 2.0.0 --- README.md | 15 ++++++++++----- SettingsTemplate.yaml | 2 +- plugin/main.py | 2 +- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index d0c2f28..c901374 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# AnyVideo Downloader v1.1.1 🔻 +# AnyVideo Downloader v2.0.0 🔻 ![](https://github.com/user-attachments/assets/18a6cff4-ee86-4322-a72d-c6a02628503a) @@ -14,8 +14,15 @@ ## Features 🪄 - Supports 1000+ websites -- Video quality selector +- Download videos in various formats - Audio-only support +- Custom download location +- Preferred video/audio format selection +- Custom sorting of the result list + - Sort by **Resolution**_(default)_ + - Sort by **File size** _(NB: The file size won't be available for some videos)_ + - Sort by **Total bitrate** + - Sort by **FPS** _(NB: The FPS won't be available for some videos)_ ## Usage 👤 @@ -27,6 +34,4 @@ ## Upcoming features 💚 --[] Custom Download location --[] Adding Download parameter configurations --[] Exclude file formats from the result list +-[] Simple mode for quick downloads - This will allow users to download video/audio with the best quality available without any additional settings diff --git a/SettingsTemplate.yaml b/SettingsTemplate.yaml index 8cb1b47..40b2248 100644 --- a/SettingsTemplate.yaml +++ b/SettingsTemplate.yaml @@ -14,7 +14,7 @@ body: options: - Resolution - File Size - - Total Bit Rate + - Total Bitrate - FPS - type: dropdown attributes: diff --git a/plugin/main.py b/plugin/main.py index f64fd37..c151c26 100644 --- a/plugin/main.py +++ b/plugin/main.py @@ -181,7 +181,7 @@ def query(query: str) -> ResultResponse: formats = sort_by_resolution(formats) elif sort == "File Size": formats = sort_by_size(formats) - elif sort == "Total Bit Rate": + elif sort == "Total Bitrate": formats = sort_by_tbr(formats) elif sort == "FPS": formats = sort_by_fps(formats)