@chojs23/concord 2.4.1 → 2.4.3
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 +22 -1
- package/README.md +7 -2
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,28 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
-
## [2.4.
|
|
5
|
+
## [2.4.3] - 2026-07-20
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- Rebuild the notification inbox (#269) in [#269](https://github.com/chojs23/concord/pull/269) by @chojs23
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
- _(messages)_ Show pending messages (#270) in [#270](https://github.com/chojs23/concord/pull/270) by @chojs23
|
|
14
|
+
|
|
15
|
+
## [2.4.2] - 2026-07-17
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
- _(voice)_ Bypass guild connect checks for DM calls by @chojs23
|
|
20
|
+
- _(discord)_ Harden network requests and session recovery (#265) in [#265](https://github.com/chojs23/concord/pull/265) by @chojs23
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
- _(voice)_ Increase microphone transmit boost gain to 1.5 (#262) in [#262](https://github.com/chojs23/concord/pull/262) by @chojs23
|
|
25
|
+
|
|
26
|
+
## [2.4.1] - 2026-07-15
|
|
6
27
|
|
|
7
28
|
### Features
|
|
8
29
|
|
package/README.md
CHANGED
|
@@ -276,8 +276,7 @@ options menu.
|
|
|
276
276
|
|
|
277
277
|
### Notifications
|
|
278
278
|
|
|
279
|
-
- Notification inbox (`<leader>n`) with Unreads and Mentions tabs
|
|
280
|
-
message previews, and mark-as-read / mark-all-read
|
|
279
|
+
- Notification inbox (`<leader>n`) with Unreads and Mentions tabs.
|
|
281
280
|
- You can configure notification sounds with custom WAV files
|
|
282
281
|
- Desktop notifications for messages that pass your Discord
|
|
283
282
|
notification settings
|
|
@@ -633,6 +632,10 @@ VoiceLeave = "<leader>vl"
|
|
|
633
632
|
[keymap.groups]
|
|
634
633
|
"<leader>v" = "Voice"
|
|
635
634
|
|
|
635
|
+
[keymap.notification_inbox_actions]
|
|
636
|
+
MarkRead = "r"
|
|
637
|
+
MarkAllRead = "a"
|
|
638
|
+
|
|
636
639
|
[keymap.guild_actions]
|
|
637
640
|
MarkAsRead = "m"
|
|
638
641
|
MuteServer = "u"
|
|
@@ -716,6 +719,7 @@ unset fields. Every group and field is optional.
|
|
|
716
719
|
<summary>Default theme config</summary>
|
|
717
720
|
|
|
718
721
|
<!-- default-theme-config:start -->
|
|
722
|
+
|
|
719
723
|
```toml
|
|
720
724
|
# Complete Highlight Group reference with Concord's built-in defaults.
|
|
721
725
|
# Copy this configuration to `theme.toml` in the Concord config directory,
|
|
@@ -1127,6 +1131,7 @@ foreground = "green"
|
|
|
1127
1131
|
[highlight.Info]
|
|
1128
1132
|
foreground = "cyan"
|
|
1129
1133
|
```
|
|
1134
|
+
|
|
1130
1135
|
<!-- default-theme-config:end -->
|
|
1131
1136
|
|
|
1132
1137
|
</details><br>
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "GPL-3.0-only",
|
|
25
25
|
"name": "@chojs23/concord",
|
|
26
|
-
"version": "2.4.
|
|
26
|
+
"version": "2.4.3"
|
|
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.
|
|
545
|
+
"version": "2.4.3"
|
|
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.
|
|
3
|
+
"https://github.com/chojs23/concord/releases/download/v2.4.3"
|
|
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.
|
|
96
|
+
"version": "2.4.3",
|
|
97
97
|
"volta": {
|
|
98
98
|
"node": "18.14.1",
|
|
99
99
|
"npm": "9.5.0"
|