56 lines
2.0 kB
1
{
2
"$schema": "https://moonlight-mod.github.io/manifest.schema.json",
3
"id": "nativeFixes",
4
"meta": {
5
"name": "Native Fixes",
6
"tagline": "Various configurable fixes for Discord and Electron",
7
"authors": ["Cynosphere", "adryd", "NotNite"],
8
"tags": ["fixes"]
9
},
10
"environment": "desktop",
11
"settings": {
12
"devtoolsThemeFix": {
13
"advice": "restart",
14
"displayName": "Devtools Theme Fix",
15
"description": "Temporary workaround for devtools defaulting to light theme on Electron 32",
16
"type": "boolean",
17
"default": true
18
},
19
"disableRendererBackgrounding": {
20
"advice": "restart",
21
"displayName": "Disable Renderer Backgrounding",
22
"description": "This is enabled by default as a power saving measure, but it breaks screensharing and websocket connections fairly often",
23
"type": "boolean",
24
"default": true
25
},
26
"linuxAutoscroll": {
27
"advice": "restart",
28
"displayName": "Enable middle click autoscroll on Linux",
29
"description": "Requires manual configuration of your system to disable middle click paste, has no effect on other operating systems",
30
"type": "boolean",
31
"default": false
32
},
33
"linuxSpeechDispatcher": {
34
"advice": "restart",
35
"displayName": "Enable speech-dispatcher for TTS on Linux",
36
"description": "Fixes text-to-speech. Has no effect on other operating systems",
37
"type": "boolean",
38
"default": true
39
},
40
"vaapi": {
41
"advice": "restart",
42
"displayName": "Enable VAAPI features on Linux",
43
"description": "Provides hardware accelerated video encode and decode. Has no effect on other operating systems",
44
"type": "boolean",
45
"default": true
46
},
47
"linuxUpdater": {
48
"advice": "restart",
49
"displayName": "Linux Updater",
50
"description": "Actually implements updating Discord on Linux. Has no effect on other operating systems",
51
"type": "boolean",
52
"default": false
53
}
54
},
55
"apiLevel": 2
56
}
57