factoriomod-debug 2.0.4 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "reporter": [ "html", "lcov", "text" ],
3
3
  "exclude-after-remap": true,
4
- "extension": [ ".ts", ".lua" ],
5
- "include": ["**/*.ts", "**/*.lua", "!**/import-glob*/**"]
4
+ "extension": [ ".ts" ],
5
+ "include": ["**/*.ts"]
6
6
  }
package/.mocharc.json CHANGED
@@ -3,5 +3,5 @@
3
3
  "extension": ["ts"],
4
4
  "require": "tsx",
5
5
  "spec": "test/**/*.spec.ts",
6
- "timeout": 60000
6
+ "timeout": 90000
7
7
  }
package/CHANGELOG.md CHANGED
@@ -2,6 +2,40 @@
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
+
31
+ ## 2.0.5
32
+ * Changelog LSP:
33
+ * updated list of categories
34
+ * warning for duplicate lines
35
+ * Debugger:
36
+ * fix unclear error when indexing invalid fields on some hooked API objects
37
+ * fix on_event hook incorrectly erroring on Custom Input/Custom Event prototype registrations
38
+
5
39
  ## 2.0.4
6
40
  * LuaLS library package:
7
41
  * added types for `meld` library