-
Notifications
You must be signed in to change notification settings - Fork 119
/
Config.jsonc
93 lines (90 loc) · 2.02 KB
/
Config.jsonc
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
{
"config_version": 6, // DO NOT EDIT THIS VALUE
"log_level": "debug",
"platforms": {
"Steam": {
"enabled": true,
"process": "steam.exe",
"replicate": false,
"unlock_dlc": true,
"unlock_shared_library": false,
"app_blacklist": [
"976310" // Mortal Kombat 11
],
"blacklist": [ // Get App ID from SteamDB
"22618", // Alien Breed: Impact - PL Check [Do not force polish language]
"67379" // Darkness II Low Violence [Do not censor violence]
],
"ignore": [
"x86launcher.exe",
"x64launcher.exe",
"SteamService.exe",
"steamwebhelper.exe",
"GameOverlayUI.exe",
"gldriverquery.exe",
"gldriverquery64.exe",
"vulkandriverquery.exe",
"vulkandriverquery64.exe"
]
},
"EpicGames": {
"enabled": true,
"process": "EpicGamesLauncher.exe",
"replicate": true,
"blacklist": [ // Get DLC ID from ScreamDB
"ffffffffffffffffffffffffffffffff" // A Total War Sage: TROY [It actually asks this ID...]
],
"ignore": [
"EpicWebHelper.exe",
"EpicOnlineServicesHost.exe",
"EpicOnlineServicesUserHelper.exe",
"UnrealCEFSubProcess.exe"
]
},
"Origin": {
"enabled": true,
"process": "Origin.exe",
"replicate": false,
"blacklist": [ // Use ItemId from Unlocker32.Origin.log
],
"ignore": []
},
"EADesktop": {
"enabled": true,
"process": "EADesktop.exe",
"replicate": false,
"blacklist": [ // Use ItemId from Unlocker64.EADesktop.log
],
"ignore": []
},
"UplayR1": {
"enabled": true,
"process": "upc.exe",
"replicate": true,
"blacklist": [ // Use aUplayId from the generated log file
],
"ignore": [
"UplayService.exe",
"UplayWebCore.exe"
]
}
},
"ignore": [
// Unreal Engine
"UnrealCEFSubProcess.exe",
"CrashReportClient.exe",
// Origin integration with other stores
"EALink.exe"
],
"terminate": [
// Steam
"steamerrorreporter.exe",
// Origin
"OriginER.exe",
"OriginCrashReporter.exe",
// EA Desktop
"EACrashReporter.exe",
// Ubisoft
"UplayCrashReporter.exe"
]
}