@chojs23/concord 2.2.10 → 2.2.11
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 +21 -0
- package/README.md +2 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [2.2.11] - 2026-07-01
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- Respect user nitro and guild boost restrictions (#234) in [#234](https://github.com/chojs23/concord/pull/234) by @chojs23
|
|
10
|
+
- Fix missing default profile avatar in profile popup by @chojs23
|
|
11
|
+
|
|
12
|
+
### Documentation
|
|
13
|
+
|
|
14
|
+
- Update readme by @chojs23
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
- Add reply pings toggle option (#232) in [#232](https://github.com/chojs23/concord/pull/232) by @chojs23
|
|
19
|
+
- Allow file drop without needing to already be composing (#212) (#227) in [#227](https://github.com/chojs23/concord/pull/227) by @LmanTW
|
|
20
|
+
- Support bare array keymap bindings (#233) in [#233](https://github.com/chojs23/concord/pull/233) by @chojs23
|
|
21
|
+
|
|
22
|
+
### Refactor
|
|
23
|
+
|
|
24
|
+
- _(tests)_ Construct AppEvent variants via shared fixtures by @chojs23
|
|
25
|
+
|
|
5
26
|
## [2.2.10] - 2026-06-30
|
|
6
27
|
|
|
7
28
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -414,6 +414,7 @@ overlay.
|
|
|
414
414
|
| `Ctrl+Left`/ `Ctrl+Right` | Jump word | Jump the cursor by word |
|
|
415
415
|
| `Alt+Backspace`, `Ctrl+Backspace` / `Ctrl+w` | Delete word | Delete the word before the cursor |
|
|
416
416
|
| `Delete` | Detach attachment | Removes the last pending attachment |
|
|
417
|
+
| `Alt+p` | Toggle reply ping | Toggle whether replying pings the original author |
|
|
417
418
|
|
|
418
419
|
#### Mention picker
|
|
419
420
|
|
|
@@ -671,6 +672,7 @@ MoveCursorWordRight = "<C-right>"
|
|
|
671
672
|
MoveCursorRight = "right"
|
|
672
673
|
MoveCursorHome = "home"
|
|
673
674
|
MoveCursorEnd = "end"
|
|
675
|
+
ToggleReplyPing = "<A-p>"
|
|
674
676
|
```
|
|
675
677
|
|
|
676
678
|
</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.11"
|
|
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.11"
|
|
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.11"
|
|
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.11",
|
|
97
97
|
"volta": {
|
|
98
98
|
"node": "18.14.1",
|
|
99
99
|
"npm": "9.5.0"
|