mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 02:32:33 +01:00
[artstation] add 'pro-first' option (#3273)
This commit is contained in:
parent
5a17e15b76
commit
b1ad6f2289
@ -885,6 +885,17 @@ Description
|
||||
Try to follow external URLs of embedded players.
|
||||
|
||||
|
||||
extractor.artstation.search.pro-first
|
||||
-------------------------------------
|
||||
Type
|
||||
``bool``
|
||||
Default
|
||||
``true``
|
||||
Description
|
||||
Enable the "Show Studio and Pro member artwork first" checkbox
|
||||
when retrieving search results.
|
||||
|
||||
|
||||
extractor.aryion.recursive
|
||||
--------------------------
|
||||
Type
|
||||
|
@ -37,7 +37,8 @@
|
||||
|
||||
"artstation":
|
||||
{
|
||||
"external": false
|
||||
"external": false,
|
||||
"pro-first": true
|
||||
},
|
||||
"aryion":
|
||||
{
|
||||
|
@ -356,7 +356,8 @@ class ArtstationSearchExtractor(ArtstationExtractor):
|
||||
"page" : None,
|
||||
"per_page" : 50,
|
||||
"sorting" : self.sorting,
|
||||
"pro_first" : "1",
|
||||
"pro_first" : ("1" if self.config("pro-first", True) else
|
||||
"0"),
|
||||
"filters" : filters,
|
||||
"additional_fields": (),
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user