factoriomod-debug 1.1.38 → 1.1.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -1
- package/dist/ModSettingsWebview.js +168 -169
- package/dist/fmtk.js +817 -307
- package/doc/language-lua.md +4 -0
- package/package.json +22 -12
- package/factoriomod-debug-1.1.37.vsix +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
[<img height='36' style='border:0px;height:36px;' src='https://az743702.vo.msecnd.net/cdn/kofi2.png?v=2' border='0' alt='Buy Me a Coffee at ko-fi.com'/>](https://ko-fi.com/X8X41IE4T)
|
|
4
4
|
|
|
5
|
+
## 1.1.40
|
|
6
|
+
* Sumneko library package:
|
|
7
|
+
* Generate even if some doc links are broken
|
|
8
|
+
* Correctly mark Attributes as optional
|
|
9
|
+
* Set Lua.workspace.checkThirdParty=ApplyInMemory to work around LuaLS's broken defaults
|
|
10
|
+
* Improved plugin's string and comment matching correctness and performance (#113)
|
|
11
|
+
* Added ---@plugin annotation to selectively disable parts of the plugin. Very similar to how ---@diagnostic works
|
|
12
|
+
* Correct type for `data:extend`'s argument (using `AnyPrototype` instead of `PrototypeBase`)
|
|
13
|
+
* Debugger:
|
|
14
|
+
* Correctly update breakpoints when edited (conditions, log message)
|
|
15
|
+
* Fixed that `__DebugAdapter.print()` and `log`, and logpoints would print messages with no trailing newline
|
|
16
|
+
|
|
17
|
+
## 1.1.39
|
|
18
|
+
* VSCode:
|
|
19
|
+
* Added commands to adjust config.ini settings (prototype cache, mouse auto capture)
|
|
20
|
+
* Check config.ini settings in Check Config
|
|
21
|
+
* Sumneko library package:
|
|
22
|
+
* Correctly mark function optional table params
|
|
23
|
+
* Fix `global` rename only being applied once per line
|
|
24
|
+
|
|
5
25
|
## 1.1.38
|
|
6
26
|
* Debugger:
|
|
7
27
|
* Pass `SteamAppId` environment variable instead of trying to create `steam_appid.txt`
|
|
@@ -11,7 +31,7 @@
|
|
|
11
31
|
* Added Check Config command (run from command pallete)
|
|
12
32
|
* Sumneko library package:
|
|
13
33
|
* Updated library generator remaining runtime types
|
|
14
|
-
* Split up table types with variant_parameter_groups for
|
|
34
|
+
* Split up table types with variant_parameter_groups for better diagnostics
|
|
15
35
|
|
|
16
36
|
## 1.1.37
|
|
17
37
|
* No longer use `keytar` which VSCode has removed.
|