@roman-16/proton-cli-win32-x64 2.2.2 → 2.3.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
@@ -86,6 +86,7 @@ Threads, attachments, filters, and auto-reply. → [Mail](https://github.com/rom
86
86
  ```bash
87
87
  proton-cli drive items list /Documents
88
88
  proton-cli drive items upload --recursive ./project /Backup
89
+ proton-cli drive items upload --if-exists replace ./report.pdf /Documents
89
90
  proton-cli drive items download /Documents/report.pdf --output-dir .
90
91
  proton-cli drive items move /Documents/report.pdf --into /Archive
91
92
  proton-cli drive share link /Documents/report.pdf --expires 7d --password hunter2
@@ -146,7 +147,7 @@ Profiles and per-app settings. → [Account](https://github.com/roman-16/proton-
146
147
 
147
148
  ```bash
148
149
  # creating something prints its new ID to stdout
149
- ID=$(proton-cli mail settings labels create --name Work --color "#8080FF")
150
+ ID=$(proton-cli mail settings labels create --name Work --color purple)
150
151
 
151
152
  # every list is an envelope keyed by its plural name, always with a count
152
153
  proton-cli mail messages list --unread --output json | jq -r '.messages[].subject'
@@ -189,11 +190,13 @@ Everything lives in [`docs/`](https://github.com/roman-16/proton-cli/blob/main/d
189
190
  | [How it works](https://github.com/roman-16/proton-cli/blob/main/docs/how-it-works.md) | Login, keys, what's encrypted with what |
190
191
  | [Limitations](https://github.com/roman-16/proton-cli/blob/main/docs/limitations.md) | Platform constraints and gaps |
191
192
 
193
+ [`CHANGELOG.md`](https://github.com/roman-16/proton-cli/blob/main/CHANGELOG.md) records what each version changed.
194
+
192
195
  ## Good to know
193
196
 
194
197
  - **Search lags a few seconds.** Proton's index is eventually consistent, so act on the ID a command printed rather than searching for the same subject again.
195
198
  - **CAPTCHAs need a desktop.** Proton occasionally asks for human verification at login, which opens a small window. On a headless machine, log in elsewhere and copy the session. See [Human verification](https://github.com/roman-16/proton-cli/blob/main/docs/human-verification.md).
196
- - **Colors are Proton's.** Labels, folders, calendars, and groups accept only the 20 accent colors; an invalid `--color` prints the whole palette.
199
+ - **Colors are Proton's.** Labels, folders, calendars, and groups accept only the 20 accent colors, by name (`--color purple`) or hex (`--color "#8080FF"`); an invalid `--color` prints the whole palette. Lists show the swatch and the name rather than a hex code.
197
200
  - **Folders and labels are different.** A message lives in one folder and carries any number of labels, so `move --into` and `label --label` are separate verbs.
198
201
 
199
202
  ## Contributing
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roman-16/proton-cli-win32-x64",
3
- "version": "2.2.2",
3
+ "version": "2.3.0",
4
4
  "description": "proton-cli native binary for win32-x64",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/roman-16/proton-cli",