- To activate this option, you need to go to the new Plex settings in the sidebar and enter your Plex server details.
- After subtitles are downloaded, the 'added date' for the movie will be set to the current time. This helps with discovering movies in situations where you downloaded a movie some time ago and subtitles become available now.
pull/2825/head
destpstrzy 3 months ago
parent 37f0f9f6bc
commit 0c0bf3ab78

@ -219,6 +219,9 @@ validators = [
Validator('plex.ip', must_exist=True, default='127.0.0.1', is_type_of=str),
Validator('plex.port', must_exist=True, default=32400, is_type_of=int, gte=1, lte=65535),
Validator('plex.ssl', must_exist=True, default=False, is_type_of=bool),
Validator('plex.apikey', must_exist=True, default='', is_type_of=str),
Validator('plex.movie_library', must_exist=True, default='', is_type_of=str),
Validator('plex.set_added', must_exist=True, default=False, is_type_of=bool),
# proxy section
Validator('proxy.type', must_exist=True, default=None, is_type_of=(NoneType, str),

@ -1,43 +0,0 @@
import { SelectorOption } from "@/components";
export const pageSizeOptions: SelectorOption<number>[] = [
{
label: "25",
value: 25,
},
{
label: "50",
value: 50,
},
{
label: "100",
value: 100,
},
{
label: "250",
value: 250,
},
{
label: "500",
value: 500,
},
{
label: "1000",
value: 1000,
},
];
export const colorSchemeOptions: SelectorOption<string>[] = [
{
label: "Auto",
value: "auto",
},
{
label: "Light",
value: "light",
},
{
label: "Dark",
value: "dark",
},
];
Loading…
Cancel
Save