@chojs23/concord 2.4.4 → 2.4.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,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- ## [2.4.4] - 2026-07-20
5
+ ## [2.4.5] - 2026-07-23
6
+
7
+ ### Features
8
+
9
+ - Add voice participant actions (#273) in [#273](https://github.com/chojs23/concord/pull/273) by @chojs23
10
+
11
+ ## [2.4.4] - 2026-07-21
6
12
 
7
13
  ### Bug Fixes
8
14
 
package/README.md CHANGED
@@ -195,6 +195,7 @@ choose `[o] sign out`.
195
195
  - Open channel actions for pinned messages, thread lists, and mark-as-read
196
196
  - Join and leave voice channels/DM calls
197
197
  - Highlight active voice speakers in voice channel/DM calls
198
+ - Adjust local volume and mute for voice participants
198
199
  - Track unread messages and mention counts per channel
199
200
  - Mute and unmute channels and servers
200
201
  - Leave the selected server after confirmation
@@ -389,6 +390,7 @@ Channel actions:
389
390
  | -------- | -------------------- | -------------------------------------------- |
390
391
  | `e` | Join voice | Join the selected voice channel or DM call |
391
392
  | `l` | Leave voice | Leave the current voice channel or DM call |
393
+ | `a` | Audio settings | Set participant volume or mute |
392
394
  | `p` | Show pinned messages | Open the selected channel's pinned messages |
393
395
  | `t` | Show threads | List threads for the selected channel |
394
396
  | `m` | Mark as read | Mark the selected channel read |
@@ -547,10 +549,10 @@ allow_microphone_transmit = false
547
549
  # Voice activity threshold in dB. Lower values transmit quieter input.
548
550
  microphone_sensitivity = -30
549
551
 
550
- # Microphone input volume percentage, from 0 to 100.
552
+ # Microphone input volume percentage, from 0 to 200.
551
553
  microphone_volume = 100
552
554
 
553
- # Received voice playback volume percentage, from 0 to 100.
555
+ # Received voice playback volume percentage, from 0 to 200.
554
556
  voice_output_volume = 100
555
557
  ```
556
558
 
@@ -638,17 +640,18 @@ MarkAllRead = "a"
638
640
 
639
641
  [keymap.guild_actions]
640
642
  MarkAsRead = "m"
641
- MuteServer = "u"
643
+ ToggleMute = "u"
642
644
  LeaveServer = "l"
643
645
  FolderSettings = "r"
644
646
 
645
647
  [keymap.channel_actions]
646
648
  JoinVoice = "e"
647
649
  LeaveVoice = "l"
650
+ VoiceParticipantAudio = "a"
648
651
  ShowPinnedMessages = "p"
649
652
  ShowThreads = "t"
650
653
  MarkAsRead = "m"
651
- MuteChannel = "u"
654
+ ToggleMute = "u"
652
655
 
653
656
  [keymap.message_actions]
654
657
  CopyMessage = "y"
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "GPL-3.0-only",
25
25
  "name": "@chojs23/concord",
26
- "version": "2.4.4"
26
+ "version": "2.4.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.4.4"
545
+ "version": "2.4.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.4.4"
3
+ "https://github.com/chojs23/concord/releases/download/v2.4.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.4.4",
96
+ "version": "2.4.5",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"