mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-15 09:33:52 -07:00
Update internal URL's to point to lidarr.audio
This commit is contained in:
parent
80e8ef4c7a
commit
b7a46a9e51
8 changed files with 13 additions and 13 deletions
|
@ -91,7 +91,7 @@ namespace NzbDrone.Api.Calendar
|
||||||
{
|
{
|
||||||
// This will need to point to the hosted web site
|
// This will need to point to the hosted web site
|
||||||
// TODO
|
// TODO
|
||||||
ProductId = "-//Lidarr.tv//Lidarr//EN"
|
ProductId = "-//lidarr.audio//Lidarr//EN"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -174,7 +174,7 @@ namespace NzbDrone.Common.Test.Http
|
||||||
{
|
{
|
||||||
var file = GetTempFilePath();
|
var file = GetTempFilePath();
|
||||||
|
|
||||||
Assert.Throws<WebException>(() => Subject.DownloadFile("http://download.Lidarr.tv/wrongpath", file));
|
Assert.Throws<WebException>(() => Subject.DownloadFile("http://download.lidarr.audio/wrongpath", file));
|
||||||
|
|
||||||
File.Exists(file).Should().BeFalse();
|
File.Exists(file).Should().BeFalse();
|
||||||
|
|
||||||
|
|
|
@ -12,10 +12,10 @@ namespace NzbDrone.Common.Cloud
|
||||||
{
|
{
|
||||||
public LidarrCloudRequestBuilder()
|
public LidarrCloudRequestBuilder()
|
||||||
{
|
{
|
||||||
Services = new HttpRequestBuilder("http://services.Lidarr.tv/v1/")
|
Services = new HttpRequestBuilder("http://services.lidarr.audio/v1/")
|
||||||
.CreateFactory();
|
.CreateFactory();
|
||||||
|
|
||||||
SkyHookTvdb = new HttpRequestBuilder("http://skyhook.Lidarr.tv/v1/tvdb/{route}/{language}/")
|
SkyHookTvdb = new HttpRequestBuilder("http://skyhook.lidarr.audio/v1/tvdb/{route}/{language}/")
|
||||||
.SetSegment("language", "en")
|
.SetSegment("language", "en")
|
||||||
.CreateFactory();
|
.CreateFactory();
|
||||||
}
|
}
|
||||||
|
|
|
@ -94,15 +94,15 @@ namespace NzbDrone.Common.Instrumentation
|
||||||
// if (updateClient)
|
// if (updateClient)
|
||||||
// {
|
// {
|
||||||
// dsn = RuntimeInfo.IsProduction
|
// dsn = RuntimeInfo.IsProduction
|
||||||
// ? "https://b85aa82c65b84b0e99e3b7c281438357:392b5bc007974147a922c5d841c47cf9@sentry.Lidarr.tv/11"
|
// ? "https://b85aa82c65b84b0e99e3b7c281438357:392b5bc007974147a922c5d841c47cf9@sentry.lidarr.audio/11"
|
||||||
// : "https://6168f0946aba4e60ac23e469ac08eac5:bd59e8454ccc454ea27a90cff1f814ca@sentry.Lidarr.tv/9";
|
// : "https://6168f0946aba4e60ac23e469ac08eac5:bd59e8454ccc454ea27a90cff1f814ca@sentry.lidarr.audio/9";
|
||||||
|
|
||||||
// }
|
// }
|
||||||
// else
|
// else
|
||||||
// {
|
// {
|
||||||
// dsn = RuntimeInfo.IsProduction
|
// dsn = RuntimeInfo.IsProduction
|
||||||
// ? "https://3e8a38b1a4df4de8b0453a724f5a1139:5a708dd75c724b32ae5128b6a895650f@sentry.Lidarr.tv/8"
|
// ? "https://3e8a38b1a4df4de8b0453a724f5a1139:5a708dd75c724b32ae5128b6a895650f@sentry.lidarr.audio/8"
|
||||||
// : "https://4ee3580e01d8407c96a7430fbc953512:5f2d07227a0b4fde99dea07041a3ff93@sentry.Lidarr.tv/10";
|
// : "https://4ee3580e01d8407c96a7430fbc953512:5f2d07227a0b4fde99dea07041a3ff93@sentry.lidarr.audio/10";
|
||||||
// }
|
// }
|
||||||
|
|
||||||
// var target = new SentryTarget(dsn)
|
// var target = new SentryTarget(dsn)
|
||||||
|
|
|
@ -4,7 +4,7 @@ using System.Runtime.InteropServices;
|
||||||
// Gets updated at build time by TeamCity to branch name
|
// Gets updated at build time by TeamCity to branch name
|
||||||
[assembly: AssemblyConfiguration("debug")]
|
[assembly: AssemblyConfiguration("debug")]
|
||||||
|
|
||||||
[assembly: AssemblyCompany("lidarr.tv")]
|
[assembly: AssemblyCompany("lidarr.audio")]
|
||||||
[assembly: AssemblyProduct("NzbDrone")]
|
[assembly: AssemblyProduct("NzbDrone")]
|
||||||
[assembly: AssemblyCopyright("GNU General Public v3")]
|
[assembly: AssemblyCopyright("GNU General Public v3")]
|
||||||
[assembly: AssemblyTrademark("")]
|
[assembly: AssemblyTrademark("")]
|
||||||
|
|
|
@ -54,7 +54,7 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.QBittorrentTests
|
||||||
protected void GivenRedirectToTorrent()
|
protected void GivenRedirectToTorrent()
|
||||||
{
|
{
|
||||||
var httpHeader = new HttpHeader();
|
var httpHeader = new HttpHeader();
|
||||||
httpHeader["Location"] = "http://test.Lidarr.tv/not-a-real-torrent.torrent";
|
httpHeader["Location"] = "http://test.lidarr.audio/not-a-real-torrent.torrent";
|
||||||
|
|
||||||
Mocker.GetMock<IHttpClient>()
|
Mocker.GetMock<IHttpClient>()
|
||||||
.Setup(s => s.Get(It.Is<HttpRequest>(h => h.Url.FullUri == _downloadUrl)))
|
.Setup(s => s.Get(It.Is<HttpRequest>(h => h.Url.FullUri == _downloadUrl)))
|
||||||
|
|
|
@ -107,7 +107,7 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.UTorrentTests
|
||||||
protected void GivenRedirectToTorrent()
|
protected void GivenRedirectToTorrent()
|
||||||
{
|
{
|
||||||
var httpHeader = new HttpHeader();
|
var httpHeader = new HttpHeader();
|
||||||
httpHeader["Location"] = "http://test.Lidarr.tv/not-a-real-torrent.torrent";
|
httpHeader["Location"] = "http://test.lidarr.audio/not-a-real-torrent.torrent";
|
||||||
|
|
||||||
Mocker.GetMock<IHttpClient>()
|
Mocker.GetMock<IHttpClient>()
|
||||||
.Setup(s => s.Get(It.Is<HttpRequest>(h => h.Url.ToString() == _downloadUrl)))
|
.Setup(s => s.Get(It.Is<HttpRequest>(h => h.Url.ToString() == _downloadUrl)))
|
||||||
|
|
|
@ -36,7 +36,7 @@ namespace NzbDrone.Core.Test.UpdateTests
|
||||||
_updatePackage = new UpdatePackage
|
_updatePackage = new UpdatePackage
|
||||||
{
|
{
|
||||||
FileName = "NzbDrone.develop.2.0.0.0.tar.gz",
|
FileName = "NzbDrone.develop.2.0.0.0.tar.gz",
|
||||||
Url = "http://download.Lidarr.tv/v2/develop/mono/NzbDrone.develop.tar.gz",
|
Url = "http://download.lidarr.audio/v2/develop/mono/NzbDrone.develop.tar.gz",
|
||||||
Version = new Version("2.0.0.0")
|
Version = new Version("2.0.0.0")
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -46,7 +46,7 @@ namespace NzbDrone.Core.Test.UpdateTests
|
||||||
_updatePackage = new UpdatePackage
|
_updatePackage = new UpdatePackage
|
||||||
{
|
{
|
||||||
FileName = "NzbDrone.develop.2.0.0.0.zip",
|
FileName = "NzbDrone.develop.2.0.0.0.zip",
|
||||||
Url = "http://download.Lidarr.tv/v2/develop/windows/NzbDrone.develop.zip",
|
Url = "http://download.lidarr.audio/v2/develop/windows/NzbDrone.develop.zip",
|
||||||
Version = new Version("2.0.0.0")
|
Version = new Version("2.0.0.0")
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue