@chojs23/concord 2.5.14 → 2.5.16
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 +31 -0
- package/README.md +14 -4
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,37 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [2.5.16] - 2026-09-04
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- _(voice)_ Stop demanding a transition id in DAVE prepare epoch (#325) in [#325](https://github.com/chojs23/concord/pull/325) by @4EEZE
|
|
10
|
+
- Pin the patched thorvg-sys revision for ARM Linux builds (#346) in [#346](https://github.com/chojs23/concord/pull/346) by @chojs23
|
|
11
|
+
|
|
12
|
+
### Documentation
|
|
13
|
+
|
|
14
|
+
- Update readme by @chojs23
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
- Render timestamps in format <t:1235790:R> (#328) in [#328](https://github.com/chojs23/concord/pull/328) by @jahitosis1
|
|
19
|
+
- _(tui)_ Add distinct styling for timestamps by @chojs23
|
|
20
|
+
|
|
21
|
+
### Performance
|
|
22
|
+
|
|
23
|
+
- _(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
|
|
24
|
+
|
|
25
|
+
### New Contributors
|
|
26
|
+
|
|
27
|
+
- @jahitosis1 made their first contribution in [#328](https://github.com/chojs23/concord/pull/328)
|
|
28
|
+
|
|
29
|
+
## [2.5.15] - 2026-09-01
|
|
30
|
+
|
|
31
|
+
### Bug Fixes
|
|
32
|
+
|
|
33
|
+
- _(notifications)_ Use OSC protocols for macOS terminal alerts (#343) in [#343](https://github.com/chojs23/concord/pull/343) by @chojs23
|
|
34
|
+
- Disable Opus SIMD only for ARM32 Linux targets (#344) in [#344](https://github.com/chojs23/concord/pull/344) by @chojs23
|
|
35
|
+
|
|
5
36
|
## [2.5.14] - 2026-08-30
|
|
6
37
|
|
|
7
38
|
### 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.
|
|
@@ -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
|
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.5.
|
|
26
|
+
"version": "2.5.16"
|
|
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.
|
|
545
|
+
"version": "2.5.16"
|
|
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.
|
|
3
|
+
"https://github.com/chojs23/concord/releases/download/v2.5.16"
|
|
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.
|
|
96
|
+
"version": "2.5.16",
|
|
97
97
|
"volta": {
|
|
98
98
|
"node": "18.14.1",
|
|
99
99
|
"npm": "9.5.0"
|