mirror of
https://github.com/AAndyProgram/SCrawler.git
synced 2026-03-14 15:52:18 +00:00
ADD MULTI-ACCOUNT PluginProvider IDownloadableMedia: added 'AccountName' property IPluginContentProvider: added 'AccountName' property ISiteSettings: added properties: 'AccountName', 'Temporary', 'AvailableText', 'DefaultInstance'; added functions: 'Clone', 'Update', 'Delete'; removed 'Load' function; implement 'IDisposable' interface PropertyValue: added functions: 'BeginInit', 'EndInit', 'Clone' YT YouTubeSettings: make the class compatible for multi-acc YouTubeMediaContainerBase: add 'AccountName' property SCrawler IUserData: add properties: 'HostStatic', 'AccountName' ProfileSaved: add the ability to download saved posts from all accounts SiteSettingsBase: add multi-acc support; add 'UserOptionsType' for future purposes; update initializers; update responser initializing; add 'CLONE_PROPERTIES' and 'CloneGetEmptySettingsInstance' functions; 'IDisposable' support UserDataBase: add multi-acc support; change host retrieval method DomainsContainer: implements 'IDisposable' interface API.All sites: add multi-acc support; move the Icon and Image setting to the initializer; update initializer API.Instagram: change some property types API.Reddit: set 'AvailableText'; update 'UpdateRedGifsToken' and 'UserOptions' functions API.Mastodon: remove 'MastodonDomains' class and 'SettingsForm' form; replace 'MastodonDomains' with 'DomainsContainer'; update functions 'IsMyUser' and 'IsMyImageVideo'; update to 'DefaultInstance' environment; update 'UserData.ResetCredentials' function API.XVIDEOS: update to 'DefaultInstance' environment API.Xhamster: update to 'DefaultInstance' environment STDownloader: add multi-acc compatibility SiteEditorForm: add option 'Download saved posts'; update providers; add additional providers; add multi-acc support PluginsEnvironment: add 'PClonableAttribute'; add multi-acc support
35 lines
1.5 KiB
VB.net
35 lines
1.5 KiB
VB.net
' Copyright (C) 2023 Andy https://github.com/AAndyProgram
|
|
' This program is free software: you can redistribute it and/or modify
|
|
' it under the terms of the GNU General Public License as published by
|
|
' the Free Software Foundation, either version 3 of the License, or
|
|
' (at your option) any later version.
|
|
'
|
|
' This program is distributed in the hope that it will be useful,
|
|
' but WITHOUT ANY WARRANTY
|
|
Namespace Plugin
|
|
Public Interface IDownloadableMedia : Inherits IUserMedia, IDisposable
|
|
Event CheckedChange As EventHandler
|
|
Event ThumbnailChanged As EventHandler
|
|
Event StateChanged As EventHandler
|
|
ReadOnly Property SiteIcon As Drawing.Image
|
|
ReadOnly Property Site As String
|
|
ReadOnly Property SiteKey As String
|
|
Property AccountName As String
|
|
Property ThumbnailUrl As String
|
|
Property ThumbnailFile As String
|
|
Property Title As String
|
|
Property Size As Integer
|
|
Property Duration As TimeSpan
|
|
Property Progress As Object
|
|
ReadOnly Property HasError As Boolean
|
|
ReadOnly Property Exists As Boolean
|
|
Property Checked As Boolean
|
|
Property Instance As IPluginContentProvider
|
|
Sub Download(ByVal UseCookies As Boolean, ByVal Token As Threading.CancellationToken)
|
|
Sub Delete(ByVal RemoveFiles As Boolean)
|
|
Sub Load(ByVal File As String)
|
|
Sub Save()
|
|
Overloads Function ToString() As String
|
|
Overloads Function ToString(ByVal ForMediaItem As Boolean) As String
|
|
End Interface
|
|
End Namespace |