@chojs23/concord 2.2.6 → 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,7 +2,29 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- ## [2.2.6] - 2026-06-21
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
6
28
 
7
29
  ### Features
8
30
 
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 |
@@ -568,6 +585,7 @@ ToggleMemberPane = "<leader>4"
568
585
  OpenFocusedPaneAction = "<leader>a"
569
586
  OpenCurrentUserProfile = "<leader>p"
570
587
  OpenOptions = "<leader>o"
588
+ OpenNotificationInbox = "<leader>n"
571
589
  ChannelSwitcher = "<leader><leader>"
572
590
  VoiceDeafen = "<leader>vd"
573
591
  VoiceMute = "<leader>vm"
@@ -610,6 +628,19 @@ OpenPollVotePicker = "c"
610
628
  [keymap.member_actions]
611
629
  ShowProfile = "p"
612
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
+
613
644
  [keymap.composer]
614
645
  OpenEditor = "<C-e>"
615
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.6"
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.6"
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.6"
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.6",
96
+ "version": "2.2.7",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"