@chojs23/concord 2.2.4 → 2.2.5

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,20 @@
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.5] - 2026-06-21
6
+
7
+ ### Documentation
8
+
9
+ - Update readme by @chojs23
10
+
11
+ ### Features
12
+
13
+ - Add guild folder settings by @chojs23
14
+ - Use custom notification sound instead of system generated sound by @chojs23
15
+ - Add create post by @chojs23
16
+ - Add composer attachment preview by @chojs23
17
+
18
+ ## [2.2.4] - 2026-06-19
6
19
 
7
20
  ### Bug Fixes
8
21
 
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 |
@@ -469,8 +470,9 @@ desktop_notifications = true
469
470
  # or a path to an icon.
470
471
  notification_icon = "/path/to/icon.svg"
471
472
 
472
- # Optional WAV files for voice join and leave notification sounds.
473
+ # Optional WAV files for message, voice join/leave notification sounds.
473
474
  # When unset, Concord uses built-in generated tones.
475
+ notification_sound = "/path/to/message.wav"
474
476
  voice_join_sound = "/path/to/join.wav"
475
477
  voice_leave_sound = "/path/to/leave.wav"
476
478
 
@@ -566,7 +568,7 @@ VoiceLeave = "<leader>vl"
566
568
  MarkAsRead = "m"
567
569
  MuteServer = "u"
568
570
  LeaveServer = "l"
569
- RenameFolder = "r"
571
+ FolderSettings = "r"
570
572
 
571
573
  [keymap.channel_actions]
572
574
  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.5"
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.5"
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.5"
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.5",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"