@chojs23/concord 2.5.1 → 2.5.3
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 +26 -0
- package/README.md +7 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,32 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [2.5.3] - 2026-08-04
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- _(stream)_ Start video-only broadcasts immediately by @chojs23
|
|
10
|
+
- _(stream)_ Scale stream playback for high-resolution and high-frame-rate video by @chojs23
|
|
11
|
+
- _(stream)_ Add UDP safeguards and recovery diagnostics by @chojs23
|
|
12
|
+
- _(stream)_ Preserve manual mpv window resizing and disable pause by @chojs23
|
|
13
|
+
- _(stream)_ Stabilize RTP recovery and live playback timing by @chojs23
|
|
14
|
+
- _(broadcast)_ Fix Linux screen-share startup readiness and add lifecycle diagnostics by @chojs23
|
|
15
|
+
|
|
16
|
+
### Miscellaneous Tasks
|
|
17
|
+
|
|
18
|
+
- _(docs)_ Add debug mode instruction by @chojs23
|
|
19
|
+
|
|
20
|
+
## [2.5.2] - 2026-08-03
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
- _(tui)_ Align inbox, thread, and shortcut behavior by @chojs23
|
|
25
|
+
- _(release)_ Scope Homebrew audio dependencies to Linux (#297) in [#297](https://github.com/chojs23/concord/pull/297) by @chojs23
|
|
26
|
+
|
|
27
|
+
### Refactor
|
|
28
|
+
|
|
29
|
+
- _(tui)_ Unify popup input and shortcut routing by @chojs23
|
|
30
|
+
|
|
5
31
|
## [2.5.1] - 2026-08-02
|
|
6
32
|
|
|
7
33
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -11,6 +11,7 @@ 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)
|
|
14
15
|
- [FAQ](#faq)
|
|
15
16
|
- [Security](#security)
|
|
16
17
|
- [Contributing](#contributing)
|
|
@@ -439,6 +440,7 @@ leader = "space"
|
|
|
439
440
|
StartComposer = "i"
|
|
440
441
|
OpenPaneFilter = "/"
|
|
441
442
|
ClosePopup = "q"
|
|
443
|
+
OpenDebugLog = "`"
|
|
442
444
|
FocusGuildPane = "1"
|
|
443
445
|
FocusChannelPane = "2"
|
|
444
446
|
FocusMessagePane = "3"
|
|
@@ -997,6 +999,11 @@ bytes need to be decoded before they can be rendered in the terminal. When many
|
|
|
997
999
|
images are loaded, memory can briefly rise to around 100-200 MB while decoding
|
|
998
1000
|
and then drop again as work completes and caches are pruned.
|
|
999
1001
|
|
|
1002
|
+
## Debug mode
|
|
1003
|
+
|
|
1004
|
+
Run `CONCORD_DEBUG=1 concord`. Logs are written to `concord.log` in the Concord
|
|
1005
|
+
config directory.
|
|
1006
|
+
|
|
1000
1007
|
## FAQ
|
|
1001
1008
|
|
|
1002
1009
|
### Can my account be blocked?
|
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.3"
|
|
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.3"
|
|
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.3"
|
|
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.3",
|
|
97
97
|
"volta": {
|
|
98
98
|
"node": "18.14.1",
|
|
99
99
|
"npm": "9.5.0"
|