@chojs23/concord 2.2.10 → 2.2.12
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 +31 -0
- package/README.md +15 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,37 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [2.2.12] - 2026-07-03
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- _(presence)_ Relay Rich Presence from local apps (#239) in [#239](https://github.com/chojs23/concord/pull/239) by @chojs23
|
|
10
|
+
|
|
11
|
+
### Refactor
|
|
12
|
+
|
|
13
|
+
- _(tui)_ Unify custom-emoji image overlays into single module by @chojs23
|
|
14
|
+
|
|
15
|
+
## [2.2.11] - 2026-07-01
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
- Respect user nitro and guild boost restrictions (#234) in [#234](https://github.com/chojs23/concord/pull/234) by @chojs23
|
|
20
|
+
- Fix missing default profile avatar in profile popup by @chojs23
|
|
21
|
+
|
|
22
|
+
### Documentation
|
|
23
|
+
|
|
24
|
+
- Update readme by @chojs23
|
|
25
|
+
|
|
26
|
+
### Features
|
|
27
|
+
|
|
28
|
+
- Add reply pings toggle option (#232) in [#232](https://github.com/chojs23/concord/pull/232) by @chojs23
|
|
29
|
+
- Allow file drop without needing to already be composing (#212) (#227) in [#227](https://github.com/chojs23/concord/pull/227) by @LmanTW
|
|
30
|
+
- Support bare array keymap bindings (#233) in [#233](https://github.com/chojs23/concord/pull/233) by @chojs23
|
|
31
|
+
|
|
32
|
+
### Refactor
|
|
33
|
+
|
|
34
|
+
- _(tests)_ Construct AppEvent variants via shared fixtures by @chojs23
|
|
35
|
+
|
|
5
36
|
## [2.2.10] - 2026-06-30
|
|
6
37
|
|
|
7
38
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -246,6 +246,15 @@ options menu.
|
|
|
246
246
|
- Presence indicators (Online, Idle, DND, Offline)
|
|
247
247
|
- Configure user profile and custom activity status
|
|
248
248
|
|
|
249
|
+
### Rich Presence
|
|
250
|
+
|
|
251
|
+
- Concord serves the local `discord-ipc` socket, detects connected apps, and
|
|
252
|
+
lets you pick which one to share from your profile's activity picker
|
|
253
|
+
- Only apps that speak Discord's Rich Presence (RPC/IPC) protocol are detected.
|
|
254
|
+
- Detection needs the official Discord client closed, since only one program can
|
|
255
|
+
own the socket and the official client claims it first
|
|
256
|
+
- Toggle with `share_rich_presence` under `[presence]` in `config.toml`
|
|
257
|
+
|
|
249
258
|
### Typing Indicators & Read State
|
|
250
259
|
|
|
251
260
|
- Live "user is typing..." indicators
|
|
@@ -414,6 +423,7 @@ overlay.
|
|
|
414
423
|
| `Ctrl+Left`/ `Ctrl+Right` | Jump word | Jump the cursor by word |
|
|
415
424
|
| `Alt+Backspace`, `Ctrl+Backspace` / `Ctrl+w` | Delete word | Delete the word before the cursor |
|
|
416
425
|
| `Delete` | Detach attachment | Removes the last pending attachment |
|
|
426
|
+
| `Alt+p` | Toggle reply ping | Toggle whether replying pings the original author |
|
|
417
427
|
|
|
418
428
|
#### Mention picker
|
|
419
429
|
|
|
@@ -488,6 +498,10 @@ circular_avatars = false
|
|
|
488
498
|
# Send custom emoji your account cannot use directly as image links.
|
|
489
499
|
emojis_as_links = false
|
|
490
500
|
|
|
501
|
+
[presence]
|
|
502
|
+
# Relay Rich Presence from local apps as your activity.
|
|
503
|
+
share_rich_presence = true
|
|
504
|
+
|
|
491
505
|
[credentials]
|
|
492
506
|
# Credential storage: auto, keychain, or plain.
|
|
493
507
|
# auto tries the system keychain first and falls back to the state file.
|
|
@@ -671,6 +685,7 @@ MoveCursorWordRight = "<C-right>"
|
|
|
671
685
|
MoveCursorRight = "right"
|
|
672
686
|
MoveCursorHome = "home"
|
|
673
687
|
MoveCursorEnd = "end"
|
|
688
|
+
ToggleReplyPing = "<A-p>"
|
|
674
689
|
```
|
|
675
690
|
|
|
676
691
|
</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.2.
|
|
26
|
+
"version": "2.2.12"
|
|
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.12"
|
|
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.12"
|
|
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.12",
|
|
97
97
|
"volta": {
|
|
98
98
|
"node": "18.14.1",
|
|
99
99
|
"npm": "9.5.0"
|