factoriomod-debug 2.0.5 → 2.0.6
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/.c8rc.json +2 -2
- package/.mocharc.json +1 -1
- package/CHANGELOG.md +26 -0
- package/dist/ModSettingsWebview.js +274 -292
- package/dist/ScriptDatWebview.js +1 -1
- package/dist/chunk-M5LZ6CNU.js +3420 -0
- package/dist/chunk-ZLQDNPPN.js +36 -0
- package/dist/fmtk-cli.js +97 -193
- package/dist/fmtk-vscode.js +25 -58
- package/dist/multipart-parser-3M5RC66T.js +7 -0
- package/doc/debugapi.md +4 -0
- package/doc/internal/noncharacters.md +1 -0
- package/doc/language-lua.md +0 -4
- package/eslint.config.ts +102 -0
- package/package.json +32 -25
- package/schema/campaign.json +1 -1
- package/schema/datainfo.json +4 -4
- package/schema/localeinfo.json +1 -1
- package/schema/mapgen.json +1 -1
- package/schema/mapsettings.json +1 -1
- package/schema/migration.json +1 -1
- package/schema/modinfo.json +1 -1
- package/schema/scenario.json +1 -1
- package/schema/serversettings.json +1 -1
- package/dist/fmtk.js +0 -3406
package/.c8rc.json
CHANGED
package/.mocharc.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,32 @@
|
|
|
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
|
+
## 2.0.6
|
|
6
|
+
* VSCode:
|
|
7
|
+
* Migrate extension to ESM. Requires VSCode >=1.100
|
|
8
|
+
* Changed some required prompts to modal, so they cut through Do Not Disturb instead of appearing to do nothing
|
|
9
|
+
* LuaLS library package:
|
|
10
|
+
* remove `(exact)` from generated class `event_handler.events`
|
|
11
|
+
* set `"Lua.language.fixIndent": false` by default due to bugs in LuaLS causing incorrect code deletions
|
|
12
|
+
* `sound-util` library (#171)
|
|
13
|
+
* `LuaObject` inherits from `userdata` (#170)
|
|
14
|
+
* Add `feature_flags` global var for data stage
|
|
15
|
+
* Omit `GuiStyle` from `AnyPrototype`, to reduce incorrect type deduction on data:extend's argument
|
|
16
|
+
* `LuaObject`s now narrow on `object_name` without plugin assistance
|
|
17
|
+
* include string builtin event name overloads for `on_event`, and fields in `event_handler.events`
|
|
18
|
+
* add deprecation tags on defines.inventory
|
|
19
|
+
* fix incorrectly generated type on defines.prototypes
|
|
20
|
+
* Debugger:
|
|
21
|
+
* fix incorrect error when remote.call is called with invalid arguments
|
|
22
|
+
* fix incorrect nesting of values in Output events
|
|
23
|
+
* `__DebugAdapter.restart()` api for code to request a session restart
|
|
24
|
+
* factorio custom-input `ctrl-shift-F5` to restart session from within factorio
|
|
25
|
+
* fix incorrect error handling when hitting and error while stepping over in data stage
|
|
26
|
+
* JSON Schema:
|
|
27
|
+
* Fix some regex validations to correctly match the whole value
|
|
28
|
+
* Changelog LSP:
|
|
29
|
+
* Complete rewrite. Improved diagnostics and auto-fixes.
|
|
30
|
+
|
|
5
31
|
## 2.0.5
|
|
6
32
|
* Changelog LSP:
|
|
7
33
|
* updated list of categories
|