opscope 0.2.2 → 0.4.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.
Files changed (3) hide show
  1. package/README.md +14 -5
  2. package/package.json +4 -4
  3. package/platform.js +1 -1
package/README.md CHANGED
@@ -3,13 +3,17 @@
3
3
  Sci-fi terminal widgets that show only real data.
4
4
 
5
5
  ```sh
6
- npx opscope
6
+ npx opscope # the menu
7
+ npx opscope link # skip the menu; any widget name works
8
+ npx opscope@latest link # pin to latest, or @0.3.0, etc.
7
9
  ```
8
10
 
9
- That is the launcher: a menu of the fourteen widgets, or name one and skip
10
- it (`npx opscope latency`). The binaries it starts are the ones attached
11
- to the GitHub release of the same version `--version` on any of them
12
- answers with that version, commit and date.
11
+ That is the launcher: a menu of the fifteen widgets, or name one and skip
12
+ it. Only `opscope` is installed as a command; the other binaries stay beside
13
+ it, so `pr` and `link` never replace the coreutils commands of the same
14
+ name. The binaries it starts are the ones attached to the GitHub release of
15
+ the same version — `--version` on any of them answers with that version,
16
+ commit and date.
13
17
 
14
18
  ## Platforms
15
19
 
@@ -24,3 +28,8 @@ downloads the Linux binaries.
24
28
  ## Source
25
29
 
26
30
  <https://github.com/stealth-factory/opscope>
31
+
32
+ ## License
33
+
34
+ [GNU AGPL-3.0](LICENSE). Commercial licenses are available; write to
35
+ [email@wiiiimm.codes](mailto:email@wiiiimm.codes).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opscope",
3
- "version": "0.2.2",
3
+ "version": "0.4.0",
4
4
  "description": "Sci-fi terminal widgets that show only real data.",
5
5
  "bin": {
6
6
  "opscope": "bin/opscope"
@@ -9,9 +9,9 @@
9
9
  "postinstall": "node postinstall.js"
10
10
  },
11
11
  "optionalDependencies": {
12
- "opscope-linux-x64": "0.2.2",
13
- "opscope-darwin-arm64": "0.2.2",
14
- "opscope-darwin-x64": "0.2.2"
12
+ "opscope-linux-x64": "0.4.0",
13
+ "opscope-darwin-arm64": "0.4.0",
14
+ "opscope-darwin-x64": "0.4.0"
15
15
  },
16
16
  "files": [
17
17
  "bin",
package/platform.js CHANGED
@@ -84,7 +84,7 @@ function glibcTooOld(h) {
84
84
  return Boolean(h && h.os === 'linux' && h.glibc && !glibcAtLeast(h.glibc, MIN_GLIBC));
85
85
  }
86
86
 
87
- // The fourteen binaries, read from the manifest rather than restated.
87
+ // Every binary, read from the manifest rather than restated.
88
88
  // A restated list is how a fifteenth widget ships in the tarball and
89
89
  // not in the npm package, and the launcher then cannot launch it.
90
90
  // `[[bin]]` is the same list `opscope` already asserts against.