@chojs23/concord 2.5.15 → 2.5.17

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,42 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [2.5.17] - 2026-09-08
6
+
7
+ ### Bug Fixes
8
+
9
+ - _(media)_ Reuse loaded media during scroll redraws by @chojs23
10
+ - _(media)_ Stabilize preview retries and avatar redraws by @chojs23
11
+ - Raise image preview download limit to 16 MB by @chojs23
12
+
13
+ ### Features
14
+
15
+ - Improve debug panel by @chojs23
16
+
17
+ ## [2.5.16] - 2026-09-04
18
+
19
+ ### Bug Fixes
20
+
21
+ - _(voice)_ Stop demanding a transition id in DAVE prepare epoch (#325) in [#325](https://github.com/chojs23/concord/pull/325) by @4EEZE
22
+ - Pin the patched thorvg-sys revision for ARM Linux builds (#346) in [#346](https://github.com/chojs23/concord/pull/346) by @chojs23
23
+
24
+ ### Documentation
25
+
26
+ - Update readme by @chojs23
27
+
28
+ ### Features
29
+
30
+ - Render timestamps in format <t:1235790:R> (#328) in [#328](https://github.com/chojs23/concord/pull/328) by @jahitosis1
31
+ - _(tui)_ Add distinct styling for timestamps by @chojs23
32
+
33
+ ### Performance
34
+
35
+ - _(media)_ Bound the media caches by bytes, retry failed fetches, add animate_previews (#318) in [#318](https://github.com/chojs23/concord/pull/318) by @4EEZE
36
+
37
+ ### New Contributors
38
+
39
+ - @jahitosis1 made their first contribution in [#328](https://github.com/chojs23/concord/pull/328)
40
+
5
41
  ## [2.5.15] - 2026-09-01
6
42
 
7
43
  ### Bug Fixes
package/README.md CHANGED
@@ -354,6 +354,12 @@ image_preview_quality = "balanced"
354
354
  # Attachment viewer quality: efficient, balanced, high, or original.
355
355
  attachment_viewer_quality = "original"
356
356
 
357
+ # Which animated GIF and WebP previews keep playing: always, selected, or never.
358
+ # Each animated frame rebuilds a terminal graphics protocol, so "always" costs
359
+ # roughly 8% of a CPU core per animated preview on screen. Custom emoji animate
360
+ # regardless; theirs are small enough not to matter.
361
+ animate_previews = "always"
362
+
357
363
  # Render custom Discord emoji as images when possible.
358
364
  show_custom_emoji = true
359
365
 
@@ -388,13 +394,13 @@ desktop_notifications = true
388
394
  # Optional notification icon to include in notifications. May not work on all platforms.
389
395
  # When unset, no icon is used. It must either be a name of an icon (typically in /usr/share/icons)
390
396
  # or a path to an icon.
391
- notification_icon = "/path/to/icon.svg"
397
+ # notification_icon = "/path/to/icon.svg"
392
398
 
393
399
  # Optional WAV files for message, voice join/leave notification sounds.
394
400
  # When unset, Concord uses built-in generated tones.
395
- notification_sound = "/path/to/message.wav"
396
- voice_join_sound = "/path/to/join.wav"
397
- voice_leave_sound = "/path/to/leave.wav"
401
+ # notification_sound = "/path/to/message.wav"
402
+ # voice_join_sound = "/path/to/join.wav"
403
+ # voice_leave_sound = "/path/to/leave.wav"
398
404
 
399
405
  [voice]
400
406
  # Join or update Discord voice with Concord self-muted.
@@ -452,7 +458,7 @@ leader = "space"
452
458
  StartComposer = "i"
453
459
  OpenPaneFilter = "/"
454
460
  ClosePopup = "q"
455
- OpenDebugLog = "`"
461
+ OpenDebugPanel = "`"
456
462
  FocusGuildPane = "1"
457
463
  FocusChannelPane = "2"
458
464
  FocusMessagePane = "3"
@@ -931,6 +937,10 @@ bold = true
931
937
  [highlight.InlineCode]
932
938
  foreground = "#FFA500"
933
939
 
940
+ [highlight.InlineTimestamp]
941
+ foreground = "#DBDEE1"
942
+ background = "#3B3C43"
943
+
934
944
  [highlight.MessageLink]
935
945
  foreground = "cyan"
936
946
  underline = true
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "GPL-3.0-only",
25
25
  "name": "@chojs23/concord",
26
- "version": "2.5.15"
26
+ "version": "2.5.17"
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.15"
545
+ "version": "2.5.17"
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.15"
3
+ "https://github.com/chojs23/concord/releases/download/v2.5.17"
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.15",
96
+ "version": "2.5.17",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"