factoriomod-debug 2.0.7 → 2.0.9
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 +25 -2
- package/dist/Flamegraph.js +1 -1
- package/dist/ModSettingsWebview.css +1 -1
- package/dist/ModSettingsWebview.js +3 -3
- package/dist/ScriptDatWebview.css +1 -1
- package/dist/ScriptDatWebview.js +1 -1
- package/dist/chunk-LMNAIRFX.js +148 -0
- package/dist/{codicon-QHVHTGEQ.ttf → codicon-IEQOYIYN.ttf} +0 -0
- package/dist/fmtk-cli.js +77 -79
- package/dist/fmtk-vscode.js +13 -172
- package/eslint.config.ts +3 -3
- package/package.json +42 -33
- package/postinstall.ts +8 -0
- package/schema/migration.json +17 -2
- package/schema/modinfo.json +9 -0
- package/.mocharc.json +0 -7
- package/dist/chunk-RGWVOEC5.js +0 -3420
- package/dist/chunk-ZLQDNPPN.js +0 -36
- package/dist/multipart-parser-3M5RC66T.js +0 -7
package/CHANGELOG.md
CHANGED
|
@@ -2,14 +2,37 @@
|
|
|
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.9
|
|
6
|
+
* JSON Schema:
|
|
7
|
+
* Added several missing types to migration schema, warn on unknown types
|
|
8
|
+
* Tasks:
|
|
9
|
+
* Don't escape `&` in markdown files
|
|
10
|
+
* Use [dateformat](https://www.npmjs.com/package/dateformat) for generating changelog datestamps
|
|
11
|
+
* `package.datestamp_format` to set the format to anything supported by `dateformat` (default `isoDate`)
|
|
12
|
+
* named format `factorioDate` to match factorio's `dd. mm. yyyy`
|
|
13
|
+
* LuaLS library package:
|
|
14
|
+
* Add `feature_flags` global var for data stage (for real this time)
|
|
15
|
+
* Fix some parent class links generated incorrectly with `.struct` suffixes
|
|
16
|
+
* VSCode:
|
|
17
|
+
* updated `script.dat` viewer
|
|
18
|
+
* Sync Mod Details task now works correctly when launched from vscode
|
|
19
|
+
|
|
20
|
+
## 2.0.8
|
|
21
|
+
* Debugger:
|
|
22
|
+
* Add missing locale for Restart Session control
|
|
23
|
+
* Fix incorrectly not firing Loaded Sources events when no breakpoints in file
|
|
24
|
+
* LuaLS library package:
|
|
25
|
+
* Fix incorrectly generating types `data.number` and `data.table` in prototype docs
|
|
26
|
+
* Fix comments ending with a dot on the line before `storage` making the plugin not transform it into the mod specific `storage`
|
|
27
|
+
|
|
5
28
|
## 2.0.7
|
|
6
29
|
* VSCode:
|
|
7
30
|
* Support online-docs-only options in version selector
|
|
8
31
|
* Active status no longer recorded in settings
|
|
9
32
|
* Autodetected and Online-only versons need not be listed in settings to be selected
|
|
10
33
|
* Debugger:
|
|
11
|
-
* Fixed that debug console would attempt to use `helpers.create_profiler` time commands in data stage
|
|
12
|
-
* Hide LuaEntity::crafting_speed in factorio 2.0.56/57 due to a crash
|
|
34
|
+
* Fixed that debug console would attempt to use `helpers.create_profiler` to time commands in data stage
|
|
35
|
+
* Hide `LuaEntity::crafting_speed` in factorio 2.0.56/57 due to a crash
|
|
13
36
|
|
|
14
37
|
## 2.0.6
|
|
15
38
|
* VSCode:
|