@microtronics/studio-cli 0.61.0 → 0.63.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 +15 -3
- package/README.md +17 -0
- package/dist/main.js +54 -57
- package/dist/studio-cli.d.ts +1 -0
- package/out/api.js +137 -149
- package/out/studio-cli.d.ts +5297 -0
- package/package.json +4 -4
- package/out/DeviceProfiles.js +0 -436
- package/out/FS.js +0 -43
- package/out/crc.js +0 -93
- package/out/dde/coreDefinitions.js +0 -541
- package/out/dde/dde.js +0 -618
- package/out/dde/dynamic-dde.schema.json +0 -1061
- package/out/dde/fileGenerators/api.js +0 -688
- package/out/dde/fileGenerators/dlo.js +0 -1014
- package/out/dde/fileGenerators/dloLocalData.js +0 -387
- package/out/dde/fileGenerators/xml.js +0 -180
- package/out/dde/yamlDdePreCompiler.js +0 -889
- package/out/defaultFiles.js +0 -114
- package/out/dependencies.js +0 -578
- package/out/dfiles/dfiles.js +0 -205
- package/out/diagnostics.js +0 -10
- package/out/dlo/CustomWasmFS.js +0 -258
- package/out/dlo/compiler.js +0 -231
- package/out/dlo/dlo.js +0 -33
- package/out/dlo/dlocc.js +0 -3799
- package/out/dlo/fileSequencer.js +0 -40
- package/out/dlo/preCompiler.js +0 -442
- package/out/dotenv.js +0 -28
- package/out/globals.js +0 -402
- package/out/helper.js +0 -145
- package/out/log.js +0 -60
- package/out/manifest.js +0 -492
- package/out/myDatanetClient.js +0 -291
- package/out/package/apm.js +0 -294
- package/out/package/library.js +0 -165
- package/out/package/package.js +0 -518
- package/out/registryAPI.js +0 -326
- package/out/scriptRunner.js +0 -107
- package/out/typings/registry.js +0 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.
|
|
3
|
+
## 0.63.0 (2026-05-07)
|
|
4
4
|
|
|
5
|
-
###
|
|
5
|
+
### Features
|
|
6
6
|
|
|
7
|
-
* **
|
|
7
|
+
* **dlo:** optimize array field serialization with loop generation ([27353c9](https://bitbucket.org/microtronics-core/vscode-studio/commits/27353c9909126d5f1001e65c11f9a2cbb8ddc557))
|
|
8
|
+
|
|
9
|
+
## 0.62.0 (2026-04-23)
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* first version to sync a device with usb ([dec8608](https://bitbucket.org/microtronics-core/vscode-studio/commits/dec8608fa40c05d77fa1b53bc11691da2b2e560a))
|
|
14
|
+
|
|
15
|
+
## 0.61.0 (2026-04-22)
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **cli:** correct dimension define reference for structured array blob fields ([3f3e551](https://bitbucket.org/microtronics-core/vscode-studio/commits/3f3e551c202f2f84032d6b1dec1ffa4b6c43679f))
|
|
8
20
|
* **cli:** suppress warning 224 in binary format helper function ([3525494](https://bitbucket.org/microtronics-core/vscode-studio/commits/352549496a7a88b8edcf98bf777ec4052c94e87c)), closes [#pragma](https://bitbucket.org/microtronics-core/vscode-studio/issues/pragma)
|
|
9
21
|
|
|
10
22
|
## 0.60.0 (2026-04-16)
|
package/README.md
CHANGED
|
@@ -211,6 +211,23 @@ $ studio-cli usb upload -s 1234567890ABCDEF -f ./app.amx
|
|
|
211
211
|
$ studio-cli usb upload -s 1234567890ABCDEF -f ./app.amx --debug
|
|
212
212
|
```
|
|
213
213
|
|
|
214
|
+
#### usb sync
|
|
215
|
+
Sync a USB device with the myDatanet server. This triggers a full device synchronization including optional MNT and MDN communication phases.
|
|
216
|
+
|
|
217
|
+
```console
|
|
218
|
+
$ studio-cli usb sync -s <serial> [--debug]
|
|
219
|
+
```
|
|
220
|
+
|
|
221
|
+
**Options:**
|
|
222
|
+
- `-s, --serial <serial>` - Device serial number (16 characters hex) **[required]**
|
|
223
|
+
- `--debug` - Enable debug logging (shows sync mode, phases, and message counts)
|
|
224
|
+
|
|
225
|
+
**Example:**
|
|
226
|
+
```console
|
|
227
|
+
$ studio-cli usb sync -s 1234567890ABCDEF
|
|
228
|
+
$ studio-cli usb sync -s 1234567890ABCDEF --debug
|
|
229
|
+
```
|
|
230
|
+
|
|
214
231
|
## Development
|
|
215
232
|
|
|
216
233
|
Execute commands from the root dir
|