-
Notifications
You must be signed in to change notification settings - Fork 0
/
regexp_download_organiser_rules.json
62 lines (62 loc) · 1.5 KB
/
regexp_download_organiser_rules.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[
{
"enabled": true,
"description": "Android Installers",
"filename": "\\.apk$",
"pattern": "APK/"
},
{
"enabled": true,
"description": "Music",
"mime": "audio/.*",
"pattern": "music/"
},
{
"enabled": true,
"description": "PDF Documents",
"mime": "application/pdf",
"pattern": "documents/"
},
{
"enabled": true,
"description": "Microsoft Documents",
"pattern": "documents/",
"mime": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet|application/vnd.openxmlformats-officedocument.wordprocessingml.document"
},
{
"description": "Windows installers and applications (.exe and .msi files)",
"mime": "application/(x-msdownload|x-ms-installer|x-msi|exe)",
"pattern": "installers/",
"enabled": true
},
{
"description": "Linux installers (.deb and .rpm files)",
"mime": "application/(x-debian-package|x-redhat-package-manager|x-rpm)",
"pattern": "installers/",
"enabled": true
},
{
"description": "Mac installers (.dmg files)",
"mime": "application/x-apple-diskimage",
"pattern": "installers/",
"enabled": true
},
{
"description": "Zip and GZip archives",
"mime": "application/(zip|gzip)",
"pattern": "archives/",
"enabled": true
},
{
"description": "Pictures",
"mime": "image/.*",
"pattern": "images/",
"enabled": true
},
{
"description": "Torrents",
"mime": "application/x-bittorrent",
"pattern": "torrents/",
"enabled": true
}
]