Skip to content

Commit

Permalink
Config description updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Dec 4, 2024
1 parent e362672 commit 41b7b30
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 10 deletions.
16 changes: 8 additions & 8 deletions config.example.toml
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,10 @@ SearchAgainOnSearchCompletion = true
# Use Temp profile for missing
UseTempForMissing = false

# Main quality profile
# Main quality profile (To pair quality profiles, ensure they are in the same order as in the temp profiles)
MainQualityProfile = []

# Temp quality profile
# Temp quality profile (To pair quality profiles, ensure they are in the same order as in the main profiles)
TempQualityProfile = []

# Search by series instead of by episode (This ignored the QualityUnmetSearch and CustomFormatUnmetSearch setting)
Expand Down Expand Up @@ -354,10 +354,10 @@ SearchAgainOnSearchCompletion = true
# Use Temp profile for missing
UseTempForMissing = false

# Main quality profile
# Main quality profile (To pair quality profiles, ensure they are in the same order as in the temp profiles)
MainQualityProfile = []

# Temp quality profile
# Temp quality profile (To pair quality profiles, ensure they are in the same order as in the main profiles)
TempQualityProfile = []

# Search by series instead of by episode (This ignored the QualityUnmetSearch and CustomFormatUnmetSearch setting)
Expand Down Expand Up @@ -559,10 +559,10 @@ SearchAgainOnSearchCompletion = true
# Use Temp profile for missing
UseTempForMissing = false

# Main quality profile
# Main quality profile (To pair quality profiles, ensure they are in the same order as in the temp profiles)
MainQualityProfile = []

# Temp quality profile
# Temp quality profile (To pair quality profiles, ensure they are in the same order as in the main profiles)
TempQualityProfile = []


Expand Down Expand Up @@ -771,10 +771,10 @@ SearchAgainOnSearchCompletion = true
# Use Temp profile for missing
UseTempForMissing = false

# Main quality profile
# Main quality profile (To pair quality profiles, ensure they are in the same order as in the temp profiles)
MainQualityProfile = []

# Temp quality profile
# Temp quality profile (To pair quality profiles, ensure they are in the same order as in the main profiles)
TempQualityProfile = []


Expand Down
14 changes: 12 additions & 2 deletions qBitrr/gen_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -621,8 +621,18 @@ def _gen_default_search_table(category: str, cat_default: Table):
True,
)
_gen_default_line(search_table, "Use Temp profile for missing", "UseTempForMissing", False)
_gen_default_line(search_table, "Main quality profile", "MainQualityProfile", [])
_gen_default_line(search_table, "Temp quality profile", "TempQualityProfile", [])
_gen_default_line(
search_table,
"Main quality profile (To pair quality profiles, ensure they are in the same order as in the temp profiles)",
"MainQualityProfile",
[],
)
_gen_default_line(
search_table,
"Temp quality profile (To pair quality profiles, ensure they are in the same order as in the main profiles)",
"TempQualityProfile",
[],
)
if "sonarr" in category.lower():
_gen_default_line(
search_table,
Expand Down

0 comments on commit 41b7b30

Please sign in to comment.