mirror of
https://github.com/AAndyProgram/SCrawler.git
synced 2026-03-16 08:42:19 +00:00
2023.8.27.0
API.JFF: remove PXML attribute for some properties API.Reddit.Channels: save channel info right after download; replace date providers with default API.Reddit.SiteSettings: improve 'UpdateToken' function AutoDownloader: add 'Copy' function SchedulerEditorForm: add cloning plans DownloadedInfoForm: add 'Try...Catch' for some functions DownloadFeedForm: add button to go to custom page FeedMedia: color typo GroupParameters: add 'ICopier'
This commit is contained in:
@@ -324,6 +324,24 @@ Namespace DownloadObjects
|
||||
Initialization = False
|
||||
End Sub
|
||||
#End Region
|
||||
#Region "ICopier Support"
|
||||
Friend Overrides Function Copy() As Object
|
||||
Dim newObj As New AutoDownloader(True)
|
||||
newObj.Copy(Me)
|
||||
With newObj
|
||||
.Name = String.Empty
|
||||
._Mode = _Mode
|
||||
.Groups.ListAddList(Groups, LAP.ClearBeforeAdd)
|
||||
.Timer = Timer
|
||||
.StartupDelay = StartupDelay
|
||||
.ShowNotifications = ShowNotifications
|
||||
.ShowPictureDownloaded = ShowPictureDownloaded
|
||||
.ShowPictureUser = ShowPictureUser
|
||||
.ShowSimpleNotification = ShowSimpleNotification
|
||||
End With
|
||||
Return newObj
|
||||
End Function
|
||||
#End Region
|
||||
#Region "Groups Support"
|
||||
Friend Sub GROUPS_Updated(ByVal Sender As DownloadGroup)
|
||||
If Groups.Count > 0 Then
|
||||
|
||||
Reference in New Issue
Block a user