factoriomod-debug 1.1.47 → 2.0.1
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 +16 -0
- package/dist/fmtk-cli.js +73 -73
- package/dist/fmtk-vscode.js +16 -16
- package/dist/fmtk.js +287 -206
- package/doc/language-lua.md +4 -4
- package/language/factorio-locale.json +1 -1
- package/language/factorio-locale.tmLanguage.json +11 -3
- package/package.json +16 -19
- package/schema/datainfo.json +29 -0
- package/schema/localeinfo.json +4 -0
- package/schema/mapgen.json +2 -2
- package/schema/mapsettings.json +1 -7
- package/schema/migration.json +28 -28
- package/schema/modinfo.json +2 -2
- package/schema/serversettings.json +12 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
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.1
|
|
6
|
+
* LuaLS library package:
|
|
7
|
+
* generate correct overloads for data.extend
|
|
8
|
+
* double-update `Lua.workspace.userThirdParty` when installing to trigger a library reload even if `Lua.workspace.library` was untouched
|
|
9
|
+
* Debugger
|
|
10
|
+
* Fix pause after threads request when unavailable
|
|
11
|
+
|
|
12
|
+
## 2.0.0
|
|
13
|
+
* Pre-release for Factorio 2.0
|
|
14
|
+
* LuaLS library package:
|
|
15
|
+
* `factorio.workspace.manageLibraryDataLinks` default changed to false, removes link when set to false
|
|
16
|
+
* Locale
|
|
17
|
+
* `__plural_for_parameter_x_` -> `__plural_for_parameter__x__`, new tags for 2.0
|
|
18
|
+
* Debugger
|
|
19
|
+
* Fix missing properties on some classes
|
|
20
|
+
|
|
5
21
|
## 1.1.47
|
|
6
22
|
* Fix tasks broken by bundling changes
|
|
7
23
|
|