mirror of
https://github.com/AAndyProgram/SCrawler.git
synced 2026-03-24 04:32:17 +00:00
API.EditorExchangeOptionsBase: move the 'Apply' function API.EditorExchangeOptionsBase_P: remove the 'Apply' function API.UserDataBase: update the 'UserSiteNameUpdate' function; remove the '_ForceSaveUserInfoOnException' property; update the 'DownloadContentDefault_ConvertWebp' function; add the 'DownloadContentDefault_ConvertWebp_TestImg' and 'DownloadContentDefault_ConvertWebp_Impl' functions API.Bluesky: add the 'EditorExchangeOptions' class; add 'did:' handle for recognizing API.PornHub: update M3U8 download functions API.TikTok: fix where gallery-dl would hang when downloading stories API.Twitter: fix downloading a single media file (standalone downloader) fails API.Xhamster: add 'webm' to 'jpg' correct conversion FeedMedia: move the 'ImageRenderer2' class into the 'UserImage' class UserImage: add the 'ImageRenderer2' class
31 lines
1.3 KiB
VB.net
31 lines
1.3 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
|
|
Imports SCrawler.API.Base
|
|
Imports SCrawler.Plugin.Attributes
|
|
Namespace API.Xhamster
|
|
Friend NotInheritable Class UserExchangeOptions : Inherits API.Base.EditorExchangeOptionsBase_P
|
|
<PSetting(Address:=SettingAddress.User, Caption:=SiteSettings.GetMomentsCaption)>
|
|
Friend Property GetMoments As Boolean = False
|
|
Friend Sub New()
|
|
MyBase.New
|
|
End Sub
|
|
Friend Sub New(ByVal u As IPSite)
|
|
MyBase.New(DirectCast(u, UserData))
|
|
GetMoments = DirectCast(u, UserData).GetMoments
|
|
End Sub
|
|
Friend Sub New(ByVal s As SiteSettings)
|
|
MyBase.New(s)
|
|
GetMoments = s.GetMoments.Value
|
|
End Sub
|
|
Friend Overrides Sub Apply(ByRef u As UserDataBase)
|
|
MyBase.Apply(u)
|
|
DirectCast(u, UserData).GetMoments = GetMoments
|
|
End Sub
|
|
End Class
|
|
End Namespace |