factoriomod-debug 1.1.44 → 1.1.46
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/.mocharc.json +1 -1
- package/CHANGELOG.md +20 -0
- package/dist/Flamegraph.js +1 -1
- package/dist/ModSettingsWebview.css +1 -1
- package/dist/ModSettingsWebview.js +174 -174
- package/dist/ScriptDatWebview.css +1 -1
- package/dist/ScriptDatWebview.js +1 -1
- package/dist/{codicon-BEBTMDKB.ttf → codicon-QHVHTGEQ.ttf} +0 -0
- package/dist/fmtk-cli.js +271 -0
- package/dist/fmtk-vscode.js +214 -0
- package/dist/fmtk.js +222 -952
- package/doc/language.md +89 -1
- package/doc/variables.md +1 -0
- package/package.json +42 -41
package/.mocharc.json
CHANGED
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.46
|
|
6
|
+
* Improved Neovim setup docs (#132)
|
|
7
|
+
* VSCode's migration to ESM interally breaks context detection and requires splitting the all-in-one bundle. Now separate bundles for cli/vscode/shared.
|
|
8
|
+
* LuaLS library package:
|
|
9
|
+
* Add `data.ModSettingsPrototype` types for settings stage (#137)
|
|
10
|
+
* Add support for Factorio JSON Docs v6 (Factorio >= 2.0)
|
|
11
|
+
* Support generating from online docs (cli only for now)
|
|
12
|
+
* Debugger
|
|
13
|
+
* Fix error when listing LuaObjects with `operator[]` but no `operator#`
|
|
14
|
+
* Fix error when calling `__DebugAdapter.print(nil)`
|
|
15
|
+
|
|
16
|
+
## 1.1.45
|
|
17
|
+
* Debugger
|
|
18
|
+
* Don't choke on metatables with broken metatables
|
|
19
|
+
* Add `readOnly` to `RenderOptions` for custom variable views
|
|
20
|
+
* Locale:
|
|
21
|
+
* Don't crash when diagnosing file with empty keys
|
|
22
|
+
* LuaLS library package:
|
|
23
|
+
* Remove hard-coded defines.prototype list, they're included in the json docs starting from Factorio 1.1.110
|
|
24
|
+
|
|
5
25
|
## 1.1.44
|
|
6
26
|
* Debugger
|
|
7
27
|
* Set `SteamAppId` when launching for `--version`
|