-
Notifications
You must be signed in to change notification settings - Fork 35
Presets
Maxstupo edited this page Jul 11, 2019
·
2 revisions
Presets allow for predefined download settings that can be applied quickly and easily. URL pattern matching allows presets to be automatically applied when adding downloads.
Provides advanced pattern matching using regular expressions.
Provides simple pattern matching functionality that is good enough for most use cases.
[
and ]
- Optional string (All characters escaped, no nesting)
*
- Any characters until next token
?
- Single character
\
- Escape (\\
to escape backslash)
Examples:
-
http[s]://[www.]youtu[be].[com][be]/*
- Matchesyoutube.com
andyoutu.be
urls. -
*video*
- Matches any url that containsvideo
.
When working with presets the download directory and archive can be left blank to allow the current defaults to be used instead of a predefined value.