-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from z1nc0r3/more-plugin-settings
Feat: Introduce more plugin settings (sorting, preferred format, etc)
- Loading branch information
Showing
4 changed files
with
211 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,42 @@ | ||
body: | ||
- type: input | ||
attributes: | ||
name: download_path | ||
label: 'Download path:' | ||
defaultValue: "%USERPROFILE%\\Downloads" | ||
- type: input | ||
attributes: | ||
name: download_path | ||
label: "Download path:" | ||
description: "Enter the path where you want to save the downloaded files." | ||
defaultValue: "%USERPROFILE%\\Downloads" | ||
- type: dropdown | ||
attributes: | ||
name: sorting_order | ||
label: "Sorting order:" | ||
defaultValue: "Resolution" | ||
description: "Select the sorting order for the results." | ||
options: | ||
- Resolution | ||
- File Size | ||
- Total Bit Rate | ||
- FPS | ||
- type: dropdown | ||
attributes: | ||
name: preferred_video_format | ||
label: "Preferred Video format:" | ||
defaultValue: "mp4" | ||
description: "Select the preferred video format for downloading videos." | ||
options: | ||
- mp4 | ||
- mkv | ||
- avi | ||
- flv | ||
- webm | ||
- type: dropdown | ||
attributes: | ||
name: preferred_audio_format | ||
label: "Preferred Audio format:" | ||
defaultValue: "mp3" | ||
description: "Select the preferred audio format for downloading audio." | ||
options: | ||
- mp3 | ||
- m4a | ||
- wav | ||
- flac | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters