@nordicsemiconductor/pc-nrfconnect-shared 173.0.0 → 175.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,21 +7,50 @@ 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
+ ## 175.0.0 - 2024-05-02
11
+
12
+ ### Updated
13
+
14
+ - Electron version to `30.0.2`
15
+ - @electron/remote to `2.1.2`
16
+
17
+ ## 174.0.0 - 2024-04-30
18
+
19
+ ### Added
20
+
21
+ - `setPaneDisabled` to disable a pane from the `NavMenu`.
22
+ - `setPaneHidden` to hide a pane from the `NavMenu`.
23
+ - `preHidden` and `preDisabled` properties in `Pane` type passed to `App`.
24
+ - Publish timestamp for nordic-publish for non-official sources.
25
+
26
+ #### Changed
27
+
28
+ - `currentPane` now returns the current pane name instead of index.
29
+ - Persisted `currentPane` value is now the pane name instead of index.
30
+
31
+ ### Removed
32
+
33
+ - Removed upload of legacy app info files when publishing apps.
34
+
35
+ ### Steps to upgrade when using this package
36
+
37
+ - Update all `currentPane` calls to work with strings instead of indexes.
38
+
10
39
  ## 173.0.0 - 2024-04-23
11
40
 
12
41
  ### Added
13
42
 
14
- - Support for splitting M1 and x64 nrfutil sandboxes
43
+ - Support for splitting M1 and x64 nrfutil sandboxes.
15
44
 
16
45
  ## 172.0.0 - 2024-04-15
17
46
 
18
47
  ### Fixed
19
48
 
20
- - nrf9151 and nrf9131 not have the modem trait set to true
49
+ - nrf9151 and nrf9131 not have the modem trait set to true.
21
50
 
22
51
  ### Changed
23
52
 
24
- - All `NRF91` devices are now considered to have modem trait
53
+ - All `NRF91` devices are now considered to have modem trait.
25
54
 
26
55
  ## 171.0.0 - 2024-04-04
27
56
 
package/ipc/MetaFiles.ts CHANGED
@@ -21,6 +21,7 @@ export type AppVersions = {
21
21
 
22
22
  export type AppVersion = {
23
23
  shasum?: string;
24
+ publishTimestamp?: string;
24
25
  tarballUrl: UrlString;
25
26
  nrfutilModules?: NrfutilModules;
26
27
  };
package/ipc/apps.ts CHANGED
@@ -34,6 +34,7 @@ interface Installed {
34
34
  repositoryUrl?: UrlString;
35
35
  html?: string;
36
36
  installed: {
37
+ publishTimestamp?: string;
37
38
  path: string;
38
39
  shasum?: string;
39
40
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nordicsemiconductor/pc-nrfconnect-shared",
3
- "version": "173.0.0",
3
+ "version": "175.0.0",
4
4
  "description": "Shared commodities for developing pc-nrfconnect-* packages",
5
5
  "repository": {
6
6
  "type": "git",
@@ -29,7 +29,7 @@
29
29
  "postinstall": "ts-node scripts/postinstall.ts"
30
30
  },
31
31
  "dependencies": {
32
- "@electron/remote": "^2.1.1",
32
+ "@electron/remote": "^2.1.2",
33
33
  "@mdi/font": "7.2.96",
34
34
  "@mdi/js": "^7.2.96",
35
35
  "@mdi/react": "^1.6.1",
@@ -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": "^28.1.4",
65
+ "electron": "^30.0.2",
66
66
  "electron-store": "8.1.0",
67
67
  "esbuild": "0.19.2",
68
68
  "esbuild-sass-plugin": "2.13.0",