twitch clips support added

This commit is contained in:
2024-03-03 03:14:07 +01:00
Unverified
parent 1a57a039aa
commit 2d666ede27
46 changed files with 639 additions and 46 deletions

View File

@@ -10,9 +10,9 @@ namespace VDownload.Services.Data.Settings.Models
public class Notifications
{
[JsonProperty("on_successful")]
public bool OnSuccessful { get; set; } = true;
public bool OnSuccessful { get; set; } = false;
[JsonProperty("on_unsuccessful")]
public bool OnUnsuccessful { get; set; } = true;
public bool OnUnsuccessful { get; set; } = false;
}
}

View File

@@ -10,7 +10,7 @@ namespace VDownload.Services.Data.Settings.Models
public class Temp
{
[JsonProperty("directory")]
public string Directory { get; set; } = $"{Path.GetTempPath()}\\VDownload";
public string Directory { get; set; } = $"{Path.GetTempPath()}VDownload";
[JsonProperty("delete_on_error")]
public bool DeleteOnError { get; set; } = true;