@chojs23/concord 2.5.11 → 2.5.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,6 +2,47 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [2.5.13] - 2026-08-24
6
+
7
+ ### Bug Fixes
8
+
9
+ - Message member hydration by @chojs23
10
+
11
+ ### Documentation
12
+
13
+ - Update readme by @chojs23
14
+
15
+ ### Features
16
+
17
+ - Apply negotiated keyframe intervals to Go Live encoders by @chojs23
18
+
19
+ ## [2.5.12] - 2026-08-21
20
+
21
+ ### Bug Fixes
22
+
23
+ - Remove repeated allocations from emoji reaction filtering by @chojs23
24
+ - Fix Rust 1.98 Clippy failures by @chojs23
25
+ - _(tui)_ Synchronize animated media redraws by @chojs23
26
+ - _(tui)_ Fix profile update picker row by @chojs23
27
+
28
+ ### Features
29
+
30
+ - Enlarge all emoji in emoji-only messages by @chojs23
31
+ - _(reactions)_ Customizing top 10 emojis in config.toml (#326) in [#326](https://github.com/chojs23/concord/pull/326) by @Wulgaren
32
+ - Improve profile popup ui by @chojs23
33
+ - _(theme)_ Add configurable unified selection markers to theme settings (#330) in [#330](https://github.com/chojs23/concord/pull/330) by @chojs23
34
+ - _(tui)_ Preview guild stickers as inline media (#329) in [#329](https://github.com/chojs23/concord/pull/329) by @gandol
35
+ - _(tui)_ Render Discord Lottie stickers inline by @chojs23
36
+
37
+ ### Miscellaneous Tasks
38
+
39
+ - Remove cache warm by @chojs23
40
+
41
+ ### New Contributors
42
+
43
+ - @gandol made their first contribution in [#329](https://github.com/chojs23/concord/pull/329)
44
+ - @Wulgaren made their first contribution in [#326](https://github.com/chojs23/concord/pull/326)
45
+
5
46
  ## [2.5.11] - 2026-08-17
6
47
 
7
48
  ### Bug Fixes
package/README.md CHANGED
@@ -11,7 +11,6 @@ Concord is a feature-rich TUI client for Discord, written in Rust with ratatui.
11
11
  - [Features](#features)
12
12
  - [Configuration](#configuration)
13
13
  - [Performance](#performance)
14
- - [Debug mode](#debug-mode)
15
14
  - [FAQ](#faq)
16
15
  - [Security](#security)
17
16
  - [Contributing](#contributing)
@@ -285,7 +284,7 @@ These shortcuts act on the selected message when the Messages pane is focused.
285
284
  | Key | Action |
286
285
  | --- | -------------------------- |
287
286
  | `y` | Copy message text |
288
- | `r` | Add or remove a reaction |
287
+ | `r` | Open the reaction picker |
289
288
  | `R` | Reply |
290
289
  | `d` | Delete |
291
290
  | `e` | Edit |
@@ -368,6 +367,11 @@ hour_format_24 = true
368
367
  # Send custom emoji your account cannot use directly as image links.
369
368
  emojis_as_links = false
370
369
 
370
+ [reactions]
371
+ # Up to 10 unicode emoji pinned at the top of the reaction picker.
372
+ # When unset or empty, Concord uses the built-in quick reactions.
373
+ # favorite_emojis = ["🔥", "👍", "❤️", "😂", "🎉", "😮", "😢", "🙏", "👀", "💯"]
374
+
371
375
  [presence]
372
376
  # Relay Rich Presence from local apps as your activity.
373
377
  share_rich_presence = true
@@ -574,8 +578,8 @@ ToggleReplyPing = "<A-p>"
574
578
 
575
579
  ### Theme
576
580
 
577
- See [Theme options](./docs/theme-options.md) for available groups, values, and
578
- border shapes.
581
+ See [Theme options](./docs/theme-options.md) for available groups, values,
582
+ border shapes, and selection marker settings.
579
583
 
580
584
  <details>
581
585
  <summary>Default theme config</summary>
@@ -601,6 +605,11 @@ composer = "rounded"
601
605
  message = "rounded"
602
606
  forum = "rounded"
603
607
 
608
+ # Selection markers are UI glyphs. This value is shared by list panes and
609
+ # pickers, while `highlight.SelectionMarker` controls its style.
610
+ [ui.indicator]
611
+ selection = "▸ "
612
+
604
613
  [highlight.Normal]
605
614
  foreground = "terminal_default"
606
615
  background = "terminal_default"
@@ -1008,11 +1017,6 @@ bytes need to be decoded before they can be rendered in the terminal. When many
1008
1017
  images are loaded, memory can briefly rise to around 100-200 MB while decoding
1009
1018
  and then drop again as work completes and caches are pruned.
1010
1019
 
1011
- ## Debug mode
1012
-
1013
- Run `CONCORD_DEBUG=1 concord`. Logs are written to `concord.log` in the Concord
1014
- config directory.
1015
-
1016
1020
  ## FAQ
1017
1021
 
1018
1022
  ### Can my account be blocked?
@@ -1039,6 +1043,12 @@ That said, Concord is not an official Discord client. Using unofficial clients,
1039
1043
 
1040
1044
  Any issues, pull requests, and feedback are welcome. See [CONTRIBUTING.md](./CONTRIBUTING.md) for details.
1041
1045
 
1046
+ ## Third-party assets
1047
+
1048
+ Unicode emoji images are provided by [Twemoji](https://github.com/jdecked/twemoji),
1049
+ Copyright 2020 Twitter, Inc. and other contributors, under the
1050
+ [CC-BY 4.0 license](https://creativecommons.org/licenses/by/4.0/).
1051
+
1042
1052
  ## License
1043
1053
 
1044
1054
  Concord is licensed under GPL-3.0-only.
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "GPL-3.0-only",
25
25
  "name": "@chojs23/concord",
26
- "version": "2.5.11"
26
+ "version": "2.5.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.5.11"
545
+ "version": "2.5.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.5.11"
3
+ "https://github.com/chojs23/concord/releases/download/v2.5.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.5.11",
96
+ "version": "2.5.13",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"