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: docs/settings.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,7 @@ _([How to change settings in VScode](https://code.visualstudio.com/docs/getstart
17
17
### Fallout SSL
18
18
19
19
-`bgforge.falloutSSL.compilePath`: Path to compile.exe from sfall modders pack. Alternatively, you can add compile.exe to system PATH and leave default here.
20
+
-`bgforge.falloutSSL.useBuiltInCompiler`: Use built-in compiler instead of external compile.exe
20
21
-`bgforge.falloutSSL.compileOptions`: Compilation options for compile.exe from sfall modders pack.
21
22
-`bgforge.falloutSSL.outputDirectory`: Where to put the compiled Fallout SSL scripts, absolute path. Default is to put compiled scripts next to the source file. You'll probably want to set this to `data/scripts` of your Fallout 2 game directory.
22
23
-`bgforge.falloutSSL.headersDirectory`: Path to an additional directory with Fallout headers to scan for defines.
Copy file name to clipboardExpand all lines: package.json
+8-3Lines changed: 8 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
"name": "bgforge-mls",
3
3
"displayName": "BGforge MLS",
4
4
"description": "BGforge multilanguage server",
5
-
"version": "2.2.6",
5
+
"version": "2.3.0",
6
6
"author": "BGforge",
7
7
"repository": {
8
8
"type": "git",
@@ -344,10 +344,15 @@
344
344
"type": "object",
345
345
"title": "BGforge MLS",
346
346
"properties": {
347
+
"bgforge.falloutSSL.useBuiltInCompiler": {
348
+
"type": "boolean",
349
+
"default": false,
350
+
"description": "Use built-in compiler instead of external compile.exe"
351
+
},
347
352
"bgforge.falloutSSL.compilePath": {
348
353
"type": "string",
349
354
"default": "wine ~/bin/compile",
350
-
"description": "Path to compile.exe from sfall modders pack. Alternatively, you can add compile.exe to system PATH and leave default here."
355
+
"description": "Path to compile.exe from sfall modders pack. Alternatively, you can add compile.exe to system PATH and leave default here. Ignored if 'Use built-in compiler' is enabled."
0 commit comments