factoriomod-debug 1.1.28 → 1.1.30

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 ADDED
@@ -0,0 +1,6 @@
1
+ {
2
+ "reporter": [ "html", "lcov", "text" ],
3
+ "exclude-after-remap": true,
4
+ "extension": [ ".ts", ".lua" ],
5
+ "include": ["**/*.ts", "**/*.lua", "!**/import-glob*/**"]
6
+ }
package/.mocharc.json ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/mocharc",
3
+ "extension": ["ts"],
4
+ "require": "ts-node/register",
5
+ "spec": "test/**/*.spec.ts",
6
+ "timeout": 60000
7
+ }
package/CHANGELOG.md CHANGED
@@ -2,10 +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
+ ## 1.1.30
6
+ * Debugger:
7
+ * Fixed catching pcall/xpcall caught errors in settings & data stage
8
+ * Adjust breakpoints at end of file back to last active line
9
+ * Fixed some output events from lua not being emitted correctly
10
+ * VSCode:
11
+ * Don't try to auto-detect attached debugger to debug forked processes (false positive on some systems)
12
+
13
+
14
+ ## 1.1.29
15
+ * CLI:
16
+ * Added `fmtk settings unset` to remove a mod setting
17
+ * Various commands now set exitcode 1 when exiting with an error
18
+ * Changelog:
19
+ * Fixed some CodeActions providing incorrect fix edits
20
+ * Debugger:
21
+ * Abort launch when enabling `debugadapter` mod fails
22
+ * Correctly supports DAP clients using `path` path format instead of `uri`
23
+ * Sumneko plugin:
24
+ * Include `__modname__` tag when ingoring commands at start of line
25
+ * Strip file extension from slashed `require` paths to better match Factorio's resolution
26
+ * VSCode:
27
+ * Migrate Mod Portal API key from VSCode key storage to `keytar` for consistent behavior across packages
28
+ * Ignore key storage if key is set in environment
29
+ * Custom Editor for `mod-settings.dat`
30
+ * Re-check if active version is Steam before launching debug
31
+ * Experimental Read-only Editor for `script.dat` (saved `global` data)
32
+ * Plain lua values should all load correctly, but not all LuaObject types have been tested.
33
+
5
34
  ## 1.1.28
6
35
  * Debugger:
7
36
  * Fixed some cases where mods could clobber builtins that debugger relies on
8
37
  * Fixed breakpoint validation incorrectly moving breakpoints from valid locations
38
+
9
39
  ## 1.1.27
10
40
  * Tasks:
11
41
  * Fix PATH variable separator used on non-windows when adding `fmtk` from extension for scripts