Phase 786: sync-guild-typing IPC for mesh typing refresh (v0.8.753)
Co-authored-by: Cursor <[email protected]>
This commit is contained in:
@@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
Pearcord desktop UI IPC dispatch and automated flow scenarios for Bare smokes. Mirrors `apps/pearcord` pear-pipe message handling.
|
Pearcord desktop UI IPC dispatch and automated flow scenarios for Bare smokes. Mirrors `apps/pearcord` pear-pipe message handling.
|
||||||
|
|
||||||
|
**Phase 786 (v0.8.753):** `sync-guild-typing` → typing emit + light push. Bundle: `npm run test:ci-phase786`.
|
||||||
|
|
||||||
**Phase 785 (v0.8.752):** `sync-guild-voice` → voice-state emit + fanout + structural push. Bundle: `npm run test:ci-phase785`.
|
**Phase 785 (v0.8.752):** `sync-guild-voice` → voice-state emit + fanout + structural push. Bundle: `npm run test:ci-phase785`.
|
||||||
|
|
||||||
**Phase 784 (v0.8.751):** `sync-guild-unread` → notification emit + fanout + structural push. Bundle: `npm run test:ci-phase784`.
|
**Phase 784 (v0.8.751):** `sync-guild-unread` → notification emit + fanout + structural push. Bundle: `npm run test:ci-phase784`.
|
||||||
|
|||||||
@@ -766,6 +766,13 @@ async function dispatchUiMessage (platform, msg, hooks = {}) {
|
|||||||
}
|
}
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
if (t === 'sync-guild-typing') {
|
||||||
|
if (platform.mode === 'guild' && platform.activeChannelId) {
|
||||||
|
platform.emit('typing')
|
||||||
|
}
|
||||||
|
pushState({ light: false, source: 'sync-guild-typing' })
|
||||||
|
return true
|
||||||
|
}
|
||||||
if (t === 'sync-guild-voice') {
|
if (t === 'sync-guild-voice') {
|
||||||
if (platform.mode === 'guild' && platform.guild?.guild?.id) {
|
if (platform.mode === 'guild' && platform.guild?.guild?.id) {
|
||||||
platform.emit('voice-state')
|
platform.emit('voice-state')
|
||||||
|
|||||||
Reference in New Issue
Block a user