You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tooling/cli/schema.json
+29Lines changed: 29 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -118,6 +118,9 @@
118
118
},
119
119
"bundle": {
120
120
"active": false,
121
+
"appimage": {
122
+
"bundleMediaFramework": false
123
+
},
121
124
"deb": {
122
125
"files": {}
123
126
},
@@ -245,6 +248,9 @@
245
248
"description": "The bundler configuration.",
246
249
"default": {
247
250
"active": false,
251
+
"appimage": {
252
+
"bundleMediaFramework": false
253
+
},
248
254
"deb": {
249
255
"files": {}
250
256
},
@@ -955,6 +961,17 @@
955
961
"null"
956
962
]
957
963
},
964
+
"appimage": {
965
+
"description": "Configuration for the AppImage bundle.",
966
+
"default": {
967
+
"bundleMediaFramework": false
968
+
},
969
+
"allOf": [
970
+
{
971
+
"$ref": "#/definitions/AppImageConfig"
972
+
}
973
+
]
974
+
},
958
975
"deb": {
959
976
"description": "Configuration for the Debian bundle.",
960
977
"default": {
@@ -1023,6 +1040,18 @@
1023
1040
}
1024
1041
]
1025
1042
},
1043
+
"AppImageConfig": {
1044
+
"description": "Configuration for AppImage bundles.",
1045
+
"type": "object",
1046
+
"properties": {
1047
+
"bundleMediaFramework": {
1048
+
"description": "Include additional gstreamer dependencies needed for audio and video playback. This increases the bundle size by ~15-35MB depending on your build system.",
1049
+
"default": false,
1050
+
"type": "boolean"
1051
+
}
1052
+
},
1053
+
"additionalProperties": false
1054
+
},
1026
1055
"DebConfig": {
1027
1056
"description": "Configuration for Debian (.deb) bundles.",
0 commit comments