@chojs23/concord 2.2.4 → 2.2.6

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,7 +2,26 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- ## [2.2.4] - 2026-06-20
5
+ ## [2.2.6] - 2026-06-21
6
+
7
+ ### Features
8
+
9
+ - Image protocol pref (#209) in [#209](https://github.com/chojs23/concord/pull/209) by @chojs23
10
+
11
+ ## [2.2.5] - 2026-06-21
12
+
13
+ ### Documentation
14
+
15
+ - Update readme by @chojs23
16
+
17
+ ### Features
18
+
19
+ - Add guild folder settings by @chojs23
20
+ - Use custom notification sound instead of system generated sound by @chojs23
21
+ - Add create post by @chojs23
22
+ - Add composer attachment preview by @chojs23
23
+
24
+ ## [2.2.4] - 2026-06-19
6
25
 
7
26
  ### Bug Fixes
8
27
 
package/README.md CHANGED
@@ -175,7 +175,7 @@ choose `[o] Sign out`.
175
175
 
176
176
  - Browse servers with guild folder grouping
177
177
  - Navigate text channels, threads, and forum channels
178
- - View and filter forum posts (active / archived)
178
+ - View, filter, and create forum/media posts (active / archived)
179
179
  - Load pinned messages per channel
180
180
  - Open channel actions for pinned messages, thread lists, and mark-as-read
181
181
  - Join and leave voice channels
@@ -250,12 +250,10 @@ YouTube playback depends on your local `mpv` setup, such as `yt-dlp` support.
250
250
 
251
251
  ### Notifications
252
252
 
253
- - Desktop notifications for Discord messages that pass your Discord
253
+ - You can configure custom WAV files
254
+ - Desktop notifications for messages that pass your Discord
254
255
  notification settings
255
- - Active channel notifications are suppressed so Concord does not notify for
256
- the conversation you are already viewing
257
- - Voice join and leave notification sounds while you are connected to voice.
258
- You can keep the built-in tones or configure custom WAV files.
256
+ - Voice join and leave notification sounds while you are connected to voice
259
257
 
260
258
  ### Navigation & Keyboard shortcuts
261
259
 
@@ -283,7 +281,7 @@ With default vim-style navigation:
283
281
  | `Enter` | Open or activate the selected item |
284
282
  | `/` | Filter Guilds/Channels, search Messages/Members |
285
283
  | `Space` | Open leader shortcut window |
286
- | `i` | Text insert mode |
284
+ | `i` | Text insert mode, or forum post composer |
287
285
  | `Esc` / `q` | Close popup, cancel mode, or go back |
288
286
  | `q` | Quit Concord |
289
287
 
@@ -356,7 +354,7 @@ Server actions:
356
354
  | `m` | Mark server as read | Mark all unread viewable channels in this server read |
357
355
  | `u` | Mute / unmute | Toggle server notification mute |
358
356
  | `l` | Leave server | Open a confirmation before leaving this server |
359
- | `r` | Rename folder | Rename the selected server folder |
357
+ | `r` | Folder settings | Edit the selected server folder name and color |
360
358
 
361
359
  Channel actions:
362
360
 
@@ -382,6 +380,9 @@ Voice commands:
382
380
  You can paste copied files into the composer to attach them. Pending uploads
383
381
  are shown above the input before sending.
384
382
 
383
+ In a forum or media parent channel, the same composer key opens a post composer
384
+ overlay.
385
+
385
386
  | Shortcut | Action | Description |
386
387
  | -------------------------------------------- | ----------------- | ---------------------------------------------------------------- |
387
388
  | `Ctrl+v` | paste clipboard | Attach copied files or images when present, otherwise paste text |
@@ -433,6 +434,9 @@ to `config.toml`. Key settings are read from `keymap.toml`.
433
434
 
434
435
  ```toml
435
436
  [display]
437
+ # Image protocol: auto, iterm2, kitty, sixel, or halfblocks.
438
+ image_protocol = "auto"
439
+
436
440
  # Master switch that hides all image previews when true.
437
441
  disable_image_preview = false
438
442
 
@@ -469,8 +473,9 @@ desktop_notifications = true
469
473
  # or a path to an icon.
470
474
  notification_icon = "/path/to/icon.svg"
471
475
 
472
- # Optional WAV files for voice join and leave notification sounds.
476
+ # Optional WAV files for message, voice join/leave notification sounds.
473
477
  # When unset, Concord uses built-in generated tones.
478
+ notification_sound = "/path/to/message.wav"
474
479
  voice_join_sound = "/path/to/join.wav"
475
480
  voice_leave_sound = "/path/to/leave.wav"
476
481
 
@@ -496,7 +501,16 @@ voice_output_volume = 100
496
501
 
497
502
  </details><br>
498
503
 
499
- `image_preview_quality` supports these values:
504
+ `image_protocol`:
505
+
506
+ - `auto`: use terminal detection. In iTerm, Concord uses the iTerm2 protocol
507
+ because terminal capability detection can incorrectly select Kitty there.
508
+ - `iterm2`: force the iTerm2 inline image protocol.
509
+ - `kitty`: force the Kitty graphics protocol.
510
+ - `sixel`: force Sixel rendering.
511
+ - `halfblocks`: force Unicode half-block fallback rendering.
512
+
513
+ `image_preview_quality`:
500
514
 
501
515
  - `efficient`: smaller preview requests to reduce bandwidth and memory use.
502
516
  - `balanced`: default quality with bounded resource use.
@@ -506,7 +520,7 @@ voice_output_volume = 100
506
520
  This setting only applies to attachment, embed, and attachment viewer previews.
507
521
  Avatars and custom emoji keep their separate small-image behavior.
508
522
 
509
- `credentials.store` supports these values:
523
+ `credentials.store`:
510
524
 
511
525
  - `auto`: try the system keychain first, then fall back to the state-file credential store.
512
526
  - `keychain`: use only the system keychain. If keychain storage is unavailable, the token is not saved.
@@ -566,7 +580,7 @@ VoiceLeave = "<leader>vl"
566
580
  MarkAsRead = "m"
567
581
  MuteServer = "u"
568
582
  LeaveServer = "l"
569
- RenameFolder = "r"
583
+ FolderSettings = "r"
570
584
 
571
585
  [keymap.channel_actions]
572
586
  JoinVoice = "j"
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "GPL-3.0-only",
25
25
  "name": "@chojs23/concord",
26
- "version": "2.2.4"
26
+ "version": "2.2.6"
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.2.4"
545
+ "version": "2.2.6"
546
546
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "artifactDownloadUrls": [
3
- "https://github.com/chojs23/concord/releases/download/v2.2.4"
3
+ "https://github.com/chojs23/concord/releases/download/v2.2.6"
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.2.4",
96
+ "version": "2.2.6",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"