2024.6.4.0

Andy
2024-06-04 03:28:47 +03:00
parent 8393e63822
commit 2d65aed1de

@@ -111,6 +111,7 @@
- `Add missing errors to log` - Each error that prevents SCrawler from downloading a file will be added to the log. - `Add missing errors to log` - Each error that prevents SCrawler from downloading a file will be added to the log.
- `Trying to download missing posts using regular download` - If missing posts exist, the missing posts will attempt to be downloaded via user download. - `Trying to download missing posts using regular download` - If missing posts exist, the missing posts will attempt to be downloaded via user download.
- `Use the default account if the selected account does not exist` - Use the default account if you deleted an account that you used for some users. - `Use the default account if the selected account does not exist` - Use the default account if you deleted an account that you used for some users.
- `Highlight undownloaded plans (minutes)` - Highlight (in gray) the scheduler plans that have not been downloaded in `x` minutes. `-1` to disable.
![Downloading settings](https://raw.githubusercontent.com/AAndyProgram/SCrawler/main/ProgramScreenshots/SettingsGlobalDownloading.png) ![Downloading settings](https://raw.githubusercontent.com/AAndyProgram/SCrawler/main/ProgramScreenshots/SettingsGlobalDownloading.png)
@@ -202,7 +203,7 @@ ffmpeg is required for several sites like Reddit, PornHub, XHamster, XVIDEOS, et
### Gallery-dl ### Gallery-dl
Version **1.26.9** ([release](https://github.com/mikf/gallery-dl/releases/tag/v1.26.9); [exe](https://github.com/mikf/gallery-dl/releases/download/v1.26.9/gallery-dl.exe)) Version **1.27.0** ([release](https://github.com/mikf/gallery-dl/releases/tag/v1.27.0); [exe](https://github.com/mikf/gallery-dl/releases/download/v1.27.0/gallery-dl.exe))
**The following sites use gallery-dl:** **The following sites use gallery-dl:**
- [Pinterest](#pinterest) - [Pinterest](#pinterest)
@@ -210,15 +211,15 @@ Version **1.26.9** ([release](https://github.com/mikf/gallery-dl/releases/tag/v1
### YT-DLP ### YT-DLP
Version **2024.04.09** ([release](https://github.com/yt-dlp/yt-dlp/releases/tag/2024.04.09)) Version **2024.05.27** ([release](https://github.com/yt-dlp/yt-dlp/releases/tag/2024.05.27))
- x64 version - [exe](https://github.com/yt-dlp/yt-dlp/releases/download/2024.04.09/yt-dlp.exe) - x64 version - [exe](https://github.com/yt-dlp/yt-dlp/releases/download/2024.05.27/yt-dlp.exe)
- x86 version - [exe](https://github.com/yt-dlp/yt-dlp/releases/download/2024.04.09/yt-dlp_x86.exe) - x86 version - [exe](https://github.com/yt-dlp/yt-dlp/releases/download/2024.05.27/yt-dlp_x86.exe)
**The following sites use yt-dlp:** **The following sites use yt-dlp:**
- [YouTube](#youtube) - [YouTube](#youtube)
- [ThisVid](#thisvid) - [ThisVid](#thisvid)
- [TikTok](#tiktok) (using [plugin](https://github.com/bashonly/yt-dlp-TTUser)) - [TikTok](#tiktok)<!-- (using [plugin](https://github.com/bashonly/yt-dlp-TTUser))-->
### OF-Scraper ### OF-Scraper
@@ -310,6 +311,7 @@ The Reddit parser can parse data without cookies, but you can add it if you like
- [`Cookies`](#how-to-set-up-cookies) - [`Cookies`](#how-to-set-up-cookies)
- [`gallery-dl`](#gallery-dl) - [`gallery-dl`](#gallery-dl)
**Attention! If you are trying to download a community, uncheck the `Get user media only` flag!**
### Twitter user settings ### Twitter user settings
- `Download GIFs` - *same as default twitter settings, but for this user* - `Download GIFs` - *same as default twitter settings, but for this user*
@@ -671,6 +673,7 @@ See additional settings [here](https://github.com/AAndyProgram/SCrawler/wiki/You
### TikTok requirements ### TikTok requirements
- **[yt-dlp](#YT-DLP)** - **[yt-dlp](#YT-DLP)**
<!--
- **[`yt-dlp-TTUser`](https://github.com/bashonly/yt-dlp-TTUser) plugin for yt-dlp** - **[`yt-dlp-TTUser`](https://github.com/bashonly/yt-dlp-TTUser) plugin for yt-dlp**
### How to install yt-dlp-TTUser plugin ### How to install yt-dlp-TTUser plugin
@@ -680,6 +683,19 @@ See additional settings [here](https://github.com/AAndyProgram/SCrawler/wiki/You
1. As a result, the plugin must be located in the following path: `C:\Users\User\AppData\Roaming\yt-dlp-plugins\yt-dlp-TTUser-master\yt_dlp_plugins\extractor\tt_user.py`. 1. As a result, the plugin must be located in the following path: `C:\Users\User\AppData\Roaming\yt-dlp-plugins\yt-dlp-TTUser-master\yt_dlp_plugins\extractor\tt_user.py`.
Read more in the official yt-dlp [plugin installation guide](https://github.com/yt-dlp/yt-dlp#installing-plugins). Read more in the official yt-dlp [plugin installation guide](https://github.com/yt-dlp/yt-dlp#installing-plugins).
-->
If you were using the [`yt-dlp-TTUser`](https://github.com/bashonly/yt-dlp-TTUser) plugin, you should remove it because this plugin was added to yt-dlp itself! To delete the plugin you can use the following batch script.
```batch
@echo off
set p=%UserProfile%\AppData\Roaming\yt-dlp-plugins\yt-dlp-TTUser-master\
if exist %p% (
RMDIR %p% /S /Q
echo Plugin deleted: %p%
) else (
echo Plugin not found!
)
```
## PornHub ## PornHub
- `Download UHD` - download UHD (4K) content. - `Download UHD` - download UHD (4K) content.
@@ -910,7 +926,7 @@ In the user creation form, the checkbox specifies whether the script will run or
## Script examples ## Script examples
Batch: Batch:
```Batch ```batch
powershell D:\MyPrograms\SocialCrawler\Script.ps1 %1 powershell D:\MyPrograms\SocialCrawler\Script.ps1 %1
``` ```
PowerShell: PowerShell: