@nordicsemiconductor/pc-nrfconnect-shared 177.0.0 → 179.0.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
CHANGED
|
@@ -7,6 +7,23 @@ This project does _not_ adhere to
|
|
|
7
7
|
[Semantic Versioning](https://semver.org/spec/v2.0.0.html) but contrary to it
|
|
8
8
|
every new version is a new major version.
|
|
9
9
|
|
|
10
|
+
## 179.0.0 - 2024-06-20
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Electron dependency has been updated to 30.1.2
|
|
15
|
+
|
|
16
|
+
## 178.0.0 - 2024-06-11
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- `isDeviceInDFUBootloader` now also expect nordic DFU Trait to be true
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
|
|
24
|
+
- Wait for device `when='dfuBootLoaderMode'` will wait until nordic DFU Trait
|
|
25
|
+
is also present
|
|
26
|
+
|
|
10
27
|
## 177.0.0 - 2024-05-28
|
|
11
28
|
|
|
12
29
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nordicsemiconductor/pc-nrfconnect-shared",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "179.0.0",
|
|
4
4
|
"description": "Shared commodities for developing pc-nrfconnect-* packages",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"bootstrap": "4.6.2",
|
|
63
63
|
"commander": "10.0.0",
|
|
64
64
|
"date-fns": "2.29.3",
|
|
65
|
-
"electron": "^30.
|
|
65
|
+
"electron": "^30.1.2",
|
|
66
66
|
"electron-store": "8.1.0",
|
|
67
67
|
"esbuild": "0.19.2",
|
|
68
68
|
"esbuild-sass-plugin": "2.13.0",
|
|
@@ -47,7 +47,8 @@ export const isDeviceInDFUBootloader = (device: Device) => {
|
|
|
47
47
|
const { descriptor: d } = device.usb.device;
|
|
48
48
|
return (
|
|
49
49
|
d.idVendor === NORDIC_VENDOR_ID &&
|
|
50
|
-
d.idProduct === NORDIC_DFU_PRODUCT_ID
|
|
50
|
+
d.idProduct === NORDIC_DFU_PRODUCT_ID &&
|
|
51
|
+
!!device.traits.nordicDfu
|
|
51
52
|
);
|
|
52
53
|
}
|
|
53
54
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sdfuOperations.d.ts","sourceRoot":"","sources":["../../../../src/Device/sdfuOperations.ts"],"names":[],"mappings":";AAcA,OAAO,EAAE,QAAQ,EAAa,MAAM,UAAU,CAAC;AAE/C,OAAO,EAGH,iBAAiB,EACpB,MAAM,yBAAyB,CAAC;AACjC,OAAO,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEtD,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACvC,OAAO,EAGH,QAAQ,EAIX,MAAM,cAAc,CAAC;AAUtB,eAAO,MAAM,uBAAuB,WAAY,MAAM,
|
|
1
|
+
{"version":3,"file":"sdfuOperations.d.ts","sourceRoot":"","sources":["../../../../src/Device/sdfuOperations.ts"],"names":[],"mappings":";AAcA,OAAO,EAAE,QAAQ,EAAa,MAAM,UAAU,CAAC;AAE/C,OAAO,EAGH,iBAAiB,EACpB,MAAM,yBAAyB,CAAC;AACjC,OAAO,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEtD,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACvC,OAAO,EAGH,QAAQ,EAIX,MAAM,cAAc,CAAC;AAUtB,eAAO,MAAM,uBAAuB,WAAY,MAAM,YAkBrD,CAAC;AAEF,eAAO,MAAM,oBAAoB,WAAY,MAAM,YAOlD,CAAC;AA+GF,eAAO,MAAM,sBAAsB,WAEnB,MAAM,sBACM,MAAM,KAAK,IAAI,oBACjB,OAAO,KAAK,IAAI,KACnC,QAoBF,CAAC;AAEN,eAAO,MAAM,uBAAuB,WAEpB,MAAM,sBACM,MAAM,KAAK,IAAI,oBACjB,OAAO,KAAK,IAAI,sBACd,iBAAiB,KACtC,QAuBF,CAAC;AAiUN,eAAO,MAAM,eAAe,gBACX,QAAQ,EAAE,gEAEY,iBAAiB,KACrD,WAmDD,CAAC;;;;AAEH,wBAEE"}
|