@chojs23/concord 2.3.0 → 2.3.1

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 CHANGED
@@ -2,6 +2,22 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [2.3.1] - 2026-07-07
6
+
7
+ ### Features
8
+
9
+ - Add delete line composer key (#246) in [#246](https://github.com/chojs23/concord/pull/246) by @chojs23
10
+ - Support CONCORD_TOKEN env var in Auto credential mode (#243) in [#243](https://github.com/chojs23/concord/pull/243) by @yilisharcs
11
+ - Collapse avatar gutter and move selected-message time to border (#247) in [#247](https://github.com/chojs23/concord/pull/247) by @chojs23
12
+
13
+ ### Refactor
14
+
15
+ - Generalize composer input actions by @chojs23
16
+
17
+ ### New Contributors
18
+
19
+ - @yilisharcs made their first contribution in [#243](https://github.com/chojs23/concord/pull/243)
20
+
5
21
  ## [2.3.0] - 2026-07-06
6
22
 
7
23
  ### Bug Fixes
package/README.md CHANGED
@@ -173,6 +173,7 @@ aplay -D pulse /usr/share/sounds/alsa/Front_Center.wav
173
173
  - **Token** : paste an existing Discord token.
174
174
  - **Email / Password** : login with credentials. MFA (TOTP, SMS) is fully supported.
175
175
  - **QR Code** : scan the code from the Discord mobile app.
176
+ - **CONCORD_TOKEN env var** : set `CONCORD_TOKEN=your-token` before launching Concord. It overrides every `credentials.store` mode (`auto`, `keychain`, `plain`).
176
177
 
177
178
  Email and QR code logins may trigger a CAPTCHA challenge on Discord's side. We cannot solve that, so I strongly recommend using token authentication.
178
179
 
@@ -434,6 +435,7 @@ overlay.
434
435
  | `Ctrl+c` | clear | Clear current draft |
435
436
  | `Ctrl+Left`/ `Ctrl+Right` | Jump word | Jump the cursor by word |
436
437
  | `Alt+Backspace`, `Ctrl+Backspace` / `Ctrl+w` | Delete word | Delete the word before the cursor |
438
+ | `Ctrl+u` / `Ctrl+k` | Delete line text | Delete from cursor to start/end of the current line |
437
439
  | `Delete` | Detach attachment | Removes the last pending attachment |
438
440
  | `Alt+p` | Toggle reply ping | Toggle whether replying pings the original author |
439
441
 
@@ -689,6 +691,8 @@ ClearInput = "<C-c>"
689
691
  RemoveLastAttachment = "delete"
690
692
  DeletePreviousChar = "backspace"
691
693
  DeletePreviousWord = { keys = ["<A-backspace>", "<C-backspace>", "<C-w>"] }
694
+ DeleteToLineStart = "<C-u>"
695
+ DeleteToLineEnd = "<C-k>"
692
696
  MoveCursorUp = "up"
693
697
  MoveCursorDown = "down"
694
698
  MoveCursorWordLeft = "<C-left>"
@@ -751,6 +755,7 @@ No. If Discord requires a CAPTCHA during login, use token login instead.
751
755
 
752
756
  - By default, tokens are stored in the system keychain when available.
753
757
  - On Linux, keychain storage uses Secret Service when a compatible service is available.
758
+ - The `CONCORD_TOKEN` environment variable lets you provide a token without writing it to disk. This avoids leaving plaintext on disk, but the token is visible in `/proc/<pid>/environ` and in process listings while Concord is running.
754
759
  - In `credentials.store = "auto"`, Concord falls back to **plain text** credentials under Concord's state directory when keychain storage is unavailable. In `keychain` mode, Concord does not fall back to plain storage. Keep fallback credential files secure and do not share them. You can use a token from that file to log in to the official Discord client, so treat it like a password.
755
760
  - On Unix, the fallback credential's parent directory is created with `0700` and the credential file with `0600` permissions.
756
761
 
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "GPL-3.0-only",
25
25
  "name": "@chojs23/concord",
26
- "version": "2.3.0"
26
+ "version": "2.3.1"
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.3.0"
545
+ "version": "2.3.1"
546
546
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "artifactDownloadUrls": [
3
- "https://github.com/chojs23/concord/releases/download/v2.3.0"
3
+ "https://github.com/chojs23/concord/releases/download/v2.3.1"
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.3.0",
96
+ "version": "2.3.1",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"