mirror of
https://github.com/gabehf/Tdarr_Plugins.git
synced 2026-03-09 15:38:19 -07:00
Add options dropdown
This commit is contained in:
parent
e4c79d69a0
commit
a9c579c0f2
3 changed files with 20 additions and 4 deletions
|
|
@ -30,7 +30,11 @@ const details = () => ({
|
|||
type: 'boolean',
|
||||
defaultValue: false,
|
||||
inputUI: {
|
||||
type: 'text',
|
||||
type: 'dropdown',
|
||||
options: [
|
||||
'false',
|
||||
'true',
|
||||
]
|
||||
},
|
||||
tooltip: `Make the file conform to output containers requirements.
|
||||
\\n Drop hdmv_pgs_subtitle/eia_608/subrip/timed_id3 for MP4.
|
||||
|
|
|
|||
|
|
@ -14,7 +14,11 @@ const details = () => ({
|
|||
type: 'boolean',
|
||||
defaultValue: false,
|
||||
inputUI: {
|
||||
type: 'text',
|
||||
type: 'dropdown',
|
||||
options: [
|
||||
'false',
|
||||
'true',
|
||||
]
|
||||
},
|
||||
tooltip: `Specify if audio titles should be checked & cleaned. Optional.
|
||||
\\nExample:\\n
|
||||
|
|
@ -28,7 +32,11 @@ const details = () => ({
|
|||
type: 'boolean',
|
||||
defaultValue: false,
|
||||
inputUI: {
|
||||
type: 'text',
|
||||
type: 'dropdown',
|
||||
options: [
|
||||
'false',
|
||||
'true',
|
||||
]
|
||||
},
|
||||
tooltip: `Specify if subtitle titles should be checked & cleaned. Optional.
|
||||
\\nExample:\\n
|
||||
|
|
|
|||
|
|
@ -29,7 +29,11 @@ const details = () => ({
|
|||
type: 'boolean',
|
||||
defaultValue: false,
|
||||
inputUI: {
|
||||
type: 'text',
|
||||
type: 'dropdown',
|
||||
options: [
|
||||
'false',
|
||||
'true',
|
||||
]
|
||||
},
|
||||
tooltip: `Specify if subtitle tracks that contain commentary/description should be removed.
|
||||
\\nExample:\\n
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue