@chojs23/concord 2.5.10 → 2.5.12

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,56 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [2.5.12] - 2026-08-21
6
+
7
+ ### Bug Fixes
8
+
9
+ - Remove repeated allocations from emoji reaction filtering by @chojs23
10
+ - Fix Rust 1.98 Clippy failures by @chojs23
11
+ - _(tui)_ Synchronize animated media redraws by @chojs23
12
+ - _(tui)_ Fix profile update picker row by @chojs23
13
+
14
+ ### Features
15
+
16
+ - Enlarge all emoji in emoji-only messages by @chojs23
17
+ - _(reactions)_ Customizing top 10 emojis in config.toml (#326) in [#326](https://github.com/chojs23/concord/pull/326) by @Wulgaren
18
+ - Improve profile popup ui by @chojs23
19
+ - _(theme)_ Add configurable unified selection markers to theme settings (#330) in [#330](https://github.com/chojs23/concord/pull/330) by @chojs23
20
+ - _(tui)_ Preview guild stickers as inline media (#329) in [#329](https://github.com/chojs23/concord/pull/329) by @gandol
21
+ - _(tui)_ Render Discord Lottie stickers inline by @chojs23
22
+
23
+ ### Miscellaneous Tasks
24
+
25
+ - Remove cache warm by @chojs23
26
+
27
+ ### New Contributors
28
+
29
+ - @gandol made their first contribution in [#329](https://github.com/chojs23/concord/pull/329)
30
+ - @Wulgaren made their first contribution in [#326](https://github.com/chojs23/concord/pull/326)
31
+
32
+ ## [2.5.11] - 2026-08-17
33
+
34
+ ### Bug Fixes
35
+
36
+ - _(linux)_ Restore portable DMA-BUF ioctl handling by @chojs23
37
+
38
+ ### Features
39
+
40
+ - X11 broadcasting (#324) by @chojs23
41
+
42
+ ### Miscellaneous Tasks
43
+
44
+ - Add an all-features musl compile check by @chojs23
45
+ - Fix the musl CI target volume mount by @chojs23
46
+
47
+ ### Performance
48
+
49
+ - _(capture)_ Import linear DMA-BUF through EGL instead of reading it on the CPU (#317) in [#317](https://github.com/chojs23/concord/pull/317) by @4EEZE
50
+
51
+ ### New Contributors
52
+
53
+ - @4EEZE made their first contribution in [#317](https://github.com/chojs23/concord/pull/317)
54
+
5
55
  ## [2.5.10] - 2026-08-15
6
56
 
7
57
  ### Bug Fixes
package/README.md CHANGED
@@ -285,7 +285,7 @@ These shortcuts act on the selected message when the Messages pane is focused.
285
285
  | Key | Action |
286
286
  | --- | -------------------------- |
287
287
  | `y` | Copy message text |
288
- | `r` | Add or remove a reaction |
288
+ | `r` | Open the reaction picker |
289
289
  | `R` | Reply |
290
290
  | `d` | Delete |
291
291
  | `e` | Edit |
@@ -368,6 +368,11 @@ hour_format_24 = true
368
368
  # Send custom emoji your account cannot use directly as image links.
369
369
  emojis_as_links = false
370
370
 
371
+ [reactions]
372
+ # Up to 10 unicode emoji pinned at the top of the reaction picker.
373
+ # When unset or empty, Concord uses the built-in quick reactions.
374
+ # favorite_emojis = ["🔥", "👍", "❤️", "😂", "🎉", "😮", "😢", "🙏", "👀", "💯"]
375
+
371
376
  [presence]
372
377
  # Relay Rich Presence from local apps as your activity.
373
378
  share_rich_presence = true
@@ -574,8 +579,8 @@ ToggleReplyPing = "<A-p>"
574
579
 
575
580
  ### Theme
576
581
 
577
- See [Theme options](./docs/theme-options.md) for available groups, values, and
578
- border shapes.
582
+ See [Theme options](./docs/theme-options.md) for available groups, values,
583
+ border shapes, and selection marker settings.
579
584
 
580
585
  <details>
581
586
  <summary>Default theme config</summary>
@@ -601,6 +606,11 @@ composer = "rounded"
601
606
  message = "rounded"
602
607
  forum = "rounded"
603
608
 
609
+ # Selection markers are UI glyphs. This value is shared by list panes and
610
+ # pickers, while `highlight.SelectionMarker` controls its style.
611
+ [ui.indicator]
612
+ selection = "▸ "
613
+
604
614
  [highlight.Normal]
605
615
  foreground = "terminal_default"
606
616
  background = "terminal_default"
@@ -1039,6 +1049,12 @@ That said, Concord is not an official Discord client. Using unofficial clients,
1039
1049
 
1040
1050
  Any issues, pull requests, and feedback are welcome. See [CONTRIBUTING.md](./CONTRIBUTING.md) for details.
1041
1051
 
1052
+ ## Third-party assets
1053
+
1054
+ Unicode emoji images are provided by [Twemoji](https://github.com/jdecked/twemoji),
1055
+ Copyright 2020 Twitter, Inc. and other contributors, under the
1056
+ [CC-BY 4.0 license](https://creativecommons.org/licenses/by/4.0/).
1057
+
1042
1058
  ## License
1043
1059
 
1044
1060
  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.10"
26
+ "version": "2.5.12"
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.10"
545
+ "version": "2.5.12"
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.10"
3
+ "https://github.com/chojs23/concord/releases/download/v2.5.12"
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.10",
96
+ "version": "2.5.12",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"