@chojs23/concord 2.5.6 → 2.5.7
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 +28 -0
- package/README.md +3 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,34 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [2.5.7] - 2026-08-12
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- Fix targeted guild member hydration by @chojs23
|
|
10
|
+
- Separate member pane search from member autocomplete by @chojs23
|
|
11
|
+
- Fix member hydration, search, refresh by @chojs23
|
|
12
|
+
- _(discord)_ Distinguish identifier no-update from fetch failures by @chojs23
|
|
13
|
+
- Preserve Discord list order across refreshes by @chojs23
|
|
14
|
+
- _(discord)_ Align gateway recovery and client state by @chojs23
|
|
15
|
+
- Fix forwarded timestamps to honor the configured hour format by @chojs23
|
|
16
|
+
- Composer input (#307) in [#307](https://github.com/chojs23/concord/pull/307) by @chojs23
|
|
17
|
+
- Fix empty panel titles breaking top borders by @chojs23
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
- Align Gateway compression, client state, and REST headers by @chojs23
|
|
22
|
+
- Add config option for 12-hour time format (#306) in [#306](https://github.com/chojs23/concord/pull/306) by @NotNoss
|
|
23
|
+
- Enhance thread create ui by @chojs23
|
|
24
|
+
|
|
25
|
+
### Miscellaneous Tasks
|
|
26
|
+
|
|
27
|
+
- Remove mark read hint by @chojs23
|
|
28
|
+
|
|
29
|
+
### New Contributors
|
|
30
|
+
|
|
31
|
+
- @NotNoss made their first contribution in [#306](https://github.com/chojs23/concord/pull/306)
|
|
32
|
+
|
|
5
33
|
## [2.5.6] - 2026-08-07
|
|
6
34
|
|
|
7
35
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -358,6 +358,9 @@ show_custom_emoji = true
|
|
|
358
358
|
# Crop avatars into circles instead of showing square images.
|
|
359
359
|
circular_avatars = false
|
|
360
360
|
|
|
361
|
+
# Show message times in 24-hour format (14:30) instead of 12-hour (02:30 PM).
|
|
362
|
+
hour_format_24 = true
|
|
363
|
+
|
|
361
364
|
[composer]
|
|
362
365
|
# Send custom emoji your account cannot use directly as image links.
|
|
363
366
|
emojis_as_links = false
|
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.7"
|
|
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.7"
|
|
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.7"
|
|
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.7",
|
|
97
97
|
"volta": {
|
|
98
98
|
"node": "18.14.1",
|
|
99
99
|
"npm": "9.5.0"
|