1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

add open subtitle option to only download subtitles that are a perfect match

This commit is contained in:
Luke Pulverenti 2016-04-07 00:09:32 -04:00
parent 926cffa55f
commit 0fd15ae405
4 changed files with 13 additions and 4 deletions

View file

@ -7,6 +7,7 @@
$('#chkSkipIfGraphicalSubsPresent', page).checked(config.SkipIfEmbeddedSubtitlesPresent);
$('#chkSkipIfAudioTrackPresent', page).checked(config.SkipIfAudioTrackMatches);
$('#chkRequirePerfectMatch', page).checked(config.RequirePerfectMatch);
$('#txtOpenSubtitleUsername', page).val(config.OpenSubtitlesUsername);
$('#txtOpenSubtitlePassword', page).val('');
@ -50,6 +51,7 @@
config.SkipIfEmbeddedSubtitlesPresent = $('#chkSkipIfGraphicalSubsPresent', form).checked();
config.SkipIfAudioTrackMatches = $('#chkSkipIfAudioTrackPresent', form).checked();
config.RequirePerfectMatch = $('#chkRequirePerfectMatch', form).checked();
config.OpenSubtitlesUsername = $('#txtOpenSubtitleUsername', form).val();