factoriomod-debug 2.0.5 → 2.0.7
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 +35 -0
- package/dist/ModSettingsWebview.js +274 -292
- package/dist/ScriptDatWebview.js +1 -1
- package/dist/chunk-RGWVOEC5.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 +60 -47
- 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,41 @@
|
|
|
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.7
|
|
6
|
+
* VSCode:
|
|
7
|
+
* Support online-docs-only options in version selector
|
|
8
|
+
* Active status no longer recorded in settings
|
|
9
|
+
* Autodetected and Online-only versons need not be listed in settings to be selected
|
|
10
|
+
* Debugger:
|
|
11
|
+
* Fixed that debug console would attempt to use `helpers.create_profiler` time commands in data stage
|
|
12
|
+
* Hide LuaEntity::crafting_speed in factorio 2.0.56/57 due to a crash
|
|
13
|
+
|
|
14
|
+
## 2.0.6
|
|
15
|
+
* VSCode:
|
|
16
|
+
* Migrate extension to ESM. Requires VSCode >=1.100
|
|
17
|
+
* Changed some required prompts to modal, so they cut through Do Not Disturb instead of appearing to do nothing
|
|
18
|
+
* LuaLS library package:
|
|
19
|
+
* remove `(exact)` from generated class `event_handler.events`
|
|
20
|
+
* set `"Lua.language.fixIndent": false` by default due to bugs in LuaLS causing incorrect code deletions
|
|
21
|
+
* `sound-util` library (#171)
|
|
22
|
+
* `LuaObject` inherits from `userdata` (#170)
|
|
23
|
+
* Add `feature_flags` global var for data stage
|
|
24
|
+
* Omit `GuiStyle` from `AnyPrototype`, to reduce incorrect type deduction on data:extend's argument
|
|
25
|
+
* `LuaObject`s now narrow on `object_name` without plugin assistance
|
|
26
|
+
* include string builtin event name overloads for `on_event`, and fields in `event_handler.events`
|
|
27
|
+
* add deprecation tags on defines.inventory
|
|
28
|
+
* fix incorrectly generated type on defines.prototypes
|
|
29
|
+
* Debugger:
|
|
30
|
+
* fix incorrect error when remote.call is called with invalid arguments
|
|
31
|
+
* fix incorrect nesting of values in Output events
|
|
32
|
+
* `__DebugAdapter.restart()` api for code to request a session restart
|
|
33
|
+
* factorio custom-input `ctrl-shift-F5` to restart session from within factorio
|
|
34
|
+
* fix incorrect error handling when hitting and error while stepping over in data stage
|
|
35
|
+
* JSON Schema:
|
|
36
|
+
* Fix some regex validations to correctly match the whole value
|
|
37
|
+
* Changelog LSP:
|
|
38
|
+
* Complete rewrite. Improved diagnostics and auto-fixes.
|
|
39
|
+
|
|
5
40
|
## 2.0.5
|
|
6
41
|
* Changelog LSP:
|
|
7
42
|
* updated list of categories
|