change: new guide urls for sonarr and radarr

Release profiles and quality definition guide URLs changed.
recyclarr
Robert Dailey 3 years ago
parent dc6bcdb430
commit ebf42622b8

@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Changed
- Sonarr: Use new URL for release profile guide.
- Sonarr: Use new URL for quality definition guide.
- Radarr: Use new URL for quality definition guide.
## [1.6.0] - 2021-05-31
### Added

@ -17,7 +17,7 @@ namespace Trash.Radarr.QualityDefinition
public async Task<string> GetMarkdownData()
{
return await
"https://raw.githubusercontent.com/TRaSH-/Guides/master/docs/Radarr/V3/Radarr-Quality-Settings-File-Size.md"
"https://raw.githubusercontent.com/TRaSH-/Guides/master/docs/Radarr/Radarr-Quality-Settings-File-Size.md"
.GetStringAsync();
}

@ -17,7 +17,7 @@ namespace Trash.Sonarr.QualityDefinition
public async Task<string> GetMarkdownData()
{
return await
"https://raw.githubusercontent.com/TRaSH-/Guides/master/docs/Sonarr/V3/Sonarr-Quality-Settings-File-Size.md"
"https://raw.githubusercontent.com/TRaSH-/Guides/master/docs/Sonarr/Sonarr-Quality-Settings-File-Size.md"
.GetStringAsync();
}

@ -117,7 +117,7 @@ namespace Trash.Sonarr.ReleaseProfile
private Url BuildUrl(ReleaseProfileType profileName)
{
return "https://raw.githubusercontent.com/TRaSH-/Guides/master/docs/Sonarr/V3".AppendPathSegment(
return "https://raw.githubusercontent.com/TRaSH-/Guides/master/docs/Sonarr".AppendPathSegment(
$"{_markdownDocNames[profileName]}.md");
}

Loading…
Cancel
Save