@chojs23/concord 2.5.6 → 2.5.8

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,49 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [2.5.8] - 2026-08-13
6
+
7
+ ### Bug Fixes
8
+
9
+ - Prevent false media playback errors (#308) in [#308](https://github.com/chojs23/concord/pull/308) by @mvanhorn
10
+ - Match Discord webhook message grouping (#310) in [#310](https://github.com/chojs23/concord/pull/310) by @chojs23
11
+
12
+ ### Features
13
+
14
+ - _(tui)_ Add full screen refresh shortcut by @chojs23
15
+
16
+ ### New Contributors
17
+
18
+ - @mvanhorn made their first contribution in [#308](https://github.com/chojs23/concord/pull/308)
19
+
20
+ ## [2.5.7] - 2026-08-12
21
+
22
+ ### Bug Fixes
23
+
24
+ - Fix targeted guild member hydration by @chojs23
25
+ - Separate member pane search from member autocomplete by @chojs23
26
+ - Fix member hydration, search, refresh by @chojs23
27
+ - _(discord)_ Distinguish identifier no-update from fetch failures by @chojs23
28
+ - Preserve Discord list order across refreshes by @chojs23
29
+ - _(discord)_ Align gateway recovery and client state by @chojs23
30
+ - Fix forwarded timestamps to honor the configured hour format by @chojs23
31
+ - Composer input (#307) in [#307](https://github.com/chojs23/concord/pull/307) by @chojs23
32
+ - Fix empty panel titles breaking top borders by @chojs23
33
+
34
+ ### Features
35
+
36
+ - Align Gateway compression, client state, and REST headers by @chojs23
37
+ - Add config option for 12-hour time format (#306) in [#306](https://github.com/chojs23/concord/pull/306) by @NotNoss
38
+ - Enhance thread create ui by @chojs23
39
+
40
+ ### Miscellaneous Tasks
41
+
42
+ - Remove mark read hint by @chojs23
43
+
44
+ ### New Contributors
45
+
46
+ - @NotNoss made their first contribution in [#306](https://github.com/chojs23/concord/pull/306)
47
+
5
48
  ## [2.5.6] - 2026-08-07
6
49
 
7
50
  ### Bug Fixes
package/README.md CHANGED
@@ -272,6 +272,7 @@ Press `Space` to open the leader shortcut window.
272
272
  | `Space`, `p` | Open my profile settings |
273
273
  | `Space`, `o` | Choose concord option category |
274
274
  | `Space`, `n` | Open the notification inbox |
275
+ | `Space`, `r` | Clear and fully redraw the TUI |
275
276
  | `Space`, `v` | Open voice shortcuts |
276
277
  | `Space`, `Space` | Open the fuzzy channel switcher |
277
278
 
@@ -358,6 +359,9 @@ show_custom_emoji = true
358
359
  # Crop avatars into circles instead of showing square images.
359
360
  circular_avatars = false
360
361
 
362
+ # Show message times in 24-hour format (14:30) instead of 12-hour (02:30 PM).
363
+ hour_format_24 = true
364
+
361
365
  [composer]
362
366
  # Send custom emoji your account cannot use directly as image links.
363
367
  emojis_as_links = false
@@ -477,6 +481,7 @@ OpenFocusedPaneAction = "<leader>a"
477
481
  OpenCurrentUserProfile = "<leader>p"
478
482
  OpenOptions = "<leader>o"
479
483
  OpenNotificationInbox = "<leader>n"
484
+ RefreshScreen = "<leader>r"
480
485
  ChannelSwitcher = "<leader><leader>"
481
486
  VoiceDeafen = "<leader>vd"
482
487
  VoiceMute = "<leader>vm"
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "GPL-3.0-only",
25
25
  "name": "@chojs23/concord",
26
- "version": "2.5.6"
26
+ "version": "2.5.8"
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.6"
545
+ "version": "2.5.8"
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.6"
3
+ "https://github.com/chojs23/concord/releases/download/v2.5.8"
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.6",
96
+ "version": "2.5.8",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"