@chojs23/concord 2.2.5 → 2.2.6
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 +6 -0
- package/README.md +14 -2
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [2.2.6] - 2026-06-21
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- Image protocol pref (#209) in [#209](https://github.com/chojs23/concord/pull/209) by @chojs23
|
|
10
|
+
|
|
5
11
|
## [2.2.5] - 2026-06-21
|
|
6
12
|
|
|
7
13
|
### Documentation
|
package/README.md
CHANGED
|
@@ -434,6 +434,9 @@ to `config.toml`. Key settings are read from `keymap.toml`.
|
|
|
434
434
|
|
|
435
435
|
```toml
|
|
436
436
|
[display]
|
|
437
|
+
# Image protocol: auto, iterm2, kitty, sixel, or halfblocks.
|
|
438
|
+
image_protocol = "auto"
|
|
439
|
+
|
|
437
440
|
# Master switch that hides all image previews when true.
|
|
438
441
|
disable_image_preview = false
|
|
439
442
|
|
|
@@ -498,7 +501,16 @@ voice_output_volume = 100
|
|
|
498
501
|
|
|
499
502
|
</details><br>
|
|
500
503
|
|
|
501
|
-
`
|
|
504
|
+
`image_protocol`:
|
|
505
|
+
|
|
506
|
+
- `auto`: use terminal detection. In iTerm, Concord uses the iTerm2 protocol
|
|
507
|
+
because terminal capability detection can incorrectly select Kitty there.
|
|
508
|
+
- `iterm2`: force the iTerm2 inline image protocol.
|
|
509
|
+
- `kitty`: force the Kitty graphics protocol.
|
|
510
|
+
- `sixel`: force Sixel rendering.
|
|
511
|
+
- `halfblocks`: force Unicode half-block fallback rendering.
|
|
512
|
+
|
|
513
|
+
`image_preview_quality`:
|
|
502
514
|
|
|
503
515
|
- `efficient`: smaller preview requests to reduce bandwidth and memory use.
|
|
504
516
|
- `balanced`: default quality with bounded resource use.
|
|
@@ -508,7 +520,7 @@ voice_output_volume = 100
|
|
|
508
520
|
This setting only applies to attachment, embed, and attachment viewer previews.
|
|
509
521
|
Avatars and custom emoji keep their separate small-image behavior.
|
|
510
522
|
|
|
511
|
-
`credentials.store
|
|
523
|
+
`credentials.store`:
|
|
512
524
|
|
|
513
525
|
- `auto`: try the system keychain first, then fall back to the state-file credential store.
|
|
514
526
|
- `keychain`: use only the system keychain. If keychain storage is unavailable, the token is not saved.
|
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.6"
|
|
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.6"
|
|
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.6"
|
|
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.6",
|
|
97
97
|
"volta": {
|
|
98
98
|
"node": "18.14.1",
|
|
99
99
|
"npm": "9.5.0"
|