@chojs23/concord 2.4.6 → 2.4.8
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 +29 -0
- package/LICENSE +14 -0
- package/README.md +25 -25
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,35 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [2.4.8] - 2026-07-27
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- _(voice)_ Stabilize speaking state and connection lifecycle by @chojs23
|
|
10
|
+
|
|
11
|
+
## [2.4.7] - 2026-07-27
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- _(voice)_ Fix voice input delay (#278) in [#278](https://github.com/chojs23/concord/pull/278) by @chojs23
|
|
16
|
+
- _(voice)_ Preserve normal key input while using bare keys for push-to-talk by @chojs23
|
|
17
|
+
|
|
18
|
+
### Documentation
|
|
19
|
+
|
|
20
|
+
- Update LICESE by @chojs23
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
- Add independent 100ms pacing for message sends by @chojs23
|
|
25
|
+
- _(voice)_ Add optional RNNoise microphone noise suppression by @chojs23
|
|
26
|
+
- _(voice)_ Add push-to-talk option by @chojs23
|
|
27
|
+
- _(voice)_ Replace voice input mode with a push-to-talk boolean by @chojs23
|
|
28
|
+
|
|
29
|
+
### Miscellaneous Tasks
|
|
30
|
+
|
|
31
|
+
- Use Arc instead of deep clone for client by @chojs23
|
|
32
|
+
- _(test)_ Remove redundant tests and consolidate same-policy cases by @chojs23
|
|
33
|
+
|
|
5
34
|
## [2.4.6] - 2026-07-25
|
|
6
35
|
|
|
7
36
|
### Bug Fixes
|
package/LICENSE
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
Concord - A terminal user interface client for Discord
|
|
2
|
+
Copyright (C) 2025-2026 chojs23
|
|
3
|
+
|
|
4
|
+
Concord is free software: you can redistribute it and/or modify it under the
|
|
5
|
+
terms of the GNU General Public License as published by the Free Software
|
|
6
|
+
Foundation, version 3 of the License.
|
|
7
|
+
|
|
8
|
+
Concord is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
9
|
+
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
10
|
+
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
11
|
+
|
|
12
|
+
You should have received a copy of the GNU General Public License along with
|
|
13
|
+
Concord. If not, see <https://www.gnu.org/licenses/>.
|
|
14
|
+
|
|
1
15
|
GNU GENERAL PUBLIC LICENSE
|
|
2
16
|
Version 3, 29 June 2007
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -184,35 +184,28 @@ storage is unavailable. See the Security section below for details.
|
|
|
184
184
|
To sign out with the default keys, open your profile with `Space`, `p`, then
|
|
185
185
|
choose `[o] sign out`.
|
|
186
186
|
|
|
187
|
+
### Voice calls
|
|
188
|
+
|
|
189
|
+
- Full voice support with push-to-talk
|
|
190
|
+
- Supports noise suppression
|
|
191
|
+
|
|
187
192
|
### Guilds & Channels
|
|
188
193
|
|
|
189
|
-
- Browse servers with guild folder grouping
|
|
190
194
|
- Navigate text channels, threads, and forum channels
|
|
191
195
|
- View, filter, and create forum/media posts (active / archived)
|
|
192
|
-
- Create, edit, follow, close, lock, pin, and delete threads and forum posts
|
|
193
196
|
- Switch channels, threads, and posts with the fuzzy channel switcher (`Space`, `Space`)
|
|
194
|
-
- Load pinned messages per channel
|
|
195
|
-
- Open channel actions for pinned messages, thread lists, and mark-as-read
|
|
196
|
-
- Join and leave voice channels/DM calls
|
|
197
|
-
- Highlight active voice speakers in voice channel/DM calls
|
|
198
|
-
- Adjust local volume and mute for voice participants
|
|
199
197
|
- Track unread messages and mention counts per channel
|
|
200
198
|
- Mute and unmute channels and servers
|
|
201
|
-
- Leave the selected server after confirmation
|
|
202
199
|
|
|
203
200
|
### Messaging
|
|
204
201
|
|
|
205
202
|
- Send, edit, and delete messages
|
|
206
203
|
- Upload / Download attachments
|
|
207
204
|
- Search messages with filters with `/`
|
|
208
|
-
-
|
|
209
|
-
- Use custom emoji from other servers when your account supports it
|
|
205
|
+
- @mention autocomplete
|
|
210
206
|
- Send custom emoji your account cannot use directly as image links when enabled
|
|
211
|
-
- View full message history
|
|
212
207
|
- Rich content display (embeds, attachments, stickers, and mentions)
|
|
213
208
|
- Detect URLs in message bodies and markdown links, then open them in your default browser
|
|
214
|
-
- Direct message shortcuts for copy, reply, edit, delete, reactions, URL opening,
|
|
215
|
-
and image viewing. More message actions are available from the action menu.
|
|
216
209
|
|
|
217
210
|
#### Markdown Rendering & Code syntax highlighting
|
|
218
211
|
|
|
@@ -231,7 +224,6 @@ Concord renders a practical subset of Discord-style Markdown in message bodies:
|
|
|
231
224
|
|
|
232
225
|
- View, add, and remove emoji reactions (Unicode and custom server emoji)
|
|
233
226
|
- Use custom emoji from other servers as reactions when your account supports it
|
|
234
|
-
- Browse who reacted with a specific emoji
|
|
235
227
|
- View and vote on polls
|
|
236
228
|
|
|
237
229
|
### Media & Images
|
|
@@ -243,7 +235,7 @@ Image rendering is powered by [ratatui-image](https://github.com/benjajaja/ratat
|
|
|
243
235
|
- **Sixel** - foot, mlterm, xterm (if compiled with Sixel support), etc.
|
|
244
236
|
- **Halfblocks** (fallback) - works on any terminal, but uses block characters instead of true pixels.
|
|
245
237
|
|
|
246
|
-
|
|
238
|
+
Checkout [compatibility-matrix](https://github.com/ratatui/ratatui-image#compatibility-matrix) for a list of terminals that support each protocol.
|
|
247
239
|
|
|
248
240
|
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.
|
|
249
241
|
|
|
@@ -255,12 +247,11 @@ options menu.
|
|
|
255
247
|
|
|
256
248
|
### Members & Profiles
|
|
257
249
|
|
|
258
|
-
- Member list
|
|
259
|
-
- Search members in server
|
|
250
|
+
- View Member list and search members
|
|
260
251
|
- Presence indicators (Online, Idle, DND, Offline)
|
|
261
|
-
- Configure user profile and
|
|
252
|
+
- Configure user profile and rich presence activity
|
|
262
253
|
|
|
263
|
-
|
|
254
|
+
#### Rich Presence
|
|
264
255
|
|
|
265
256
|
- Concord serves the local `discord-ipc` socket, detects connected apps, and
|
|
266
257
|
lets you pick which one to share from your profile's activity picker
|
|
@@ -269,12 +260,6 @@ options menu.
|
|
|
269
260
|
own the socket and the official client claims it first
|
|
270
261
|
- Toggle with `share_rich_presence` under `[presence]` in `config.toml`
|
|
271
262
|
|
|
272
|
-
### Typing Indicators & Read State
|
|
273
|
-
|
|
274
|
-
- Live "user is typing..." indicators
|
|
275
|
-
- Unread message tracking with mention counts
|
|
276
|
-
- Mark server, channel as read
|
|
277
|
-
|
|
278
263
|
### Notifications
|
|
279
264
|
|
|
280
265
|
- Notification inbox (`<leader>n`) with Unreads and Mentions tabs.
|
|
@@ -546,6 +531,16 @@ self_deaf = false
|
|
|
546
531
|
# Allow microphone transmit while this session is joined and not self-muted.
|
|
547
532
|
allow_microphone_transmit = false
|
|
548
533
|
|
|
534
|
+
# Require holding the configured shortcut to transmit.
|
|
535
|
+
push_to_talk = false
|
|
536
|
+
|
|
537
|
+
# Global push-to-talk shortcut. The key works even when Concord is not focused.
|
|
538
|
+
# Modifiers can be combined before the key, for example "control+shift+F8".
|
|
539
|
+
push_to_talk_shortcut = "F8"
|
|
540
|
+
|
|
541
|
+
# Reduce steady background microphone noise.
|
|
542
|
+
noise_suppression = true
|
|
543
|
+
|
|
549
544
|
# Voice activity threshold in dB. Lower values transmit quieter input.
|
|
550
545
|
microphone_sensitivity = -30
|
|
551
546
|
|
|
@@ -556,6 +551,11 @@ microphone_volume = 100
|
|
|
556
551
|
voice_output_volume = 100
|
|
557
552
|
```
|
|
558
553
|
|
|
554
|
+
macOS may require Input Monitoring permission for Concord or the terminal that
|
|
555
|
+
started it. On Linux Wayland, the compositor manages global shortcuts, so
|
|
556
|
+
Concord cannot guarantee that the shortcut input also reaches the focused
|
|
557
|
+
application.
|
|
558
|
+
|
|
559
559
|
</details><br>
|
|
560
560
|
|
|
561
561
|
`image_protocol`:
|
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.4.
|
|
26
|
+
"version": "2.4.8"
|
|
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.4.
|
|
545
|
+
"version": "2.4.8"
|
|
546
546
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"artifactDownloadUrls": [
|
|
3
|
-
"https://github.com/chojs23/concord/releases/download/v2.4.
|
|
3
|
+
"https://github.com/chojs23/concord/releases/download/v2.4.8"
|
|
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.4.
|
|
96
|
+
"version": "2.4.8",
|
|
97
97
|
"volta": {
|
|
98
98
|
"node": "18.14.1",
|
|
99
99
|
"npm": "9.5.0"
|