mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
New: Added a single period as a separator when naming episodes.
This commit is contained in:
parent
5ed53008c6
commit
8618117926
3 changed files with 66 additions and 0 deletions
|
@ -23,6 +23,9 @@ function createSingleEpisodeExample() {
|
|||
|
||||
if ($("#SeparatorStyle option:selected").val() == 1)
|
||||
separator = ' ';
|
||||
|
||||
if ($("#SeparatorStyle option:selected").val() == 2)
|
||||
separator = '.';
|
||||
|
||||
if ($('#SeriesName').attr('checked')) {
|
||||
result += 'Series Name';
|
||||
|
@ -52,6 +55,9 @@ function createMultiEpisodeExample() {
|
|||
|
||||
if ($("#SeparatorStyle option:selected").val() == 1)
|
||||
separator = ' ';
|
||||
|
||||
if ($("#SeparatorStyle option:selected").val() == 2)
|
||||
separator = '.';
|
||||
|
||||
if ($('#SeriesName').attr('checked')) {
|
||||
result += 'Series Name';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue