@chojs23/concord 2.2.1 → 2.2.2

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 CHANGED
@@ -2,7 +2,18 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- ## [2.2.1] - 2026-06-13
5
+ ## [2.2.2] - 2026-06-14
6
+
7
+ ### Documentation
8
+
9
+ - Update readme by @chojs23
10
+
11
+ ### Features
12
+
13
+ - Stream attachment saves with progress UI by @chojs23
14
+ - Add mpv video play (#182) in [#182](https://github.com/chojs23/concord/pull/182) by @chojs23
15
+
16
+ ## [2.2.1] - 2026-06-12
6
17
 
7
18
  ### Bug Fixes
8
19
 
package/README.md CHANGED
@@ -168,6 +168,8 @@ By default, tokens are saved in the system keychain when available. In the
168
168
  default `auto` mode, Concord falls back to its state directory when keychain
169
169
  storage is unavailable. See the Security section below for details.
170
170
 
171
+ There is no built-in logout option yet, but you can log out by deleting stored credentials from the keychain or state directory.
172
+
171
173
  ### Guilds & Channels
172
174
 
173
175
  - Browse servers with guild folder grouping
@@ -229,6 +231,9 @@ If your terminal does not support any graphics protocol, images will be rendered
229
231
 
230
232
  You can toggle image viewing on or off in the configuration file. When image viewing is off, attachments and emojis will be shown as text placeholders.
231
233
 
234
+ Video playback uses [mpv](https://mpv.io/). Make sure `mpv` is installed and in your PATH.
235
+ YouTube playback depends on your local `mpv` setup, such as `yt-dlp` support.
236
+
232
237
  ### Members & Profiles
233
238
 
234
239
  - Member list with grouping
@@ -317,6 +322,7 @@ Message shortcuts:
317
322
  | `d` | Delete | Open a delete confirmation before deleting the message |
318
323
  | `e` | Edit | Start editing the selected message when editing is allowed |
319
324
  | `o` | Open URL | Open the selected message URL, or choose from multiple URLs |
325
+ | `x` | Play media | Play selected video media in an external player |
320
326
  | `v` | View attachment | Open the selected message's attachment viewer |
321
327
 
322
328
  Message action menu shortcuts:
@@ -329,6 +335,7 @@ Message action menu shortcuts:
329
335
  | `d` | Delete | Open a delete confirmation before deleting the message |
330
336
  | `e` | Edit | Start editing the selected message when editing is allowed |
331
337
  | `o` | Open URL | Open the selected message URL, or choose from multiple URLs |
338
+ | `x` | Play media | Play selected video media in an external player |
332
339
  | `v` | View attachment | Open the selected message's attachment viewer |
333
340
  | `g` | Go to referenced message | Go to the replied or forwarded message |
334
341
  | `p` | show message sender profile | Open the selected message author's profile |
@@ -337,7 +344,8 @@ Message action menu shortcuts:
337
344
  | `u` | Show reacted users | Show users who reacted to the selected message |
338
345
  | `c` | Choose poll votes | Choose poll votes for the selected message |
339
346
 
340
- When the attachment viewer is open, press `d` to download the current attachment directly.
347
+ When the attachment viewer is open, press `x` to play the current video attachment
348
+ in an external player, or `d` to download the current attachment directly.
341
349
 
342
350
  Server actions:
343
351
 
@@ -535,6 +543,7 @@ ReplyMessage = "R"
535
543
  DeleteMessage = "d"
536
544
  EditMessage = "e"
537
545
  OpenMessageUrl = "o"
546
+ PlayMedia = "x"
538
547
  ViewMessageAttachment = "v"
539
548
  ToggleGuildPane = "<leader>1"
540
549
  ToggleChannelPane = "<leader>2"
@@ -570,6 +579,7 @@ ReplyMessage = "R"
570
579
  DeleteMessage = "d"
571
580
  EditMessage = "e"
572
581
  OpenMessageUrl = "o"
582
+ PlayMedia = "x"
573
583
  ViewMessageAttachment = "v"
574
584
  GoToReferencedMessage = "g"
575
585
  ShowMessageProfile = "p"
@@ -618,7 +628,6 @@ and then drop again as work completes and caches are pruned.
618
628
  To keep resource usage bounded, Concord limits media work in several places:
619
629
 
620
630
  - Attachment previews are downloaded with an 8 MiB per-preview cap.
621
- - Attachment downloads are capped at 64 MiB.
622
631
  - Up to 4 attachment previews are fetched at once.
623
632
  - Up to 2 inline image previews are decoded at once.
624
633
  - Inline image previews, avatars, and custom emoji use small LRU caches.
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "GPL-3.0-only",
25
25
  "name": "@chojs23/concord",
26
- "version": "2.2.1"
26
+ "version": "2.2.2"
27
27
  },
28
28
  "node_modules/@isaacs/cliui": {
29
29
  "engines": {
@@ -542,5 +542,5 @@
542
542
  }
543
543
  },
544
544
  "requires": true,
545
- "version": "2.2.1"
545
+ "version": "2.2.2"
546
546
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "artifactDownloadUrls": [
3
- "https://github.com/chojs23/concord/releases/download/v2.2.1"
3
+ "https://github.com/chojs23/concord/releases/download/v2.2.2"
4
4
  ],
5
5
  "bin": {
6
6
  "concord": "run-concord.js"
@@ -93,7 +93,7 @@
93
93
  "zipExt": ".tar.xz"
94
94
  }
95
95
  },
96
- "version": "2.2.1",
96
+ "version": "2.2.2",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"