Skip to content

Commit

Permalink
3.0.0.3
Browse files Browse the repository at this point in the history
Added additional 'download all' options
Fixed ListImagesLoader (User.FitToAddParams)
Fixed Instagram default value of SleepTimerOnPostsLimit
Fixed XVIDEOS typo
  • Loading branch information
AAndyProgram committed Mar 24, 2022
1 parent ede81f9 commit 726fc48
Show file tree
Hide file tree
Showing 10 changed files with 164 additions and 54 deletions.
11 changes: 11 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# 3.0.0.3

- Added
- Download all by specific sites
- Download all, ignoring the ```Ready for download``` option
- Download all by specific sites, ignoring the ```Ready for download``` option
- Fixed
- (Issue #19) Typo in default Instagram settings (Post limit timer)
- Typo when applying "Download UHD" in XVIDEOS plugin
- The sites filter does not work unless the "Fast profiles loading" option is enabled.

# 3.0.0.2

- Added
Expand Down
4 changes: 2 additions & 2 deletions SCrawler.Plugin.XVIDEOS/My Project/AssemblyInfo.vb
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>

<Assembly: AssemblyVersion("1.0.0.0")>
<Assembly: AssemblyFileVersion("1.0.0.0")>
<Assembly: AssemblyVersion("1.0.0.1")>
<Assembly: AssemblyFileVersion("1.0.0.1")>
<Assembly: NeutralResourcesLanguage("en")>
3 changes: 2 additions & 1 deletion SCrawler.Plugin.XVIDEOS/UserData.vb
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ Public Class UserData : Implements IPluginContentProvider
End If
End With
Else
.Dispose()
Exit Do
End If
.Dispose()
Expand Down Expand Up @@ -147,7 +148,7 @@ Public Class UserData : Implements IPluginContentProvider
r = resp.GetResponse(m,, EDP.ThrowException)
If Not r.IsEmptyString Then
Dim ls As List(Of VSize) = FNF.RegexFields(Of VSize)(r, {M3U8Reparse}, {1, 2})
If ls.ListExists And DownloadUHD Then ls.RemoveAll(Function(v) v.Size > 1080)
If ls.ListExists And Not DownloadUHD Then ls.RemoveAll(Function(v) v.Size > 1080)
If ls.ListExists Then
ls.Sort()
m = $"{appender}/{ls(0).Value}"
Expand Down
2 changes: 1 addition & 1 deletion SCrawler/API/Instagram/SiteSettings.vb
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ Namespace API.Instagram
RequestsWaitTimerProvider = New TimersChecker(100)
RequestsWaitTimerTaskCount = New PropertyValue(1)
RequestsWaitTimerTaskCountProvider = New TimersChecker(1)
SleepTimerOnPostsLimit = New PropertyValue(6000)
SleepTimerOnPostsLimit = New PropertyValue(60000)
SleepTimerOnPostsLimitProvider = New TimersChecker(10000)

GetStories = New PropertyValue(False)
Expand Down
10 changes: 6 additions & 4 deletions SCrawler/ListImagesLoader.vb
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,12 @@ Friend Class ListImagesLoader
Else
Dim t As New List(Of Task)
For Each User As IUserData In Settings.Users
If Settings.ViewModeIsPicture Then
t.Add(Task.Run(Sub() UpdateUser(User, True)))
Else
UpdateUser(User, True)
If User.FitToAddParams Then
If Settings.ViewModeIsPicture Then
t.Add(Task.Run(Sub() UpdateUser(User, True)))
Else
UpdateUser(User, True)
End If
End If
Next
If t.Count > 0 Then Task.WhenAll(t.ToArray) : t.Clear()
Expand Down
84 changes: 69 additions & 15 deletions SCrawler/MainFrame.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 726fc48

Please sign in to comment.