@chojs23/concord 2.2.0 → 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,9 +2,34 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- ## [2.2.0] - 2026-06-07
5
+ ## [2.2.2] - 2026-06-14
6
6
 
7
- Concord save token in system keychain and use it for authentication, so you may need to re-login after this update.
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
17
+
18
+ ### Bug Fixes
19
+
20
+ - Picker scroll by @chojs23
21
+
22
+ ### Documentation
23
+
24
+ - Update readme by @chojs23
25
+
26
+ ### Features
27
+
28
+ - Notify for active-channel messages while the terminal is unfocused (#177) in [#177](https://github.com/chojs23/concord/pull/177) by @cultlead3r
29
+ - Add built-in discord commands (#179) in [#179](https://github.com/chojs23/concord/pull/179) by @chojs23
30
+ - Persist TUI side pane visibility (#180) in [#180](https://github.com/chojs23/concord/pull/180) by @chojs23
31
+
32
+ ## [2.2.0] - 2026-06-10
8
33
 
9
34
  ### Documentation
10
35
 
@@ -721,17 +746,8 @@ Concord save token in system keychain and use it for authentication, so you may
721
746
 
722
747
  ### Bug Fixes
723
748
 
724
- - Keep original image width:height ratio (#6) in [#6](https://github.com/chojs23/concord/pull/6) by @chojs23
725
-
726
- ### Cd
727
-
728
- - Chain crates publish after release by @chojs23
729
-
730
- ## [1.1.0] - 2026-05-09
731
-
732
- ### Bug Fixes
733
-
734
749
  - _(flake)_ Use crane (#4) in [#4](https://github.com/chojs23/concord/pull/4) by @M4jor-Tom
750
+ - Keep original image width:height ratio (#6) in [#6](https://github.com/chojs23/concord/pull/6) by @chojs23
735
751
 
736
752
  ### Documentation
737
753
 
@@ -747,6 +763,10 @@ Concord save token in system keychain and use it for authentication, so you may
747
763
 
748
764
  - Enable generated github release notes by @chojs23
749
765
 
766
+ ### Cd
767
+
768
+ - Chain crates publish after release by @chojs23
769
+
750
770
  ### New Contributors
751
771
 
752
772
  - @M4jor-Tom made their first contribution in [#4](https://github.com/chojs23/concord/pull/4)
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
 
@@ -404,12 +412,8 @@ When the composer input starts with a slash `/`, the command suggestion popup
404
412
  ## Configuration
405
413
 
406
414
  Concord options are stored under Concord's config directory. If
407
- `XDG_CONFIG_HOME` is set, Concord uses `$XDG_CONFIG_HOME/concord/config.toml`
408
- for app options and `$XDG_CONFIG_HOME/concord/keymap.toml` for key settings.
409
- Otherwise it uses the platform config directory. The usual fallback is
410
- `~/.config/concord/config.toml` and `~/.config/concord/keymap.toml` on Linux,
411
- matching files under `~/Library/Application Support/concord/` on macOS, and the
412
- roaming AppData config directory on Windows.
415
+ `XDG_CONFIG_HOME` is set, Concord uses `config.toml` for app options and `keymap.toml` for key settings.
416
+ Otherwise it uses the platform config directory.
413
417
 
414
418
  Local UI state and plaintext fallback credentials are stored under Concord's
415
419
  state directory instead. If `XDG_STATE_HOME` is set, Concord uses
@@ -539,6 +543,7 @@ ReplyMessage = "R"
539
543
  DeleteMessage = "d"
540
544
  EditMessage = "e"
541
545
  OpenMessageUrl = "o"
546
+ PlayMedia = "x"
542
547
  ViewMessageAttachment = "v"
543
548
  ToggleGuildPane = "<leader>1"
544
549
  ToggleChannelPane = "<leader>2"
@@ -574,6 +579,7 @@ ReplyMessage = "R"
574
579
  DeleteMessage = "d"
575
580
  EditMessage = "e"
576
581
  OpenMessageUrl = "o"
582
+ PlayMedia = "x"
577
583
  ViewMessageAttachment = "v"
578
584
  GoToReferencedMessage = "g"
579
585
  ShowMessageProfile = "p"
@@ -622,7 +628,6 @@ and then drop again as work completes and caches are pruned.
622
628
  To keep resource usage bounded, Concord limits media work in several places:
623
629
 
624
630
  - Attachment previews are downloaded with an 8 MiB per-preview cap.
625
- - Attachment downloads are capped at 64 MiB.
626
631
  - Up to 4 attachment previews are fetched at once.
627
632
  - Up to 2 inline image previews are decoded at once.
628
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.0"
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.0"
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.0"
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.0",
96
+ "version": "2.2.2",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"