Auto update feature removed

This commit is contained in:
stax76
2021-11-14 00:05:31 +01:00
parent 4efe85aad7
commit 243b45326e
8 changed files with 0 additions and 113 deletions

View File

@@ -28,7 +28,6 @@ namespace mpvnet
public static bool Queue { get; set; }
public static bool RememberVolume { get; set; } = true;
public static bool RememberWindowPosition { get; set; }
public static bool UpdateCheck { get; set; }
public static int StartThreshold { get; set; } = 1500;
public static int RecentCount { get; set; } = 15;
@@ -237,7 +236,6 @@ namespace mpvnet
case "remember-window-position": RememberWindowPosition = value == "yes"; return true;
case "start-size": StartSize = value; return true;
case "start-threshold": StartThreshold = value.ToInt(); return true;
case "update-check": UpdateCheck = value == "yes"; return true;
case "video-file-extensions": CorePlayer.VideoTypes = value.Split(" ,;".ToCharArray(), StringSplitOptions.RemoveEmptyEntries); return true;
default:
if (writeError)