@chojs23/concord 2.2.11 → 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 +24 -0
- package/README.md +32 -7
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,30 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
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
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
- _(presence)_ Relay Rich Presence from local apps (#239) in [#239](https://github.com/chojs23/concord/pull/239) by @chojs23
|
|
24
|
+
|
|
25
|
+
### Refactor
|
|
26
|
+
|
|
27
|
+
- _(tui)_ Unify custom-emoji image overlays into single module by @chojs23
|
|
28
|
+
|
|
5
29
|
## [2.2.11] - 2026-07-01
|
|
6
30
|
|
|
7
31
|
### Bug Fixes
|
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
|
-
|
|
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]
|
|
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
|
|
@@ -246,6 +258,15 @@ options menu.
|
|
|
246
258
|
- Presence indicators (Online, Idle, DND, Offline)
|
|
247
259
|
- Configure user profile and custom activity status
|
|
248
260
|
|
|
261
|
+
### Rich Presence
|
|
262
|
+
|
|
263
|
+
- Concord serves the local `discord-ipc` socket, detects connected apps, and
|
|
264
|
+
lets you pick which one to share from your profile's activity picker
|
|
265
|
+
- Only apps that speak Discord's Rich Presence (RPC/IPC) protocol are detected.
|
|
266
|
+
- Detection needs the official Discord client closed, since only one program can
|
|
267
|
+
own the socket and the official client claims it first
|
|
268
|
+
- Toggle with `share_rich_presence` under `[presence]` in `config.toml`
|
|
269
|
+
|
|
249
270
|
### Typing Indicators & Read State
|
|
250
271
|
|
|
251
272
|
- Live "user is typing..." indicators
|
|
@@ -328,7 +349,7 @@ Message shortcuts:
|
|
|
328
349
|
| `d` | Delete | Open a delete confirmation before deleting the message |
|
|
329
350
|
| `e` | Edit | Start editing the selected message when editing is allowed |
|
|
330
351
|
| `o` | Open URL | Open the selected message URL, or choose from multiple URLs |
|
|
331
|
-
| `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 |
|
|
332
353
|
| `v` | View attachment | Open the selected message's attachment viewer |
|
|
333
354
|
|
|
334
355
|
Message action menu shortcuts:
|
|
@@ -342,7 +363,7 @@ Message action menu shortcuts:
|
|
|
342
363
|
| `e` | Edit | Start editing the selected message when editing is allowed |
|
|
343
364
|
| `o` | Open URL | Open the selected message URL, or choose from multiple URLs |
|
|
344
365
|
| `D` | Remove embeds | Remove embeds from the selected message |
|
|
345
|
-
| `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 |
|
|
346
367
|
| `v` | View attachment | Open the selected message's attachment viewer |
|
|
347
368
|
| `g` | Go to referenced message | Go to the replied or forwarded message |
|
|
348
369
|
| `p` | show message sender profile | Open the selected message author's profile |
|
|
@@ -351,7 +372,7 @@ Message action menu shortcuts:
|
|
|
351
372
|
| `u` | Show reacted users | Show users who reacted to the selected message |
|
|
352
373
|
| `c` | Choose poll votes | Choose poll votes for the selected message |
|
|
353
374
|
|
|
354
|
-
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
|
|
355
376
|
in an external player, or `d` to download the current attachment directly.
|
|
356
377
|
|
|
357
378
|
Server actions:
|
|
@@ -470,7 +491,7 @@ show_avatars = true
|
|
|
470
491
|
# Render inline image previews for attachments and embeds.
|
|
471
492
|
show_images = true
|
|
472
493
|
|
|
473
|
-
# Allow video media to open in an external player.
|
|
494
|
+
# Allow video and audio media to open in an external player.
|
|
474
495
|
media_playback = false
|
|
475
496
|
|
|
476
497
|
# Preview quality: efficient, balanced, high, or original.
|
|
@@ -489,6 +510,10 @@ circular_avatars = false
|
|
|
489
510
|
# Send custom emoji your account cannot use directly as image links.
|
|
490
511
|
emojis_as_links = false
|
|
491
512
|
|
|
513
|
+
[presence]
|
|
514
|
+
# Relay Rich Presence from local apps as your activity.
|
|
515
|
+
share_rich_presence = true
|
|
516
|
+
|
|
492
517
|
[credentials]
|
|
493
518
|
# Credential storage: auto, keychain, or plain.
|
|
494
519
|
# auto tries the system keychain first and falls back to the state file.
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "GPL-3.0-only",
|
|
25
25
|
"name": "@chojs23/concord",
|
|
26
|
-
"version": "2.2.
|
|
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.
|
|
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.
|
|
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.
|
|
96
|
+
"version": "2.2.13",
|
|
97
97
|
"volta": {
|
|
98
98
|
"node": "18.14.1",
|
|
99
99
|
"npm": "9.5.0"
|