Skip to content

Commit 2354bd5

Browse files
BaiiYuanByron Lee
and
Byron Lee
authored
Prepare for release 1.4.1 (#62)
* Rename Chrome OS to ChromeOS * Prepare for release 1.4.1 --------- Co-authored-by: Byron Lee <[email protected]>
1 parent 8a918cf commit 2354bd5

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# Telemetry Support Library for Chrome OS
1+
# Telemetry Support Library for ChromeOS
22

33
This repository contains a library code that facilitates access to the telemetry
4-
and diagnostics APIs on Chrome OS.
4+
and diagnostics APIs on ChromeOS.
55

66
The code in this repository contains most of the code from
77
[dpsl](https://source.chromium.org/chromium/chromium/src/+/main:ash/webui/telemetry_extension_ui/resources/dpsl/)
8-
and is tweaked to integrate with the Chrome OS system extension APIs.
8+
and is tweaked to integrate with the ChromeOS system extension APIs.
99

10-
# Usages
10+
## Usages
1111

1212
The library is published via npm and can be included by importing code.
1313
The importing code represents a special type of chrome extensions
@@ -22,7 +22,7 @@ Publishing status: published in [npm](https://www.npmjs.com/package/cros-dpsl-js
2222

2323
1. `npm install cros-dpsl-js`
2424
2. Import the package in your source code: `import { dpsl } from 'cros-dpsl-js';`
25-
3. Begin using the library through the dpsl.* namespace.
25+
3. Begin using the library through the dpsl.\* namespace.
2626
4. See the currently supported APIs and sample usages in [src/README.md](https://github.com/GoogleChromeLabs/telemetry-support-extension-for-chromeos/blob/main/src/README.md).
2727

2828
Currently, the library is integrated in another project. Refer to usages to know more: [cros-sample-telemetry-extension](https://github.com/GoogleChromeLabs/cros-sample-telemetry-extension).

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "cros-dpsl-js",
3-
"version": "1.4.0",
4-
"description": "Diagnostics processor support library for Chrome OS",
3+
"version": "1.4.1",
4+
"description": "Diagnostics processor support library for ChromeOS",
55
"main": "./src/dpsl.js",
66
"exports": "./src/dpsl.js",
77
"directories": {

src/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class Routine {
109109
#### Important Notes regarding routine's id
110110
- The code (chrome browser extension) that uses the library needs to remember the routine's id so that it can perform operations on it (i.e. Routine.getStatus()) after the service worker is restarted.
111111

112-
- Chrome OS doesn't persist routines across reboots. This means that depending code must not rely on routines created in previous sessions.
112+
- ChromeOS doesn't persist routines across reboots. This means that depending code must not rely on routines created in previous sessions.
113113

114114
- Routine's id usually starts with 0.
115115

0 commit comments

Comments
 (0)