factoriomod-debug 1.1.43 → 1.1.45

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/mocharc",
3
3
  "extension": ["ts"],
4
- "require": "ts-node/register",
4
+ "require": "tsx",
5
5
  "spec": "test/**/*.spec.ts",
6
6
  "timeout": 60000
7
7
  }
package/CHANGELOG.md CHANGED
@@ -2,6 +2,30 @@
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.45
6
+ * Debugger
7
+ * Don't choke on metatables with broken metatables
8
+ * Add `readOnly` to `RenderOptions` for custom variable views
9
+ * Locale:
10
+ * Don't crash when diagnosing file with empty keys
11
+ * LuaLS library package:
12
+ * Remove hard-coded defines.prototype list, they're included in the json docs starting from Factorio 1.1.110
13
+
14
+ ## 1.1.44
15
+ * Debugger
16
+ * Set `SteamAppId` when launching for `--version`
17
+ * Fix Eval not available if not enough lua events running
18
+ * Pin GC-able values from eval results or `__DebugAdapter.print(obj)` to allow expanding (some) fields when not paused
19
+ * Display the registered name of metatables, if available
20
+ * Fix possible race when adjusting settings at launch
21
+ * VSCode:
22
+ * Check LuaLS plugin files in Check Config
23
+ * Cleanup mismatched workspace links when updating `Lua.workspace.userThirdParty`
24
+ * LuaLS library package:
25
+ * Plugin option `--ignore` to disable the plugin for certain files or folders
26
+ * Plugin option `--clusterio-modules` to enable handling clusterio requires
27
+ * Note that a bug in LuaLS 3.9.3 currently prevents passing more than one argument in some workspaces
28
+
5
29
  ## 1.1.43
6
30
  * Locale:
7
31
  * Don't emit documentSymbols with empty names (#118)
@@ -19,7 +43,7 @@
19
43
  * Fixed that `on_nth_tick` hook could hide errors for some incorrect calls
20
44
  * LuaLS library package:
21
45
  * Changed enums to generate typed values instead of `integer`
22
- * Generate overloads for `script.on_event`, removed plugin on_event module
46
+ * Generate overloads for `script.on_event`, removed plugin `on_event` module
23
47
  * Add Support for Factorio JSON Runtime Docs v5 (Factorio >= 1.1.108)
24
48
  * Remove Support for Factorio JSON Runtime Docs v3 (Factorio < 1.1.89)
25
49
  * Fill in `defines.prototypes` with dumped values instead of `{[string]:{[string]:0}}`