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 +6 -0
- package/.mocharc.json +7 -0
- package/CHANGELOG.md +30 -0
- package/dist/Flamegraph.js +1 -1
- package/dist/ModSettingsWebview.css +2 -0
- package/dist/ModSettingsWebview.js +910 -0
- package/dist/ScriptDatWebview.css +2 -0
- package/dist/ScriptDatWebview.js +2 -0
- package/dist/codicon-BEBTMDKB.ttf +0 -0
- package/dist/fmtk.js +404 -247
- package/doc/debugadapter.md +4 -4
- package/doc/language-lua.md +2 -0
- package/doc/noncharacters.md +54 -0
- package/doc/workspace.md +4 -5
- package/package.json +42 -26
package/.c8rc.json
ADDED
package/.mocharc.json
ADDED
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
|