2022.7.7.0

Brushed the code in some classes
Extended PropertyOption attribute
Removed AuthNullException
Moved ExitException to UserData class
Removed Instagram HashUpdateRequired and its environment
Changed Reddit response status code check
Twitter images bug
Added Scheduler, task startup delay, webp to jpg
Fixed Stop button bug
Minor changes
This commit is contained in:
Andy
2022-07-07 14:11:18 +03:00
parent ab020d9b5f
commit e0dc66e0da
80 changed files with 1884 additions and 970 deletions

View File

@@ -8,6 +8,7 @@
' but WITHOUT ANY WARRANTY
Namespace DownloadObjects.Groups
Friend Interface IGroup
Property Name As String
ReadOnly Property Labels As List(Of String)
Property Temporary As CheckState
Property Favorite As CheckState
@@ -15,10 +16,12 @@ Namespace DownloadObjects.Groups
Property ReadyForDownloadIgnore As Boolean
End Interface
Friend Class GroupParameters : Implements IGroup, IDisposable
Protected Const Name_Name As String = "Name"
Protected Const Name_Temporary As String = "Temporary"
Protected Const Name_Favorite As String = "Favorite"
Protected Const Name_ReadyForDownload As String = "RFD"
Protected Const Name_ReadyForDownloadIgnore As String = "RFDI"
Friend Property Name As String Implements IGroup.Name
Friend ReadOnly Property Labels As List(Of String) Implements IGroup.Labels
Friend Property Temporary As CheckState = CheckState.Indeterminate Implements IGroup.Temporary
Friend Property Favorite As CheckState = CheckState.Indeterminate Implements IGroup.Favorite