From e73936184b12cc6f6fdc59b3f49ac9a6296da59c Mon Sep 17 00:00:00 2001 From: Qstick Date: Sat, 21 Apr 2018 14:34:31 -0400 Subject: [PATCH] Fixed: Change Host GUID, other Sonarr references (#307) * Fixed: Change Host GUID, other Sonarr references * fixup! Random GUID and Copyright Year --- README.md | 2 +- frontend/src/Settings/Indexers/Options/IndexerOptions.js | 2 +- frontend/src/login.html | 4 ++-- src/Lidarr.Http/Properties/AssemblyInfo.cs | 8 ++++---- src/NzbDrone.Core/Datastore/DbFactory.cs | 4 ++-- src/NzbDrone.Host/AccessControl/SslAdapter.cs | 4 ++-- src/NzbDrone.Host/Properties/AssemblyInfo.cs | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index d926d3404..968555052 100644 --- a/README.md +++ b/README.md @@ -63,4 +63,4 @@ Support this project by becoming a sponsor. Your logo will show up here with a l ### License * [GNU GPL v3](http://www.gnu.org/licenses/gpl.html) -* Copyright 2010-2017 +* Copyright 2010-2018 diff --git a/frontend/src/Settings/Indexers/Options/IndexerOptions.js b/frontend/src/Settings/Indexers/Options/IndexerOptions.js index b4b0de2b7..5611ec0b4 100644 --- a/frontend/src/Settings/Indexers/Options/IndexerOptions.js +++ b/frontend/src/Settings/Indexers/Options/IndexerOptions.js @@ -86,7 +86,7 @@ function IndexerOptions(props) { min={0} helpText="Interval in minutes. Set to zero to disable (this will stop all automatic release grabbing)" helpTextWarning="This will apply to all indexers, please follow the rules set forth by them" - helpLink="https://github.com/Sonarr/Sonarr/wiki/RSS-Sync" + helpLink="https://github.com/Lidarr/Lidarr/wiki/RSS-Sync" onChange={onInputChange} {...settings.rssSyncInterval} /> diff --git a/frontend/src/login.html b/frontend/src/login.html index ca88b5141..839baa614 100644 --- a/frontend/src/login.html +++ b/frontend/src/login.html @@ -189,7 +189,7 @@ - Forgot your password? + Forgot your password? @@ -202,7 +202,7 @@
© - 2010-2017 + 2010-2018 - Lidarr
diff --git a/src/Lidarr.Http/Properties/AssemblyInfo.cs b/src/Lidarr.Http/Properties/AssemblyInfo.cs index 9d340b973..63facfcae 100644 --- a/src/Lidarr.Http/Properties/AssemblyInfo.cs +++ b/src/Lidarr.Http/Properties/AssemblyInfo.cs @@ -1,16 +1,16 @@ -using System.Reflection; +using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. -[assembly: AssemblyTitle("Sonarr.Nancy")] +[assembly: AssemblyTitle("Lidarr.Nancy")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Sonarr.Nancy")] -[assembly: AssemblyCopyright("Copyright © 2016")] +[assembly: AssemblyProduct("Lidarr.Nancy")] +[assembly: AssemblyCopyright("Copyright © 2018")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/src/NzbDrone.Core/Datastore/DbFactory.cs b/src/NzbDrone.Core/Datastore/DbFactory.cs index 62edab9a4..2b0de561e 100644 --- a/src/NzbDrone.Core/Datastore/DbFactory.cs +++ b/src/NzbDrone.Core/Datastore/DbFactory.cs @@ -117,10 +117,10 @@ namespace NzbDrone.Core.Datastore if (OsInfo.IsOsx) { - throw new CorruptDatabaseException("Database file: {0} is corrupt, restore from backup if available. See: https://github.com/Sonarr/Sonarr/wiki/FAQ#i-use-sonarr-on-a-mac-and-it-suddenly-stopped-working-what-happened", e, fileName); + throw new CorruptDatabaseException("Database file: {0} is corrupt, restore from backup if available. See: https://github.com/Lidarr/Lidarr/wiki/FAQ#i-use-lidarr-on-a-mac-and-it-suddenly-stopped-working-what-happened", e, fileName); } - throw new CorruptDatabaseException("Database file: {0} is corrupt, restore from backup if available. See: https://github.com/Sonarr/Sonarr/wiki/FAQ#i-am-getting-an-error-database-disk-image-is-malformed", e, fileName); + throw new CorruptDatabaseException("Database file: {0} is corrupt, restore from backup if available. See: https://github.com/Lidarr/Lidarr/wiki/FAQ#i-am-getting-an-error-database-disk-image-is-malformed", e, fileName); } } diff --git a/src/NzbDrone.Host/AccessControl/SslAdapter.cs b/src/NzbDrone.Host/AccessControl/SslAdapter.cs index 12784ba87..27a60785e 100644 --- a/src/NzbDrone.Host/AccessControl/SslAdapter.cs +++ b/src/NzbDrone.Host/AccessControl/SslAdapter.cs @@ -1,4 +1,4 @@ -using System.Linq; +using System.Linq; using System.Text.RegularExpressions; using NLog; using NzbDrone.Core.Configuration; @@ -12,7 +12,7 @@ namespace NzbDrone.Host.AccessControl public class SslAdapter : ISslAdapter { - private const string APP_ID = "C2172AF4-F9A6-4D91-BAEE-C2E4EE680613"; + private const string APP_ID = "87CAF14C-6750-42DB-B6A0-3BB826315E91"; private static readonly Regex CertificateHashRegex = new Regex(@"^\s+(?:Certificate Hash\s+:\s+)(?\w+)", RegexOptions.Compiled); private readonly INetshProvider _netshProvider; diff --git a/src/NzbDrone.Host/Properties/AssemblyInfo.cs b/src/NzbDrone.Host/Properties/AssemblyInfo.cs index 0be525adf..f5ca86a7a 100644 --- a/src/NzbDrone.Host/Properties/AssemblyInfo.cs +++ b/src/NzbDrone.Host/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following @@ -6,5 +6,5 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Lidarr.exe")] -[assembly: Guid("C2172AF4-F9A6-4D91-BAEE-C2E4EE680613")] +[assembly: Guid("87CAF14C-6750-42DB-B6A0-3BB826315E91")]