@chojs23/concord 2.2.5 → 2.2.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 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.2.7] - 2026-06-24
6
+
7
+ ### Bug Fixes
8
+
9
+ - Render overlay popups within the full frame area by @chojs23
10
+
11
+ ### Features
12
+
13
+ - Update post create ui by @chojs23
14
+ - Add post actions by @chojs23
15
+ - Add thread actions (#215) in [#215](https://github.com/chojs23/concord/pull/215) by @chojs23
16
+ - Add threads and forums to channel switcher (#216) in [#216](https://github.com/chojs23/concord/pull/216) by @chojs23
17
+ - Add notification inbox (#217) in [#217](https://github.com/chojs23/concord/pull/217) by @chojs23
18
+
19
+ ### Miscellaneous Tasks
20
+
21
+ - Fmt by @chojs23
22
+
23
+ ### Performance
24
+
25
+ - Implement per-image placement-diff rendering by @chojs23
26
+
27
+ ## [2.2.6] - 2026-06-22
28
+
29
+ ### Features
30
+
31
+ - Image protocol pref (#209) in [#209](https://github.com/chojs23/concord/pull/209) by @chojs23
32
+
5
33
  ## [2.2.5] - 2026-06-21
6
34
 
7
35
  ### Documentation
package/README.md CHANGED
@@ -301,6 +301,7 @@ Press `Space` to open the leader shortcut window.
301
301
  | `Space`, `a` | Open actions for the focused pane |
302
302
  | `Space`, `p` | Open my profile settings |
303
303
  | `Space`, `o` | Choose concord option category |
304
+ | `Space`, `n` | Open the notification inbox |
304
305
  | `Space`, `v` | Voice command prefix |
305
306
  | `Space`, `Space` | Open the fuzzy channel switcher |
306
307
 
@@ -367,6 +368,22 @@ Channel actions:
367
368
  | `m` | Mark as read | Mark the selected channel read |
368
369
  | `u` | Mute / unmute | Toggle channel or category notification mute |
369
370
 
371
+ Thread / post actions (a focused thread in the Channels pane or a forum post in the post list):
372
+
373
+ | Shortcut | Action | Description |
374
+ | -------- | --------------------- | -------------------------------------------------------------- |
375
+ | `m` | Mark as read | Mark the thread or post read |
376
+ | `f` | Follow / unfollow | Follow or unfollow the thread or post |
377
+ | `c` | Close / reopen | Close or reopen the thread or post (author or moderator) |
378
+ | `l` | Lock / unlock | Lock or unlock the thread or post (moderator) |
379
+ | `e` | Edit | Edit title, tags, slow mode, and auto-archive |
380
+ | `y` | Copy link | Copy a link to the thread or post |
381
+ | `u` | Mute / unmute | Toggle thread or post notification mute (must follow first) |
382
+ | `n` | Notification settings | Choose the notification level for the thread or post |
383
+ | `P` | Pin / unpin | Pin or unpin the post (forum posts only, moderator) |
384
+ | `d` | Delete | Delete the whole thread or post (moderator) |
385
+ | `i` | Copy ID | Copy the thread or post ID |
386
+
370
387
  Voice commands:
371
388
 
372
389
  | Sequence | Action | Description |
@@ -434,6 +451,9 @@ to `config.toml`. Key settings are read from `keymap.toml`.
434
451
 
435
452
  ```toml
436
453
  [display]
454
+ # Image protocol: auto, iterm2, kitty, sixel, or halfblocks.
455
+ image_protocol = "auto"
456
+
437
457
  # Master switch that hides all image previews when true.
438
458
  disable_image_preview = false
439
459
 
@@ -498,7 +518,16 @@ voice_output_volume = 100
498
518
 
499
519
  </details><br>
500
520
 
501
- `image_preview_quality` supports these values:
521
+ `image_protocol`:
522
+
523
+ - `auto`: use terminal detection. In iTerm, Concord uses the iTerm2 protocol
524
+ because terminal capability detection can incorrectly select Kitty there.
525
+ - `iterm2`: force the iTerm2 inline image protocol.
526
+ - `kitty`: force the Kitty graphics protocol.
527
+ - `sixel`: force Sixel rendering.
528
+ - `halfblocks`: force Unicode half-block fallback rendering.
529
+
530
+ `image_preview_quality`:
502
531
 
503
532
  - `efficient`: smaller preview requests to reduce bandwidth and memory use.
504
533
  - `balanced`: default quality with bounded resource use.
@@ -508,7 +537,7 @@ voice_output_volume = 100
508
537
  This setting only applies to attachment, embed, and attachment viewer previews.
509
538
  Avatars and custom emoji keep their separate small-image behavior.
510
539
 
511
- `credentials.store` supports these values:
540
+ `credentials.store`:
512
541
 
513
542
  - `auto`: try the system keychain first, then fall back to the state-file credential store.
514
543
  - `keychain`: use only the system keychain. If keychain storage is unavailable, the token is not saved.
@@ -556,6 +585,7 @@ ToggleMemberPane = "<leader>4"
556
585
  OpenFocusedPaneAction = "<leader>a"
557
586
  OpenCurrentUserProfile = "<leader>p"
558
587
  OpenOptions = "<leader>o"
588
+ OpenNotificationInbox = "<leader>n"
559
589
  ChannelSwitcher = "<leader><leader>"
560
590
  VoiceDeafen = "<leader>vd"
561
591
  VoiceMute = "<leader>vm"
@@ -598,6 +628,19 @@ OpenPollVotePicker = "c"
598
628
  [keymap.member_actions]
599
629
  ShowProfile = "p"
600
630
 
631
+ [keymap.thread_actions]
632
+ MarkAsRead = "m"
633
+ ToggleFollow = "f"
634
+ Close = "c"
635
+ Lock = "l"
636
+ Edit = "e"
637
+ CopyLink = "y"
638
+ ToggleMute = "u"
639
+ NotificationSettings = "n"
640
+ Pin = "P"
641
+ Delete = "d"
642
+ CopyId = "i"
643
+
601
644
  [keymap.composer]
602
645
  OpenEditor = "<C-e>"
603
646
  PasteClipboard = "<C-v>"
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "GPL-3.0-only",
25
25
  "name": "@chojs23/concord",
26
- "version": "2.2.5"
26
+ "version": "2.2.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.2.5"
545
+ "version": "2.2.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.2.5"
3
+ "https://github.com/chojs23/concord/releases/download/v2.2.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.2.5",
96
+ "version": "2.2.7",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"