Fixed: Change Host GUID, other Sonarr references (#307)

* Fixed: Change Host GUID, other Sonarr references

* fixup! Random GUID and Copyright Year
This commit is contained in:
Qstick 2018-04-21 14:34:31 -04:00 committed by GitHub
parent f745b7bdbe
commit e73936184b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 14 additions and 14 deletions

View File

@ -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

View File

@ -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}
/>

View File

@ -189,7 +189,7 @@
<label for="rememberMe">Remember Me</label>
</span>
<a href="https://github.com/Sonarr/Sonarr/wiki/Forgot-my-Password" class="forgot-password">Forgot your password?</a>
<a href="https://github.com/Lidarr/Lidarr/wiki/Forgot-my-Password" class="forgot-password">Forgot your password?</a>
</div>
<button type="submit" class="button">Login</button>
@ -202,7 +202,7 @@
<div class="copy">
<span>&copy;</span>
<span>2010-2017</span>
<span>2010-2018</span>
<span>-</span>
<span>Lidarr</span>
</div>

View File

@ -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("")]

View File

@ -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);
}
}

View File

@ -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+)(?<hash>\w+)", RegexOptions.Compiled);
private readonly INetshProvider _netshProvider;

View File

@ -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")]