@microtronics/studio-cli 0.56.0 → 0.58.0
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 +31 -5
- package/dist/main.js +37 -36
- package/dist/studio-cli.d.ts +4 -1
- package/out/api.js +3 -2
- package/out/dde/coreDefinitions.js +18 -18
- package/out/dde/dde.js +5 -0
- package/out/dde/fileGenerators/dlo.js +6 -2
- package/out/dde/fileGenerators/dloLocalData.js +365 -0
- package/out/defaultFiles.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,39 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.
|
|
3
|
+
## 0.58.0 (2026-04-14)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
|
|
7
|
-
* add
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
7
|
+
* add live-data.inc file generation for DDE containers ([9a7d530](https://bitbucket.org/microtronics-core/vscode-studio/commits/9a7d53012f42d9cc2323a0129a3b64f6bda3a892))
|
|
8
|
+
* add local-data-interface include to DLO generator ([469a90f](https://bitbucket.org/microtronics-core/vscode-studio/commits/469a90f3bdfe6282f8acfa8601e213ddbf1cd52f))
|
|
9
|
+
* **cli:** improve local data generation ([79220ff](https://bitbucket.org/microtronics-core/vscode-studio/commits/79220ff4ee3ebaf9a8b20ea78514a8a6c47b8311))
|
|
10
|
+
* generate local data return functions ([7f73391](https://bitbucket.org/microtronics-core/vscode-studio/commits/7f733913b822d21816784af3c22512363b622ae6))
|
|
11
|
+
* rename to local data and improve return values ([01118e2](https://bitbucket.org/microtronics-core/vscode-studio/commits/01118e22c9c681b827f944df377e2f8a61f6d5d6))
|
|
12
|
+
* support library-prefixed field names in DLO local data ([9849f2a](https://bitbucket.org/microtronics-core/vscode-studio/commits/9849f2ab98e3877e5ff432b8088efd43141b28e0))
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* **cli:** correct memtostr return value in DLO local data generation ([6d73b2c](https://bitbucket.org/microtronics-core/vscode-studio/commits/6d73b2ccca4f31bfc960a255aea8442ee259338b))
|
|
17
|
+
* **cli:** format float values with 3 decimal precision in DLO local data ([4310acf](https://bitbucket.org/microtronics-core/vscode-studio/commits/4310acf36125447a54ef7f6379f9e873e7941122))
|
|
18
|
+
* correct indentation and remove debug log in DLO generator ([cac2070](https://bitbucket.org/microtronics-core/vscode-studio/commits/cac2070adbc648e7e328cec5072f8bd070ef9daf))
|
|
19
|
+
* correct Pawn syntax in DLO local data generation ([2640257](https://bitbucket.org/microtronics-core/vscode-studio/commits/2640257dbc90c4e59dd32c5d415e3fe19a75a946))
|
|
20
|
+
* define variable name generation for scale and offset ([203aa97](https://bitbucket.org/microtronics-core/vscode-studio/commits/203aa97c45fb73e42f68bf7c20ae762eabd97fb2)), closes [#bugfix-ready](https://bitbucket.org/microtronics-core/vscode-studio/issues/bugfix-ready)
|
|
21
|
+
* handle null printf format in DLO local data generation ([51b20ce](https://bitbucket.org/microtronics-core/vscode-studio/commits/51b20ce2e8e31614b2c60c1f36416bf38da82e7d))
|
|
22
|
+
|
|
23
|
+
## 0.57.0 (2026-03-25)
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* add development flag to install function ([6358d43](https://bitbucket.org/microtronics-core/vscode-studio/commits/6358d430c15174ea07b169e3da3e27b8a2561bd8))
|
|
28
|
+
|
|
29
|
+
## 0.56.0 (2026-03-24)
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
* add error handling for CLI task execution ([ef0dcf9](https://bitbucket.org/microtronics-core/vscode-studio/commits/ef0dcf90cea47447d4dbe2d83e29c3921a8dd6c9))
|
|
34
|
+
* auto-install npm deps in pov/blo during `studio install` ([18bef6b](https://bitbucket.org/microtronics-core/vscode-studio/commits/18bef6b7df9649c7da9951a3f4ab32d48dfd3e79))
|
|
35
|
+
* auto-link library blo/pov parts to project package.json ([8fe7829](https://bitbucket.org/microtronics-core/vscode-studio/commits/8fe78293b196da060da720c3c19723657f857cb9))
|
|
36
|
+
* replace console log with logger instance ([441bfea](https://bitbucket.org/microtronics-core/vscode-studio/commits/441bfea9acd8b26d2ff09fe8c23668e974440812))
|
|
11
37
|
* use `npm ci` instead of `npm install` for reproducible builds ([e7b6b16](https://bitbucket.org/microtronics-core/vscode-studio/commits/e7b6b1623a9f701d2687e92cfca89fe08ce3edc0))
|
|
12
38
|
|
|
13
39
|
## 0.55.0 (2026-03-24)
|