@chojs23/concord 2.5.7 → 2.5.9

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,36 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [2.5.9] - 2026-08-13
6
+
7
+ ### Bug Fixes
8
+
9
+ - _(media)_ Request animated Discord emoji as WebP by @chojs23
10
+
11
+ ### Documentation
12
+
13
+ - Update readme by @chojs23
14
+
15
+ ### Features
16
+
17
+ - _(media)_ Animate GIF and WebP images by @chojs23
18
+ - _(media)_ Preserve Discord types and render Giphy GIFV inline by @chojs23
19
+
20
+ ## [2.5.8] - 2026-08-12
21
+
22
+ ### Bug Fixes
23
+
24
+ - Prevent false media playback errors (#308) in [#308](https://github.com/chojs23/concord/pull/308) by @mvanhorn
25
+ - Match Discord webhook message grouping (#310) in [#310](https://github.com/chojs23/concord/pull/310) by @chojs23
26
+
27
+ ### Features
28
+
29
+ - _(tui)_ Add full screen refresh shortcut by @chojs23
30
+
31
+ ### New Contributors
32
+
33
+ - @mvanhorn made their first contribution in [#308](https://github.com/chojs23/concord/pull/308)
34
+
5
35
  ## [2.5.7] - 2026-08-12
6
36
 
7
37
  ### Bug Fixes
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Concord
2
2
 
3
3
  <img width="1613" height="848" alt="concord - a feature-rich TUI client for
4
- Discord" src="./docs/example.png" />
4
+ Discord" src="./assets/example.png" />
5
5
 
6
6
  Concord is a feature-rich TUI client for Discord, written in Rust with ratatui.
7
7
 
@@ -186,7 +186,7 @@ storage is unavailable. See the Security section below for details.
186
186
 
187
187
  #### Markdown Rendering & Code syntax highlighting
188
188
 
189
- ![Markdown rendering example](./docs/markdown-example.png)
189
+ ![Markdown rendering example](./assets/markdown-example.png)
190
190
 
191
191
  Concord renders a practical subset of Discord-style Markdown in message bodies:
192
192
 
@@ -199,6 +199,8 @@ Concord renders a practical subset of Discord-style Markdown in message bodies:
199
199
 
200
200
  ### Media Support
201
201
 
202
+ <img width="1018" height="323" alt="Concord media support" src="./assets/media-gif.gif" />
203
+
202
204
  Image rendering is powered by [ratatui-image](https://github.com/benjajaja/ratatui-image). On startup, Concord queries the terminal to detect the best available graphics protocol. Supported protocols:
203
205
 
204
206
  - **Kitty Graphics Protocol** - Kitty, WezTerm, Ghostty, etc.
@@ -272,6 +274,7 @@ Press `Space` to open the leader shortcut window.
272
274
  | `Space`, `p` | Open my profile settings |
273
275
  | `Space`, `o` | Choose concord option category |
274
276
  | `Space`, `n` | Open the notification inbox |
277
+ | `Space`, `r` | Clear and fully redraw the TUI |
275
278
  | `Space`, `v` | Open voice shortcuts |
276
279
  | `Space`, `Space` | Open the fuzzy channel switcher |
277
280
 
@@ -480,6 +483,7 @@ OpenFocusedPaneAction = "<leader>a"
480
483
  OpenCurrentUserProfile = "<leader>p"
481
484
  OpenOptions = "<leader>o"
482
485
  OpenNotificationInbox = "<leader>n"
486
+ RefreshScreen = "<leader>r"
483
487
  ChannelSwitcher = "<leader><leader>"
484
488
  VoiceDeafen = "<leader>vd"
485
489
  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.7"
26
+ "version": "2.5.9"
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.7"
545
+ "version": "2.5.9"
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.7"
3
+ "https://github.com/chojs23/concord/releases/download/v2.5.9"
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.7",
96
+ "version": "2.5.9",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"