1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2025-01-31 11:41:35 +01:00

[artstation] restore 'browser' and 'tls12' defaults

partially revert 954796a4661f96f7d88b97271a0204f3da5c5455
This commit is contained in:
Mike Fährmann 2025-01-28 11:36:06 +01:00
parent 1b5e0c0e87
commit 4874c8e1d1
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88
2 changed files with 5 additions and 2 deletions

View File

@ -673,7 +673,7 @@ extractor.*.browser
Type
``string``
Default
* ``"firefox"``: ``mangasee``, ``twitter``
* ``"firefox"``: ``artstation``, ``mangasee``, ``twitter``
* ``null``: otherwise
Example
* ``"chrome:macos"``
@ -749,7 +749,8 @@ extractor.*.tls12
Type
``bool``
Default
``true``
* ``false``: ``artstation``
* ``true``: otherwise
Description
Allow selecting TLS 1.2 cipher suites.

View File

@ -19,6 +19,8 @@ class ArtstationExtractor(Extractor):
filename_fmt = "{category}_{id}_{asset[id]}_{title}.{extension}"
directory_fmt = ("{category}", "{userinfo[username]}")
archive_fmt = "{asset[id]}"
browser = "firefox"
tls12 = False
root = "https://www.artstation.com"
def __init__(self, match):