Added UI for allowing external access, stop server listening on the old port when changing ports. Config migration bug fixes.

This commit is contained in:
Kayomani
2015-07-24 20:15:08 +01:00
parent 800e764f60
commit 44800491c0
15 changed files with 149 additions and 37 deletions

View File

@@ -9,8 +9,6 @@ namespace Jackett.Console
{
public class ConsoleOptions
{
private bool listenPublic = false;
[Option('i', "Install", HelpText = "Install Jackett windows service (Must be admin)")]
public bool Install { get; set; }
@@ -47,5 +45,7 @@ namespace Jackett.Console
[Option('p', "Port", HelpText = "Web server port")]
public int Port { get; set; }
[Option('m', "MigrateSettings", HelpText = "Migrate settings manually (Must be admin on Windows)")]
public bool MigrateSettings { get; set; }
}
}