@roman-16/proton-cli-win32-x64 2.4.1 → 2.6.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
@@ -36,11 +36,20 @@ Read your mail, move files in and out of Drive, manage calendars, passwords, and
36
36
  | **Nix** | `pkgs.proton-cli` |
37
37
  | **npm** | `npm install -g @roman-16/proton-cli` |
38
38
 
39
- There's also an APT repository for Debian and Ubuntu, `.rpm` and `.apk` packages, plain binaries with checksums, and `go install`. See [Installation](https://github.com/roman-16/proton-cli/blob/main/docs/installation.md).
39
+ **Debian, Ubuntu, Linux Mint** - the APT repository, so it updates with the rest of your system:
40
+
41
+ ```bash
42
+ sudo install -d -m 0755 /etc/apt/keyrings
43
+ curl -fsSL https://roman-16.github.io/proton-cli/gpg.key | sudo tee /etc/apt/keyrings/proton-cli.asc >/dev/null
44
+ echo "deb [signed-by=/etc/apt/keyrings/proton-cli.asc] https://roman-16.github.io/proton-cli stable main" | sudo tee /etc/apt/sources.list.d/proton-cli.list
45
+ sudo apt update && sudo apt install proton-cli
46
+ ```
47
+
48
+ There are also `.rpm` and `.apk` packages, plain binaries with checksums, and `go install`. See [Installation](https://github.com/roman-16/proton-cli/blob/main/docs/installation.md).
40
49
 
41
50
  The command is `proton`, and `proton-cli` works too - every install puts both names on your `PATH`.
42
51
 
43
- Already installed? `proton update`.
52
+ Already installed? `proton update`, and `proton changelog` for what that brings. An install no package manager owns says so itself, once a day.
44
53
 
45
54
  ## Get started
46
55
 
@@ -70,67 +79,56 @@ Every command reads the same way - `proton <app> <collection> <verb>` - and anyw
70
79
 
71
80
  ```bash
72
81
  proton mail messages list --unread
73
- proton mail messages search --from billing@example.com --after 2026-01-01
74
82
  proton mail messages get "Invoice #2291"
75
83
  proton mail messages send --to alice@proton.me --subject Report --body "See attached." --attach ./report.pdf
76
84
  proton mail messages reply "Invoice #2291" --body "Thanks, paid today."
77
- proton mail messages forward "Invoice #2291" --to alice@proton.me
78
- proton mail drafts create --to team@example.com --subject Standup --body "Notes to follow."
79
- proton mail messages label "Invoice #2291" --label Accounting
80
- proton mail messages export --folder archive --older-than 1y --output-dir ./backup
81
- proton mail messages trash --unread --older-than 30d
82
85
  ```
83
86
 
84
- Threads, attachments, filters, and auto-reply. → [Mail](https://github.com/roman-16/proton-cli/blob/main/docs/commands/mail.md)
87
+ Threads, attachments, filters, snoozing, block and allow lists, and auto-reply. → [Mail](https://github.com/roman-16/proton-cli/blob/main/docs/commands/mail.md)
85
88
 
86
89
  ### Drive
87
90
 
88
91
  ```bash
89
92
  proton drive items list /Documents
90
93
  proton drive items upload --recursive ./project /Backup
91
- proton drive items upload --if-exists replace ./report.pdf /Documents
92
94
  proton drive items download /Documents/report.pdf --output-dir .
93
- proton drive items move /Documents/report.pdf --into /Archive
94
- proton drive share link /Documents/report.pdf --expires 7d --password hunter2
95
- proton drive items trash --pattern "*.tmp" --scope /Build --recursive
95
+ proton drive items share link /Documents/report.pdf --expires 7d
96
96
  ```
97
97
 
98
- Revisions, sharing with people, and photo albums. → [Drive](https://github.com/roman-16/proton-cli/blob/main/docs/commands/drive.md)
98
+ Revisions, sharing with people, what others shared with you, and photo albums. → [Drive](https://github.com/roman-16/proton-cli/blob/main/docs/commands/drive.md)
99
99
 
100
100
  ### Calendar
101
101
 
102
102
  ```bash
103
103
  proton calendar events list --start 2026-04-15 --end 2026-04-30
104
- proton calendar events create --title Dentist --start 2026-04-16T14:00 --duration 1h
105
104
  proton calendar events create --title Standup --start 2026-04-16T09:00 --duration 15m --rrule "FREQ=WEEKLY;COUNT=10" --remind 15m
106
- proton calendar events update 4f2a1b9c@2026-04-22T09:00 --start 2026-04-22T10:30
107
- proton calendar events delete 4f2a1b9c@2026-05-04T09:00 --future
108
- proton calendar events respond "Team sync" --status accept
105
+ proton calendar events respond "Team sync" --answer accept
106
+ proton calendar events export --start 2026-01-01 --end 2026-12-31 --output year.ics
109
107
  ```
110
108
 
111
- Recurring events occurrence by occurrence, your own calendars, all-day events, and attendees. → [Calendar](https://github.com/roman-16/proton-cli/blob/main/docs/commands/calendar.md)
109
+ Recurring events occurrence by occurrence, your own calendars, all-day events, attendees, and .ics in and out. → [Calendar](https://github.com/roman-16/proton-cli/blob/main/docs/commands/calendar.md)
112
110
 
113
111
  ### Pass
114
112
 
115
113
  ```bash
116
114
  proton pass items list --vault Work
117
115
  proton pass items get github.com
118
- proton pass items create --name GitHub --username roman --password "$(openssl rand -base64 24)" --url github.com
119
- proton pass aliases create --prefix shop --mailbox me@proton.me
116
+ proton pass items create --name GitHub --username roman --url github.com --password "$(proton pass generate)"
117
+ proton pass items totp github.com
120
118
  ```
121
119
 
122
- Notes, cards, SSH keys, and identities. → [Pass](https://github.com/roman-16/proton-cli/blob/main/docs/commands/pass.md)
120
+ Notes, cards, SSH keys, identities, two-factor codes, item history, and backups Proton Pass itself can read. → [Pass](https://github.com/roman-16/proton-cli/blob/main/docs/commands/pass.md)
123
121
 
124
122
  ### Contacts
125
123
 
126
124
  ```bash
127
125
  proton contacts list
126
+ proton contacts get jane
128
127
  proton contacts create --name "Jane Roe" --email jane@example.com
129
- proton contacts keys pin jane --key jane-pubkey.asc
130
- proton contacts groups add GROUP_ID jane
128
+ proton contacts export --output-dir ./address-book
131
129
  ```
132
130
 
133
- Multiple addresses, organizations, and birthdays. → [Contacts](https://github.com/roman-16/proton-cli/blob/main/docs/commands/contacts.md)
131
+ Typed addresses and phones, the full vCard field set, duplicate merging, and vCard import/export. → [Contacts](https://github.com/roman-16/proton-cli/blob/main/docs/commands/contacts.md)
134
132
 
135
133
  ### Account
136
134
 
@@ -181,7 +179,7 @@ Everything lives in [`docs/`](https://github.com/roman-16/proton-cli/blob/main/d
181
179
 
182
180
  | Page | What's in it |
183
181
  | --- | --- |
184
- | [Installation](https://github.com/roman-16/proton-cli/blob/main/docs/installation.md) | Every platform, updating, uninstalling |
182
+ | [Installation](https://github.com/roman-16/proton-cli/blob/main/docs/installation.md) | Every platform, updating, the update notice, uninstalling |
185
183
  | [Configuration](https://github.com/roman-16/proton-cli/blob/main/docs/configuration.md) | Credentials, profiles, environment variables |
186
184
  | [Getting started](https://github.com/roman-16/proton-cli/blob/main/docs/getting-started.md) | Signing in, completion, profiles |
187
185
  | [The language](https://github.com/roman-16/proton-cli/blob/main/docs/language.md) | The grammar: apps, collections, verbs, filters |
@@ -192,7 +190,7 @@ Everything lives in [`docs/`](https://github.com/roman-16/proton-cli/blob/main/d
192
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 |
193
191
  | [Limitations](https://github.com/roman-16/proton-cli/blob/main/docs/limitations.md) | Platform constraints and gaps |
194
192
 
195
- [`CHANGELOG.md`](https://github.com/roman-16/proton-cli/blob/main/CHANGELOG.md) records what each version changed.
193
+ [`CHANGELOG.md`](https://github.com/roman-16/proton-cli/blob/main/CHANGELOG.md) records what each version changed, and `proton changelog` prints it.
196
194
 
197
195
  ## Good to know
198
196
 
package/bin/proton.exe CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roman-16/proton-cli-win32-x64",
3
- "version": "2.4.1",
3
+ "version": "2.6.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",