cwbridge 2.0.0 → 2.1.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/README.md CHANGED
@@ -10,6 +10,18 @@ minimal launcher; it does not include the Python source code.
10
10
  npx --yes cwbridge
11
11
  ```
12
12
 
13
+ If you want the `cwbridge` command to come from the npm prefix instead of a
14
+ temporary npx cache, install the package globally:
15
+
16
+ ```powershell
17
+ npm install -g cwbridge
18
+ cwbridge --version
19
+ ```
20
+
21
+ The npm global prefix must be on your PATH (`npm prefix -g` prints it), then
22
+ plain `cwbridge` works in every new terminal. Update it with
23
+ `npm install -g cwbridge@latest` and remove it with `npm uninstall -g cwbridge`.
24
+
13
25
  Pass normal CWBridge arguments after the command, for example:
14
26
 
15
27
  ```powershell
@@ -25,6 +37,17 @@ the newest launcher with:
25
37
  npx --yes cwbridge@latest
26
38
  ```
27
39
 
40
+ An installed CWBridge can also update itself explicitly:
41
+
42
+ ```powershell
43
+ cwbridge update --check
44
+ cwbridge update
45
+ ```
46
+
47
+ These commands download the published package, verify the registry's integrity
48
+ digest and replace the installed executable. Nothing is checked or installed
49
+ automatically, and `cwbridge version` reports the installed build and paths.
50
+
28
51
  Set `CWBRIDGE_NO_UPDATE_CHECK=1` to disable the launcher update check.
29
52
 
30
53
  This package is currently Windows x64 only.
package/bin/cwbridge.exe CHANGED
@@ -1,4 +1,4 @@
1
1
  [diffend] Oversized file quarantined before diffing.
2
2
  name: package/bin/cwbridge.exe
3
- size: 51337789 bytes
4
- sha256: 013119a9f4092606338f36c6a865845aa61ab08f906cd5831dd7578609be53db
3
+ size: 51440144 bytes
4
+ sha256: 8693d53912735e2ec18feb7488dd276aa1783e4b3f5f7f0a16e087616b4bc12c
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cwbridge",
3
- "version": "2.0.0",
3
+ "version": "2.1.0",
4
4
  "description": "Windows launcher for the compiled CWBridge executable",
5
5
  "license": "UNLICENSED",
6
6
  "private": false,