Skip to content

Commit

Permalink
Fixed: Change Host GUID, other Sonarr references (#307)
Browse files Browse the repository at this point in the history
* Fixed: Change Host GUID, other Sonarr references

* fixup! Random GUID and Copyright Year
  • Loading branch information
Qstick committed Apr 21, 2018
1 parent f745b7b commit e739361
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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
2 changes: 1 addition & 1 deletion frontend/src/Settings/Indexers/Options/IndexerOptions.js
Expand Up @@ -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}
/>
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/login.html
Expand Up @@ -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>

Expand All @@ -202,7 +202,7 @@

<div class="copy">
<span>&copy;</span>
<span>2010-2017</span>
<span>2010-2018</span>
<span>-</span>
<span>Lidarr</span>
</div>
Expand Down
8 changes: 4 additions & 4 deletions 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("")]

Expand Down
4 changes: 2 additions & 2 deletions src/NzbDrone.Core/Datastore/DbFactory.cs
Expand Up @@ -117,10 +117,10 @@ private void CreateMain(string connectionString, MigrationContext migrationConte

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

Expand Down
4 changes: 2 additions & 2 deletions 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;
Expand All @@ -12,7 +12,7 @@ public interface ISslAdapter

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;
Expand Down
4 changes: 2 additions & 2 deletions src/NzbDrone.Host/Properties/AssemblyInfo.cs
@@ -1,10 +1,10 @@
using System.Reflection;
using System.Reflection;
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("Lidarr.exe")]
[assembly: Guid("C2172AF4-F9A6-4D91-BAEE-C2E4EE680613")]
[assembly: Guid("87CAF14C-6750-42DB-B6A0-3BB826315E91")]

0 comments on commit e739361

Please sign in to comment.