-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.toml
More file actions
19 lines (17 loc) · 832 Bytes
/
Copy pathplugin.toml
File metadata and controls
19 lines (17 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[plugin]
name = "vortex-mod-gallery"
version = "1.1.0"
category = "crawler"
author = "vortex-community"
description = "Image galleries: Imgur, Reddit, Flickr, generic <img> scraping"
license = "GPL-3.0"
min_vortex_version = "0.1.0"
[capabilities]
# Gallery providers use HTTP APIs (Imgur v3, Reddit .json, Flickr REST) plus
# HTML scraping for the generic fallback.
http = true
[config]
min_resolution = { type = "string", default = "800x600", description = "Filter by minimum image size (WxH)" }
auto_name = { type = "boolean", default = true, description = "Auto-generate filenames from provider metadata" }
imgur_client_id = { type = "string", default = "", description = "Imgur API client ID (sent as 'Client-ID' authorization header)" }
flickr_api_key = { type = "string", default = "", description = "Flickr REST API key" }