@chojs23/concord 2.2.2 → 2.2.4
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 +46 -0
- package/README.md +6 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,52 @@
|
|
|
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
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- Hide empty channel categories if user doesn't have permission (#203) in [#203](https://github.com/chojs23/concord/pull/203) by @chojs23
|
|
10
|
+
- Update guild folders and order by UserSettingsUpdate by @chojs23
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- Rename folder by @chojs23
|
|
15
|
+
- Add suppress embeds (#205) in [#205](https://github.com/chojs23/concord/pull/205) by @chojs23
|
|
16
|
+
|
|
17
|
+
### Refactor
|
|
18
|
+
|
|
19
|
+
- Preserve boundary payloads consistently by @chojs23
|
|
20
|
+
|
|
21
|
+
### New Contributors
|
|
22
|
+
|
|
23
|
+
- @fuguesoft made their first contribution in [#200](https://github.com/chojs23/concord/pull/200)
|
|
24
|
+
|
|
25
|
+
## [2.2.3] - 2026-06-18
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
|
|
29
|
+
- Limit image protocol refresh to modal popup open/close by @chojs23
|
|
30
|
+
- Fix thread-kind reuse by @chojs23
|
|
31
|
+
- Fix mention detecting by authoritative Discord gateway fields (#198) in [#198](https://github.com/chojs23/concord/pull/198) by @chojs23
|
|
32
|
+
|
|
33
|
+
### Features
|
|
34
|
+
|
|
35
|
+
- Add sign-out feature (#202) in [#202](https://github.com/chojs23/concord/pull/202) by @chojs23
|
|
36
|
+
|
|
37
|
+
### Miscellaneous Tasks
|
|
38
|
+
|
|
39
|
+
- Extract app helper modules by @chojs23
|
|
40
|
+
|
|
41
|
+
### Refactor
|
|
42
|
+
|
|
43
|
+
- Split media cache modules by resource by @chojs23
|
|
44
|
+
- Refactor media structure and add jobs by @chojs23
|
|
45
|
+
- Extract dashboard event reducer by @chojs23
|
|
46
|
+
- Redesign modules by @chojs23
|
|
47
|
+
- Reuse message payloads in app events by @chojs23
|
|
48
|
+
- Merge presence updates into optional guild event by @chojs23
|
|
49
|
+
- Refactor some states duplication by @chojs23
|
|
50
|
+
|
|
5
51
|
## [2.2.2] - 2026-06-14
|
|
6
52
|
|
|
7
53
|
### Documentation
|
package/README.md
CHANGED
|
@@ -168,7 +168,8 @@ By default, tokens are saved in the system keychain when available. In the
|
|
|
168
168
|
default `auto` mode, Concord falls back to its state directory when keychain
|
|
169
169
|
storage is unavailable. See the Security section below for details.
|
|
170
170
|
|
|
171
|
-
|
|
171
|
+
To sign out with the default keys, open your profile with `Space`, `p`, then
|
|
172
|
+
choose `[o] Sign out`.
|
|
172
173
|
|
|
173
174
|
### Guilds & Channels
|
|
174
175
|
|
|
@@ -335,6 +336,7 @@ Message action menu shortcuts:
|
|
|
335
336
|
| `d` | Delete | Open a delete confirmation before deleting the message |
|
|
336
337
|
| `e` | Edit | Start editing the selected message when editing is allowed |
|
|
337
338
|
| `o` | Open URL | Open the selected message URL, or choose from multiple URLs |
|
|
339
|
+
| `D` | Remove embeds | Remove embeds from the selected message |
|
|
338
340
|
| `x` | Play media | Play selected video media in an external player |
|
|
339
341
|
| `v` | View attachment | Open the selected message's attachment viewer |
|
|
340
342
|
| `g` | Go to referenced message | Go to the replied or forwarded message |
|
|
@@ -354,6 +356,7 @@ Server actions:
|
|
|
354
356
|
| `m` | Mark server as read | Mark all unread viewable channels in this server read |
|
|
355
357
|
| `u` | Mute / unmute | Toggle server notification mute |
|
|
356
358
|
| `l` | Leave server | Open a confirmation before leaving this server |
|
|
359
|
+
| `r` | Rename folder | Rename the selected server folder |
|
|
357
360
|
|
|
358
361
|
Channel actions:
|
|
359
362
|
|
|
@@ -563,6 +566,7 @@ VoiceLeave = "<leader>vl"
|
|
|
563
566
|
MarkAsRead = "m"
|
|
564
567
|
MuteServer = "u"
|
|
565
568
|
LeaveServer = "l"
|
|
569
|
+
RenameFolder = "r"
|
|
566
570
|
|
|
567
571
|
[keymap.channel_actions]
|
|
568
572
|
JoinVoice = "j"
|
|
@@ -579,6 +583,7 @@ ReplyMessage = "R"
|
|
|
579
583
|
DeleteMessage = "d"
|
|
580
584
|
EditMessage = "e"
|
|
581
585
|
OpenMessageUrl = "o"
|
|
586
|
+
RemoveMessageEmbeds = "D"
|
|
582
587
|
PlayMedia = "x"
|
|
583
588
|
ViewMessageAttachment = "v"
|
|
584
589
|
GoToReferencedMessage = "g"
|
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.2.
|
|
26
|
+
"version": "2.2.4"
|
|
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.
|
|
545
|
+
"version": "2.2.4"
|
|
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.
|
|
3
|
+
"https://github.com/chojs23/concord/releases/download/v2.2.4"
|
|
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.
|
|
96
|
+
"version": "2.2.4",
|
|
97
97
|
"volta": {
|
|
98
98
|
"node": "18.14.1",
|
|
99
99
|
"npm": "9.5.0"
|