@needmoretruth/nmts-cli 0.36.2 → 0.36.3
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 +5 -0
- package/README.ko.md +1 -1
- package/README.md +1 -1
- package/dist/artifact-about.d.ts +1 -1
- package/dist/help.js +3 -3
- package/dist/product.d.ts +1 -1
- package/dist/product.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,11 @@
|
|
|
3
3
|
Each version's entry is what changed for the person or the program using `nmts`. The product's own
|
|
4
4
|
update history, which covers the site and the server too, is at https://nmts.me/updates.
|
|
5
5
|
|
|
6
|
+
## 0.36.3 — 2026-09-19
|
|
7
|
+
|
|
8
|
+
- `--help` had the `--on-collision` lines in the middle of the `--part-size` description, so the
|
|
9
|
+
second half of that description read as part of the other option. The two are separate again.
|
|
10
|
+
|
|
6
11
|
## 0.36.2 — 2026-09-19
|
|
7
12
|
|
|
8
13
|
- On Windows, `platform keygen` now restricts the key file instead of only reporting that no file
|
package/README.ko.md
CHANGED
|
@@ -50,7 +50,7 @@ nmts --help
|
|
|
50
50
|
|
|
51
51
|
```sh
|
|
52
52
|
npm install -g github:needmoretruth/nmts-cli # 기본 브랜치
|
|
53
|
-
npm install -g github:needmoretruth/nmts-cli#v0.36.
|
|
53
|
+
npm install -g github:needmoretruth/nmts-cli#v0.36.3 # 버전을 고정할 때
|
|
54
54
|
npm install -g https://github.com/needmoretruth/nmts-cli/releases/latest/download/nmts.tgz
|
|
55
55
|
```
|
|
56
56
|
|
package/README.md
CHANGED
|
@@ -51,7 +51,7 @@ default branch, from a pinned version, or from the tarball attached to the
|
|
|
51
51
|
|
|
52
52
|
```sh
|
|
53
53
|
npm install -g github:needmoretruth/nmts-cli # the default branch
|
|
54
|
-
npm install -g github:needmoretruth/nmts-cli#v0.36.
|
|
54
|
+
npm install -g github:needmoretruth/nmts-cli#v0.36.3 # a pinned version
|
|
55
55
|
npm install -g https://github.com/needmoretruth/nmts-cli/releases/latest/download/nmts.tgz
|
|
56
56
|
```
|
|
57
57
|
|
package/dist/artifact-about.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export declare const CRYPTO_SPEC_URL = "https://github.com/needmoretruth/nmts-re
|
|
|
11
11
|
* is the field's own contract — what the writer says about itself — and a person holding two
|
|
12
12
|
* copies of one account's artefacts can then tell which program made each.
|
|
13
13
|
*/
|
|
14
|
-
export declare const WRITTEN_BY = "nmts-cli 0.36.
|
|
14
|
+
export declare const WRITTEN_BY = "nmts-cli 0.36.3";
|
|
15
15
|
/** Which of the three artefacts a wrapper is. A reader holding several can sort them. */
|
|
16
16
|
export type ArtifactKind = "recovery-list" | "file-list" | "recovery-kit";
|
|
17
17
|
/**
|
package/dist/help.js
CHANGED
|
@@ -93,7 +93,7 @@ export function helpText(version) {
|
|
|
93
93
|
` unstar <files> Take the star off`,
|
|
94
94
|
` pin <files> Hold files at the top of the folder they are in`,
|
|
95
95
|
` unpin <files> Let them fall back into the ordinary order`,
|
|
96
|
-
` label <name> <files> Put one label on files. A label exists while a file
|
|
96
|
+
` label <name> <files> Put one label on files. A label exists while a file has it`,
|
|
97
97
|
` unlabel <name> <files>`,
|
|
98
98
|
` Take one label off files`,
|
|
99
99
|
` share <path> <addr> Give one file to another account. Withdrawing does not recall it.`,
|
|
@@ -193,10 +193,10 @@ export function helpText(version) {
|
|
|
193
193
|
` would install, and stop (update). With \`extend\` and \`--pay`,
|
|
194
194
|
` wallet\` nothing is signed and the wallet key is never touched`,
|
|
195
195
|
` --part-size <n> Bytes per part for a large upload (put, push). Default 64MiB.`,
|
|
196
|
+
` A plain number, or one with KiB, MiB or GiB. Bigger parts mean`,
|
|
197
|
+
` fewer purchases; smaller parts use less memory`,
|
|
196
198
|
` --on-collision <what> rename | overwrite, for THIS run only (put, push). Without it the`,
|
|
197
199
|
` machine's own setting decides -- see \`${BINARY_NAME} on-collision\`.`,
|
|
198
|
-
` a plain number, or one with KiB, MiB or GiB. Bigger parts mean`,
|
|
199
|
-
` fewer purchases; smaller parts use less memory`,
|
|
200
200
|
` --deposit <n> Credits THIS upload sets aside per file, 0 to 64 (put, push, with`,
|
|
201
201
|
` credits). Without it the account's own default decides -- see`,
|
|
202
202
|
` \`${BINARY_NAME} deposit\`. 0 means a later release costs twice the fee`,
|
package/dist/product.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export declare const BINARY_NAME = "nmts";
|
|
|
9
9
|
* beside it. Here rather than in `main.ts` because the MCP server has to say it too, and a
|
|
10
10
|
* command importing the entry point is a cycle waiting to bite.
|
|
11
11
|
*/
|
|
12
|
-
export declare const VERSION = "0.36.
|
|
12
|
+
export declare const VERSION = "0.36.3";
|
|
13
13
|
/** Where the product lives, for messages that need to send somebody somewhere real. */
|
|
14
14
|
export declare const HOME_URL = "https://nmts.me";
|
|
15
15
|
/** The source, so a person holding only the built program can find what it was built from. */
|
package/dist/product.js
CHANGED
|
@@ -18,7 +18,7 @@ export const BINARY_NAME = "nmts";
|
|
|
18
18
|
* beside it. Here rather than in `main.ts` because the MCP server has to say it too, and a
|
|
19
19
|
* command importing the entry point is a cycle waiting to bite.
|
|
20
20
|
*/
|
|
21
|
-
export const VERSION = "0.36.
|
|
21
|
+
export const VERSION = "0.36.3";
|
|
22
22
|
/** Where the product lives, for messages that need to send somebody somewhere real. */
|
|
23
23
|
export const HOME_URL = "https://nmts.me";
|
|
24
24
|
/** The source, so a person holding only the built program can find what it was built from. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@needmoretruth/nmts-cli",
|
|
3
|
-
"version": "0.36.
|
|
3
|
+
"version": "0.36.3",
|
|
4
4
|
"description": "Command-line and MCP access to NMTS (NeedMoreTruthStorage, https://nmts.me): open-source, end-to-end encrypted storage on the Walrus network. No fee to NMTS; you pay the network from your own wallet. For people and for their agents.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"publishConfig": {
|