@chojs23/concord 2.2.12 → 2.2.13

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,21 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- ## [2.2.12] - 2026-07-03
5
+ ## [2.2.13] - 2026-07-04
6
+
7
+ ### Features
8
+
9
+ - Add support for playing audio attachments (#240) in [#240](https://github.com/chojs23/concord/pull/240) by @LmanTW
10
+
11
+ ### Refactor
12
+
13
+ - _(tui)_ Standardize popup action buttons by @chojs23
14
+
15
+ ### Nix
16
+
17
+ - Move package derivation to nix/package.nix by @chojs23
18
+
19
+ ## [2.2.12] - 2026-07-02
6
20
 
7
21
  ### Features
8
22
 
package/README.md CHANGED
@@ -84,7 +84,19 @@ cargo install --locked --git https://github.com/chojs23/concord
84
84
 
85
85
  ### Nix
86
86
 
87
- Run without installing (requires flakes enabled):
87
+ Install the packaged release from nixpkgs:
88
+
89
+ ```sh
90
+ nix profile install nixpkgs#concord-tui
91
+ ```
92
+
93
+ Run the packaged release without installing:
94
+
95
+ ```sh
96
+ nix run nixpkgs#concord-tui
97
+ ```
98
+
99
+ Run the latest release without installing (requires flakes enabled):
88
100
 
89
101
  ```sh
90
102
  nix run github:chojs23/concord
@@ -169,7 +181,7 @@ default `auto` mode, Concord falls back to its state directory when keychain
169
181
  storage is unavailable. See the Security section below for details.
170
182
 
171
183
  To sign out with the default keys, open your profile with `Space`, `p`, then
172
- choose `[o] Sign out`.
184
+ choose `[o] sign out`.
173
185
 
174
186
  ### Guilds & Channels
175
187
 
@@ -233,7 +245,7 @@ If your terminal does not support any graphics protocol, images will be rendered
233
245
 
234
246
  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.
235
247
 
236
- Video playback uses [mpv](https://mpv.io/). Make sure `mpv` is installed and in your PATH.
248
+ Video and audio playback uses [mpv](https://mpv.io/). Make sure `mpv` is installed and in your PATH.
237
249
  YouTube playback depends on your local `mpv` setup, such as `yt-dlp` support.
238
250
  External media playback is off by default. You can enable it with
239
251
  `media_playback = true` under `[display]`, or toggle it from the in-app Display
@@ -337,7 +349,7 @@ Message shortcuts:
337
349
  | `d` | Delete | Open a delete confirmation before deleting the message |
338
350
  | `e` | Edit | Start editing the selected message when editing is allowed |
339
351
  | `o` | Open URL | Open the selected message URL, or choose from multiple URLs |
340
- | `x` | Play media | Play selected video media in an external player |
352
+ | `x` | Play media | Play selected video or audio media in an external player |
341
353
  | `v` | View attachment | Open the selected message's attachment viewer |
342
354
 
343
355
  Message action menu shortcuts:
@@ -351,7 +363,7 @@ Message action menu shortcuts:
351
363
  | `e` | Edit | Start editing the selected message when editing is allowed |
352
364
  | `o` | Open URL | Open the selected message URL, or choose from multiple URLs |
353
365
  | `D` | Remove embeds | Remove embeds from the selected message |
354
- | `x` | Play media | Play selected video media in an external player |
366
+ | `x` | Play media | Play selected video or audio media in an external player |
355
367
  | `v` | View attachment | Open the selected message's attachment viewer |
356
368
  | `g` | Go to referenced message | Go to the replied or forwarded message |
357
369
  | `p` | show message sender profile | Open the selected message author's profile |
@@ -360,7 +372,7 @@ Message action menu shortcuts:
360
372
  | `u` | Show reacted users | Show users who reacted to the selected message |
361
373
  | `c` | Choose poll votes | Choose poll votes for the selected message |
362
374
 
363
- When the attachment viewer is open, press `x` to play the current video attachment
375
+ When the attachment viewer is open, press `x` to play the current video or audio attachment
364
376
  in an external player, or `d` to download the current attachment directly.
365
377
 
366
378
  Server actions:
@@ -479,7 +491,7 @@ show_avatars = true
479
491
  # Render inline image previews for attachments and embeds.
480
492
  show_images = true
481
493
 
482
- # Allow video media to open in an external player.
494
+ # Allow video and audio media to open in an external player.
483
495
  media_playback = false
484
496
 
485
497
  # Preview quality: efficient, balanced, high, or original.
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "GPL-3.0-only",
25
25
  "name": "@chojs23/concord",
26
- "version": "2.2.12"
26
+ "version": "2.2.13"
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.12"
545
+ "version": "2.2.13"
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.12"
3
+ "https://github.com/chojs23/concord/releases/download/v2.2.13"
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.12",
96
+ "version": "2.2.13",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"