@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 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
@@ -40,6 +40,10 @@ interface Installed {
40
40
  html?: string;
41
41
  nrfutil?: NrfutilModules;
42
42
  nrfutilCore?: NrfutilModuleVersion;
43
+ fixedSize?: {
44
+ width: number;
45
+ height: number;
46
+ };
43
47
  installed: {
44
48
  publishTimestamp?: string;
45
49
  path: string;
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nordicsemiconductor/pc-nrfconnect-shared",
3
- "version": "228.0.0",
3
+ "version": "230.0.0",
4
4
  "description": "Shared commodities for developing pc-nrfconnect-* packages",
5
5
  "repository": {
6
6
  "type": "git",
package/release_notes.md CHANGED
@@ -1,9 +1,4 @@
1
- ### Changed
1
+ ### Added
2
2
 
3
- - Bump the version of `nrfutil-core` for apps who do not declare it themselves
4
- to 8.1.1
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.