@nordicsemiconductor/pc-nrfconnect-shared 202.0.0 → 204.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 +20 -1
- package/nrfutil/device/logLibVersions.ts +2 -2
- package/nrfutil/moduleVersion.ts +1 -1
- package/package.json +1 -1
- package/src/About/ApplicationCard.tsx +1 -1
- package/src/utils/systemReport.ts +2 -2
- package/typings/generated/nrfutil/moduleVersion.d.ts +1 -1
- package/typings/generated/nrfutil/moduleVersion.d.ts.map +1 -1
package/Changelog.md
CHANGED
|
@@ -7,7 +7,26 @@ 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
|
-
##
|
|
10
|
+
## 204.0.0 - 2025-03-27
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- `nrf-probe` verison check for nrfutil device.
|
|
15
|
+
|
|
16
|
+
### Removed
|
|
17
|
+
|
|
18
|
+
- `nrfjprog` verison check for nrfutil device.
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- Text in the Application card of the About tab can now be highlightede and
|
|
23
|
+
copied.
|
|
24
|
+
- J-Link download URL for `JLink_MacOSX_V794i_universal.pkg` to
|
|
25
|
+
`JLink_MacOSX_V818_universal.pkg`
|
|
26
|
+
|
|
27
|
+
## 203.0.0 - 2025-03-05
|
|
28
|
+
|
|
29
|
+
Overrides v202 as it was released a prerelease.
|
|
11
30
|
|
|
12
31
|
### Added
|
|
13
32
|
|
|
@@ -78,7 +78,7 @@ export default async (moduleVersion: ModuleVersion) => {
|
|
|
78
78
|
|
|
79
79
|
log('nrfutil-device', moduleVersion.version);
|
|
80
80
|
log('nrf-device-lib', findDependency('nrfdl', dependencies));
|
|
81
|
-
log('
|
|
81
|
+
log('nrf-probe', findDependency('nrf-probe', dependencies));
|
|
82
82
|
log('JLink', findDependency('JlinkARM', dependencies));
|
|
83
83
|
|
|
84
84
|
const jlinkCompatibility = getJlinkCompatibility(moduleVersion);
|
|
@@ -123,7 +123,7 @@ export default async (moduleVersion: ModuleVersion) => {
|
|
|
123
123
|
`It looks like you have installed JLink using ${JLinkInstallerVersion}, but currently we only support their Universal Installer for your system.`
|
|
124
124
|
);
|
|
125
125
|
logger?.warn(
|
|
126
|
-
`Please install JLink: https://www.segger.com/downloads/jlink/
|
|
126
|
+
`Please install JLink: https://www.segger.com/downloads/jlink/JLink_MacOSX_V818_universal.pkg`
|
|
127
127
|
);
|
|
128
128
|
}
|
|
129
129
|
}
|
package/nrfutil/moduleVersion.ts
CHANGED
|
@@ -20,7 +20,7 @@ export const describeVersion = (dependencyOrVersion?: Dependency | string) => {
|
|
|
20
20
|
return 'Unknown';
|
|
21
21
|
};
|
|
22
22
|
|
|
23
|
-
type KnownModule = 'nrfdl' | '
|
|
23
|
+
type KnownModule = 'nrfdl' | 'nrf-probe' | 'JlinkARM';
|
|
24
24
|
|
|
25
25
|
const findTopLevel = (module: KnownModule, dependencies: Dependency[]) =>
|
|
26
26
|
dependencies.find(dependency => dependency.name === module);
|
package/package.json
CHANGED
|
@@ -25,7 +25,7 @@ export default () => {
|
|
|
25
25
|
|
|
26
26
|
return (
|
|
27
27
|
<Card title="Application">
|
|
28
|
-
<div className="tw-preflight tw-flex tw-flex-col tw-flex-wrap tw-gap-4">
|
|
28
|
+
<div className="tw-preflight tw-flex tw-select-text tw-flex-col tw-flex-wrap tw-gap-4">
|
|
29
29
|
<Section title="Title">{appInfo.displayName}</Section>
|
|
30
30
|
<Section title="Purpose">{appInfo.description}</Section>
|
|
31
31
|
<Section title="Version">{appInfo.currentVersion}</Section>
|
|
@@ -74,8 +74,8 @@ const generalInfoReport = async () => {
|
|
|
74
74
|
const dependencies = moduleVersion.dependencies;
|
|
75
75
|
result.push(
|
|
76
76
|
...[
|
|
77
|
-
` -
|
|
78
|
-
findDependency('
|
|
77
|
+
` - nrf-probe: ${describeVersion(
|
|
78
|
+
findDependency('nrf-probe', dependencies)
|
|
79
79
|
)}`,
|
|
80
80
|
` - SEGGER J-Link: ${describeVersion(
|
|
81
81
|
findDependency('JlinkARM', dependencies)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type Dependency, type TopLevelDependency } from './sandboxTypes';
|
|
2
2
|
export declare const describeVersion: (dependencyOrVersion?: Dependency | string) => string;
|
|
3
|
-
type KnownModule = 'nrfdl' | '
|
|
3
|
+
type KnownModule = 'nrfdl' | 'nrf-probe' | 'JlinkARM';
|
|
4
4
|
export declare const getExpectedVersion: (dependency: Dependency) => {
|
|
5
5
|
isExpectedVersion: boolean;
|
|
6
6
|
expectedVersion: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"moduleVersion.d.ts","sourceRoot":"","sources":["../../../nrfutil/moduleVersion.ts"],"names":[],"mappings":"AAOA,OAAO,EACH,KAAK,UAAU,EAEf,KAAK,kBAAkB,EAC1B,MAAM,gBAAgB,CAAC;AAGxB,eAAO,MAAM,eAAe,yBAA0B,UAAU,GAAG,MAAM,WAMxE,CAAC;AAEF,KAAK,WAAW,GAAG,OAAO,GAAG,
|
|
1
|
+
{"version":3,"file":"moduleVersion.d.ts","sourceRoot":"","sources":["../../../nrfutil/moduleVersion.ts"],"names":[],"mappings":"AAOA,OAAO,EACH,KAAK,UAAU,EAEf,KAAK,kBAAkB,EAC1B,MAAM,gBAAgB,CAAC;AAGxB,eAAO,MAAM,eAAe,yBAA0B,UAAU,GAAG,MAAM,WAMxE,CAAC;AAEF,KAAK,WAAW,GAAG,OAAO,GAAG,WAAW,GAAG,UAAU,CAAC;AAsBtD,eAAO,MAAM,kBAAkB,eAAgB,UAAU;;;QAaxD,CAAC;AAEF,eAAO,MAAM,cAAc,WACf,WAAW,aACT,kBAAkB,EAAE,KAC/B,UAAU,GAAG,SAC0D,CAAC;AAoB3E,eAAO,MAAM,gBAAgB,WAAY,MAAM,YAAY,MAAM,WAI/B,CAAC"}
|