@nordicsemiconductor/pc-nrfconnect-shared 228.0.0 → 230.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 +13 -0
- package/ipc/apps.ts +4 -0
- package/ipc/schema/packageJson.ts +6 -0
- package/package.json +1 -1
- package/release_notes.md +3 -8
- package/scripts/nordic-publish.js +12 -12
- package/src/Parsers/shellParser.ts +1 -0
- package/typings/generated/ipc/apps.d.ts +4 -0
- package/typings/generated/ipc/apps.d.ts.map +1 -1
- package/typings/generated/ipc/schema/packageJson.d.ts +78 -0
- package/typings/generated/ipc/schema/packageJson.d.ts.map +1 -1
- package/typings/generated/src/Parsers/shellParser.d.ts.map +1 -1
- package/typings/generated/src/utils/packageJson.d.ts +8 -0
- package/typings/generated/src/utils/packageJson.d.ts.map +1 -1
package/Changelog.md
CHANGED
|
@@ -7,6 +7,19 @@ 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
|
+
## 230.0.0 - 2025-10-01
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Property `nrfConnectForDesktop.fixedSize` an app can specify, to have a
|
|
15
|
+
window with a fixed size, like the Quick Start app.
|
|
16
|
+
|
|
17
|
+
## 229.0.0 - 2025-09-30
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- Remove all event emitter listeners on shellParser `unregister`.
|
|
22
|
+
|
|
10
23
|
## 228.0.0 - 2025-09-24
|
|
11
24
|
|
|
12
25
|
### Changed
|
package/ipc/apps.ts
CHANGED
|
@@ -28,6 +28,12 @@ const nrfConnectForDesktop = z.object({
|
|
|
28
28
|
nrfutil: nrfModules.optional(),
|
|
29
29
|
nrfutilCore: semver,
|
|
30
30
|
html: z.string(),
|
|
31
|
+
fixedSize: z
|
|
32
|
+
.object({
|
|
33
|
+
width: z.number().int().positive(),
|
|
34
|
+
height: z.number().int().positive(),
|
|
35
|
+
})
|
|
36
|
+
.optional(),
|
|
31
37
|
});
|
|
32
38
|
|
|
33
39
|
const recordOfOptionalStrings = z.record(z.string().optional());
|
package/package.json
CHANGED
package/release_notes.md
CHANGED
|
@@ -1,9 +1,4 @@
|
|
|
1
|
-
###
|
|
1
|
+
### Added
|
|
2
2
|
|
|
3
|
-
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
### Steps to upgrade when using this package
|
|
7
|
-
|
|
8
|
-
- In apps in `package.json` bump `nrfConnectForDesktop.nrfutilCore` to
|
|
9
|
-
`8.1.1`.
|
|
3
|
+
- Property `nrfConnectForDesktop.fixedSize` an app can specify, to have a
|
|
4
|
+
window with a fixed size, like the Quick Start app.
|