factoriomod-debug 1.1.26 → 1.1.27
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/CHANGELOG.md +22 -0
- package/dist/Flamegraph.js +1 -1
- package/dist/fmtk.js +498 -290
- package/doc/debugadapter.md +4 -4
- package/doc/language-lua.md +5 -1
- package/doc/package.md +15 -1
- package/doc/workspace.md +1 -1
- package/language/factorio-locale.tmLanguage.json +2 -10
- package/package.json +24 -15
- package/readme.md +1 -1
- package/schema/datainfo.json +6 -3
- package/schema/modinfo.json +55 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,28 @@
|
|
|
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.27
|
|
6
|
+
* Tasks:
|
|
7
|
+
* Fix PATH variable separator used on non-windows when adding `fmtk` from extension for scripts
|
|
8
|
+
* added `fmtk details` to update mod details and gallery from info.json, readme.md, faq.md
|
|
9
|
+
* CLI tasks store api key in OS keychain if available
|
|
10
|
+
* Locale:
|
|
11
|
+
* Various TextMate grammar tweaks
|
|
12
|
+
* New AST-based parser for more accurate LSP features
|
|
13
|
+
* Mod Manager:
|
|
14
|
+
* `fmtk mod install` can now download from portal
|
|
15
|
+
* Debugger:
|
|
16
|
+
* Moved `modsPath` deduction from environment from extension to common DAP code
|
|
17
|
+
* Fixed conditional breakpoints not skipping correctly
|
|
18
|
+
* Fixed display of fetchable functions on LuaObjects with json v3
|
|
19
|
+
* Breakpoints now start unverified until the file is loaded
|
|
20
|
+
* Disassembly now formats instruction raw bytes with leading zeros
|
|
21
|
+
* Use `console` type Output Events for messages printed from debugger internals
|
|
22
|
+
* Profiler:
|
|
23
|
+
* Fixed some instances of profiler UI not being created/disposed correctly
|
|
24
|
+
* Sumneko plugin:
|
|
25
|
+
* Ignore `/c`, `/command`, `/sc`, etc at start of a line
|
|
26
|
+
|
|
5
27
|
## 1.1.26
|
|
6
28
|
|
|
7
29
|
* Fixed debugadapter mod package bundled incorrectly (for real this time)
|