Skip to content

Commit 444b352

Browse files
committed
2024.5.18.0
YT YouTubeSettings: add 'DefaultVideoHighlightFPS_H' and 'DefaultVideoHighlightFPS_L' properties VideoOption: highlight frame rates higher/lower than this value SCrawler SiteSettingsBase: add 'UserAgentDefault' property API.Facebook, API.Instagram, API.Mastodon, API.OnlyFans, API.ThreadsNet, API.Twitter: add categories API.Instagram.SiteSettings: add 'DownDetector' validation; remove wrong header API.Instagram.UserData: fix incorrect definition of pinned posts; add 'DefaultParser_Pinned' and 'DefaultParser_SkipPost' func (for Threads) API.Threads: fix pinned posts processing API.Reddit: add 429 bypass; change the naming method of video files (hosted on Reddit) to the 'YYYYMMDD_HHMMSS' pattern; add 'UserAgent' property API.RedGifs: hide credential controls API.Twitter: add 'Likes' downloading; change domain from twitter.com to x.com; API.OnlyFans: set '_AllowUserAgentUpdate' to false SiteEditorForm: group options by category GroupListForm: enable 'OK' if it is filter DownloadGroup: add 'FilterShowAllUsers' property PropertyValueHost: add 'Category' property MainFrame: the 'ALL' filter isn't unchecked when loading a filter from a saved one Update user paths when global paths change Scheduler: add the ability to clone the scheduler PluginProvider PropertyOption attribute: set category name when `IsAuth = True` ISiteSettings: add 'UserAgentDefault' property
1 parent ec2266f commit 444b352

61 files changed

Lines changed: 1651 additions & 222 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Changelog.md

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,44 @@
1+
# 2024.5.18.0
2+
3+
*2024-05-18*
4+
5+
- Added
6+
- YouTube (standalone app): highlight frame rates higher/lower than this value (`Settings` - `Defaults Video` - `Highlight FPS (higher/lower)`).
7+
- Sites
8+
- Instagram: 'DownDetector' support to determine if the site is accessible
9+
- Reddit: change the naming method of video files (hosted on Reddit) to the `YYYYMMDD_HHMMSS` pattern
10+
- Twitter
11+
- `Likes` downloading *(user settings)*
12+
- **changed domain from twitter.com to x.com**
13+
- Site settings: group options by category
14+
- Minor improvements
15+
- PluginProvider
16+
- `PropertyOption` attribute: set category name when `IsAuth = True`
17+
- `ISiteSettings`: added `UserAgentDefault` property
18+
- Updated
19+
- gallery-dl up to version **1.27.0-dev**
20+
- Fixed
21+
- Sites
22+
- Instagram: incorrect definition of pinned posts
23+
- Threads: new posts are no longer downloaded from profiles with pinned posts
24+
- Reddit: bypass error 429 for saved posts
25+
- Twitter: **data is not downloading due to domain change from twitter.com to x.com**
26+
- Minor bugs
27+
128
# 2024.5.4.0
229

330
*2024-05-04*
431

532
- Added
633
- YouTube (standalone app): setting to remove specific characters (`Defaults` - `Remove characters`)
734
- Instagram: simplify the `Connection closed` error
8-
- Users search: add 'FriendlyName' to search results
35+
- Users search: add `Friendly name` to search results
936
- Fixed
1037
- YouTube (standalone app): incorrect download processing when the file name ends with a dot (Issue #188)
1138
- The program is freezes when editing users in some cases
1239
- Sites
1340
- Reddit: token update error
14-
- Threads: unable to obtain credentials (ID)
41+
- Threads: unable to obtain credentials (`ID`)
1542

1643
# 2024.4.26.0
1744

-17 Bytes
Loading
5.14 KB
Loading
2.71 KB
Loading
1.91 KB
Loading
-2.36 KB
Loading
234 Bytes
Loading
3.22 KB
Loading

SCrawler.PluginProvider/Attributes/Attributes.vb

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,22 @@ Namespace Plugin.Attributes
3636
Public Property IsInformationLabel As Boolean = False
3737
''' <summary>Label text alignment.<br/>Default: <see cref="Drawing.ContentAlignment.TopCenter"/></summary>
3838
Public Property LabelTextAlign As Drawing.ContentAlignment = Drawing.ContentAlignment.TopCenter
39+
Private _IsAuth As Boolean = False
3940
''' <summary>This is an authorization property</summary>
40-
Public Property IsAuth As Boolean = False
41+
Public Property IsAuth As Boolean
42+
Get
43+
Return _IsAuth
44+
End Get
45+
Set(ByVal _IsAuth As Boolean)
46+
Me._IsAuth = _IsAuth
47+
If _IsAuth And String.IsNullOrEmpty(Category) Then
48+
Category = CategoryAuth
49+
ElseIf Not _IsAuth AndAlso Not String.IsNullOrEmpty(Category) AndAlso Category = CategoryAuth Then
50+
Category = String.Empty
51+
End If
52+
End Set
53+
End Property
54+
Public Const CategoryAuth As String = "Authorization"
4155
Public Property Category As String = Nothing
4256
Public Property InheritanceName As String = Nothing
4357
''' <summary>Initialize a new property option attribute</summary>

SCrawler.PluginProvider/Interfaces/ISiteSettings.vb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Namespace Plugin
1919
ReadOnly Property Site As String
2020
Property CMDEncoding As String
2121
Property EnvironmentPrograms As IEnumerable(Of String)
22+
Property UserAgentDefault As String
2223
Sub EnvironmentProgramsUpdated()
2324
Property AccountName As String
2425
Property Temporary As Boolean

0 commit comments

Comments
 (0)