@chojs23/concord 2.2.1 → 2.2.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 CHANGED
@@ -2,7 +2,44 @@
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.3] - 2026-06-18
6
+
7
+ ### Bug Fixes
8
+
9
+ - Limit image protocol refresh to modal popup open/close by @chojs23
10
+ - Fix thread-kind reuse by @chojs23
11
+ - Fix mention detecting by authoritative Discord gateway fields (#198) in [#198](https://github.com/chojs23/concord/pull/198) by @chojs23
12
+
13
+ ### Features
14
+
15
+ - Add sign-out feature (#202) in [#202](https://github.com/chojs23/concord/pull/202) by @chojs23
16
+
17
+ ### Miscellaneous Tasks
18
+
19
+ - Extract app helper modules by @chojs23
20
+
21
+ ### Refactor
22
+
23
+ - Split media cache modules by resource by @chojs23
24
+ - Refactor media structure and add jobs by @chojs23
25
+ - Extract dashboard event reducer by @chojs23
26
+ - Redesign modules by @chojs23
27
+ - Reuse message payloads in app events by @chojs23
28
+ - Merge presence updates into optional guild event by @chojs23
29
+ - Refactor some states duplication by @chojs23
30
+
31
+ ## [2.2.2] - 2026-06-14
32
+
33
+ ### Documentation
34
+
35
+ - Update readme by @chojs23
36
+
37
+ ### Features
38
+
39
+ - Stream attachment saves with progress UI by @chojs23
40
+ - Add mpv video play (#182) in [#182](https://github.com/chojs23/concord/pull/182) by @chojs23
41
+
42
+ ## [2.2.1] - 2026-06-12
6
43
 
7
44
  ### Bug Fixes
8
45
 
package/README.md CHANGED
@@ -168,6 +168,9 @@ 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
+ To sign out with the default keys, open your profile with `Space`, `p`, then
172
+ choose `[o] Sign out`.
173
+
171
174
  ### Guilds & Channels
172
175
 
173
176
  - Browse servers with guild folder grouping
@@ -229,6 +232,9 @@ If your terminal does not support any graphics protocol, images will be rendered
229
232
 
230
233
  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
234
 
235
+ Video playback uses [mpv](https://mpv.io/). Make sure `mpv` is installed and in your PATH.
236
+ YouTube playback depends on your local `mpv` setup, such as `yt-dlp` support.
237
+
232
238
  ### Members & Profiles
233
239
 
234
240
  - Member list with grouping
@@ -317,6 +323,7 @@ Message shortcuts:
317
323
  | `d` | Delete | Open a delete confirmation before deleting the message |
318
324
  | `e` | Edit | Start editing the selected message when editing is allowed |
319
325
  | `o` | Open URL | Open the selected message URL, or choose from multiple URLs |
326
+ | `x` | Play media | Play selected video media in an external player |
320
327
  | `v` | View attachment | Open the selected message's attachment viewer |
321
328
 
322
329
  Message action menu shortcuts:
@@ -329,6 +336,7 @@ Message action menu shortcuts:
329
336
  | `d` | Delete | Open a delete confirmation before deleting the message |
330
337
  | `e` | Edit | Start editing the selected message when editing is allowed |
331
338
  | `o` | Open URL | Open the selected message URL, or choose from multiple URLs |
339
+ | `x` | Play media | Play selected video media in an external player |
332
340
  | `v` | View attachment | Open the selected message's attachment viewer |
333
341
  | `g` | Go to referenced message | Go to the replied or forwarded message |
334
342
  | `p` | show message sender profile | Open the selected message author's profile |
@@ -337,7 +345,8 @@ Message action menu shortcuts:
337
345
  | `u` | Show reacted users | Show users who reacted to the selected message |
338
346
  | `c` | Choose poll votes | Choose poll votes for the selected message |
339
347
 
340
- When the attachment viewer is open, press `d` to download the current attachment directly.
348
+ When the attachment viewer is open, press `x` to play the current video attachment
349
+ in an external player, or `d` to download the current attachment directly.
341
350
 
342
351
  Server actions:
343
352
 
@@ -535,6 +544,7 @@ ReplyMessage = "R"
535
544
  DeleteMessage = "d"
536
545
  EditMessage = "e"
537
546
  OpenMessageUrl = "o"
547
+ PlayMedia = "x"
538
548
  ViewMessageAttachment = "v"
539
549
  ToggleGuildPane = "<leader>1"
540
550
  ToggleChannelPane = "<leader>2"
@@ -570,6 +580,7 @@ ReplyMessage = "R"
570
580
  DeleteMessage = "d"
571
581
  EditMessage = "e"
572
582
  OpenMessageUrl = "o"
583
+ PlayMedia = "x"
573
584
  ViewMessageAttachment = "v"
574
585
  GoToReferencedMessage = "g"
575
586
  ShowMessageProfile = "p"
@@ -618,7 +629,6 @@ and then drop again as work completes and caches are pruned.
618
629
  To keep resource usage bounded, Concord limits media work in several places:
619
630
 
620
631
  - Attachment previews are downloaded with an 8 MiB per-preview cap.
621
- - Attachment downloads are capped at 64 MiB.
622
632
  - Up to 4 attachment previews are fetched at once.
623
633
  - Up to 2 inline image previews are decoded at once.
624
634
  - 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.3"
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.3"
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.3"
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.3",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"