diff --git a/src/Jackett.Console/Program.cs b/src/Jackett.Console/Program.cs index ff544025c..dc2adfe43 100644 --- a/src/Jackett.Console/Program.cs +++ b/src/Jackett.Console/Program.cs @@ -39,7 +39,7 @@ namespace JackettConsole } Engine.Server.Start(); - Engine.Logger.Info("Running in headless mode."); + Engine.Logger.Info("Running in console mode."); Engine.RunTime.Spin(); Engine.Logger.Info("Server thread exit"); } diff --git a/src/Jackett/Content/fonts/glyphicons-halflings-regular.eot b/src/Jackett/Content/fonts/glyphicons-halflings-regular.eot new file mode 100644 index 000000000..b93a4953f Binary files /dev/null and b/src/Jackett/Content/fonts/glyphicons-halflings-regular.eot differ diff --git a/src/Jackett/Content/fonts/glyphicons-halflings-regular.svg b/src/Jackett/Content/fonts/glyphicons-halflings-regular.svg new file mode 100644 index 000000000..94fb5490a --- /dev/null +++ b/src/Jackett/Content/fonts/glyphicons-halflings-regular.svg @@ -0,0 +1,288 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Jackett/Content/fonts/glyphicons-halflings-regular.ttf b/src/Jackett/Content/fonts/glyphicons-halflings-regular.ttf new file mode 100644 index 000000000..1413fc609 Binary files /dev/null and b/src/Jackett/Content/fonts/glyphicons-halflings-regular.ttf differ diff --git a/src/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 b/src/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 new file mode 100644 index 000000000..64539b54c Binary files /dev/null and b/src/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 differ diff --git a/src/Jackett/Jackett.csproj b/src/Jackett/Jackett.csproj index e83170226..fa7cfe3b0 100644 --- a/src/Jackett/Jackett.csproj +++ b/src/Jackett/Jackett.csproj @@ -200,6 +200,15 @@ + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + PreserveNewest @@ -221,6 +230,9 @@ PreserveNewest + + PreserveNewest + PreserveNewest diff --git a/src/Jackett/JackettModule.cs b/src/Jackett/JackettModule.cs index 2b68ce122..fcf196cb8 100644 --- a/src/Jackett/JackettModule.cs +++ b/src/Jackett/JackettModule.cs @@ -23,6 +23,7 @@ namespace Jackett .Where(p => typeof(IIndexer).IsAssignableFrom(p) && !p.IsInterface) .ToArray()) { + builder.RegisterType(indexer).Named(indexer.Name); } }