-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.json
113 lines (113 loc) · 2.67 KB
/
config.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"general": {
"logFileName": "log.txt",
"sevenZipExeSearchLocations": [
"7z",
"C:\\Program Files\\7-Zip\\7z",
"C:\\Program Files (x86)\\7-Zip\\7z"
]
},
"lookup": {
"exCookiesFileName": "cookies.txt",
"searchExpunged": true,
"searchCoversOnly": false,
"maximumNumberOfResultsToCheck": 25,
"delay": {
"gallerySearch": 10.0,
"gallerySearchRandom": 0.0,
"apiCall": 5.0,
"apiCallRandom": 0.0,
"skipOnCompletion": false
},
"priorities": {
"tags": [
{ "value": "misc:already uploaded", "priority": -1.0, "blacklist": false },
{ "value": "misc:incomplete", "priority": -1.0, "blacklist": false }
],
"language": [
{ "value": "english", "priority": 2.0 },
{ "value": "japanese", "priority": 1.0 },
{ "value": null, "priority": -1.0, "blacklist": false }
],
"title": [
{ "value": "regex:colorized", "priority": 0.0 }
],
"titleOriginal": [
{ "value": "regex:カラー化", "priority": 0.0 }
],
"fileCount": {
"nearest": { "priority": 0.5 },
"highest": { "priority": 0.0 },
"highestSearchMatches": { "priority": 1.0 }
}
}
},
"scanning": {
"scanFoldersForArchives": true,
"scanFoldersForImages": true,
"scanFoldersRecursiveDepth": 10,
"archiveFolderPermitNestedDirectores": true,
"ignoreFiles": [
"regex:^\\."
],
"ignoreDirectories": [
"regex:^\\.",
"node_modules"
],
"archiveFolderPermittedExtensions": [
".txt",
".json"
],
"imageFileExtensions": [
".jpg",
".jpeg",
".png",
".gif",
".bmp"
],
"archiveFileExtensions": [
".zip",
".rar",
".7z",
".cbr",
".cbz"
],
"targetFiltering": {
"file": {
"fileNameWhitelist": [],
"fileNameBlacklist": []
},
"folder": {
"fileNameWhitelist": [],
"fileNameBlacklist": []
}
}
},
"archive": {
"file": {
"minImagesToCheck": 1,
"maxImagesToCheck": 5,
"maxSearchErrors": 1,
"updateMetadataIfExists": false,
"continueSearchIfResultsAreAmbiguous": true,
"preferredImageOrder": [ 0, 1, 2, 9 ],
"metadataFileNameInArchiveFile": "info.json",
"metadataFileNameInFolder": null,
"metadataFileNameInFolderOnFailure": "${name}.info.json",
"skipIfFileExistsInArchiveFile": [ "info.json" ],
"skipIfFileExistsInFolder": [ "${name}.info.json" ]
},
"folder": {
"minImagesToCheck": 1,
"maxImagesToCheck": 5,
"maxSearchErrors": 1,
"updateMetadataIfExists": false,
"continueSearchIfResultsAreAmbiguous": true,
"preferredImageOrder": [ 0, 1, 2, 9 ],
"metadataFileNameInFolder": "info.json",
"metadataFileNameInParentFolder": null,
"skipIfFileExistsInFolder": [ "info.json" ],
"skipIfFileExistsInParentFolder": [ "${name}.info.json" ]
}
}
}