mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
Update default formats
This commit is contained in:
parent
3e676d2073
commit
6d1766d81a
@ -38,13 +38,11 @@ private void ConvertConfig(IDbConnection conn, IDbTransaction tran)
|
|||||||
|
|
||||||
movieTitlePattern = "{Movie Title}";
|
movieTitlePattern = "{Movie Title}";
|
||||||
|
|
||||||
|
var standardMovieFormat = string.Format("{0} {1} {2}", movieTitlePattern,
|
||||||
|
movieYearPattern,
|
||||||
|
qualityFormat);
|
||||||
|
|
||||||
movieTitlePattern += " ";
|
var movieFolderFormat = string.Format("{0} {1}", movieTitlePattern, movieYearPattern);
|
||||||
|
|
||||||
var standardMovieFormat = string.Format("{0}{1}", movieTitlePattern,
|
|
||||||
qualityFormat);
|
|
||||||
|
|
||||||
var movieFolderFormat = string.Format("{0}{1}", movieTitlePattern, movieYearPattern);
|
|
||||||
|
|
||||||
|
|
||||||
using (IDbCommand updateCmd = conn.CreateCommand())
|
using (IDbCommand updateCmd = conn.CreateCommand())
|
||||||
|
@ -14,8 +14,8 @@ public class NamingConfig : ModelBase
|
|||||||
AnimeEpisodeFormat = "{Series Title} - S{season:00}E{episode:00} - {Episode Title} {Quality Full}",
|
AnimeEpisodeFormat = "{Series Title} - S{season:00}E{episode:00} - {Episode Title} {Quality Full}",
|
||||||
SeriesFolderFormat = "{Series Title}",
|
SeriesFolderFormat = "{Series Title}",
|
||||||
SeasonFolderFormat = "Season {season}",
|
SeasonFolderFormat = "Season {season}",
|
||||||
MovieFolderFormat = "{Movie Title}",
|
MovieFolderFormat = "{Movie Title} ({Release Year})",
|
||||||
StandardMovieFormat = "{Movie Title} {Quality Full}",
|
StandardMovieFormat = "{Movie Title} ({Release Year}) {Quality Full}",
|
||||||
};
|
};
|
||||||
|
|
||||||
public bool RenameEpisodes { get; set; }
|
public bool RenameEpisodes { get; set; }
|
||||||
|
Loading…
Reference in New Issue
Block a user