@chojs23/concord 2.2.11 → 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 CHANGED
@@ -2,6 +2,16 @@
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
+
5
15
  ## [2.2.11] - 2026-07-01
6
16
 
7
17
  ### 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
@@ -489,6 +498,10 @@ circular_avatars = false
489
498
  # Send custom emoji your account cannot use directly as image links.
490
499
  emojis_as_links = false
491
500
 
501
+ [presence]
502
+ # Relay Rich Presence from local apps as your activity.
503
+ share_rich_presence = true
504
+
492
505
  [credentials]
493
506
  # Credential storage: auto, keychain, or plain.
494
507
  # auto tries the system keychain first and falls back to the state file.
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "GPL-3.0-only",
25
25
  "name": "@chojs23/concord",
26
- "version": "2.2.11"
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.11"
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.11"
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.11",
96
+ "version": "2.2.12",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"