@nordicsemiconductor/pc-nrfconnect-shared 229.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,13 @@ 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
+
10
17
  ## 229.0.0 - 2025-09-30
11
18
 
12
19
  ### Fixed
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": "229.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,3 +1,4 @@
1
- ### Fixed
1
+ ### Added
2
2
 
3
- - Remove all event emitter listeners on shellParser `unregister`.
3
+ - Property `nrfConnectForDesktop.fixedSize` an app can specify, to have a
4
+ window with a fixed size, like the Quick Start app.