- move voice/audio players to single global audio engine with shared volume
- stop/reset previous track when switching to another media
- keep playback alive across chat switches via global audio element
- list refresh sessions by redis scan fallback when user session set is missing
- register notifications service worker and handle click-to-open chat/message
- route realtime notifications through service worker with fallback
- support ?chat=&message= deep-link navigation in chats page
- enforce 1s minimum voice message length
- lift scroll-to-bottom button to avoid overlap with composer action
- show one action button in composer: mic when empty, send when text exists
- add floating scroll-to-bottom button in message list
- exclude non-text/media messages from Chat Info links list to avoid duplicates
- replace modal message search with header inline search controls
- add global top audio bar linked to active inline audio player
- improve chat info header variants and light theme readability
- add message selection mode from context menu
- support batch delete for me and conditional batch delete for everyone
- add undo snackbar for delete-for-me with delayed backend commit
- add restoreMessages helper in chat store for undo rollback
backend:
- add unread_count to ChatRead serialization
- compute unread_count per chat using message_receipts and hidden messages
web:
- add unread badges in chat list
- track unread boundary per chat in store
- show 'New messages' divider in message list
- update realtime flow to increment/clear unread on incoming events
backend:
- add message_hidden table for per-user message hiding
- support DELETE /messages/{id}?for_all=true|false
- implement delete-for-me vs delete-for-all logic by chat type/permissions
- add POST /chats/{chat_id}/clear and route saved chat deletion to clear
web:
- saved messages action changed from delete to clear
- message context menu now supports delete modal: for me / for everyone
- add local store helpers removeMessage/clearChatMessages
- include realtime stability improvements and app error boundary
- render chat/message context menus via portal to document.body
- clamp menu coordinates to viewport while keeping near-cursor placement
- remove visible chat id fallbacks from chat/discover UI
- hide 'delete for everyone' checkbox for channels; show channel-specific hint
- replace forward-by-chat-id prompt with searchable chat picker modal
backend:
- add required user name and optional bio fields
- extend auth/register and user schemas/services with name/bio
- add alembic migration 0006 with safe backfill name=username
- compute per-user chat display_title for private chats
- keep Saved Messages delete-for-all protections
web:
- registration now includes name
- add profile edit modal (name/username/bio/avatar url)
- show private chat names via display_title
- fix context menus to open near cursor with viewport clamping
- stabilize +/close floating button to remove visual jump
- add Saved Messages system chat with dedicated API
- add public group/channel metadata and discover/join endpoints
- add chat delete flow with for_all option and channel-wide delete
- switch message actions to context menu and improve reply/forward visuals
- improve microphone permission handling for voice recording
- add reply_to/forwarded_from message fields and chat pinned_message field
- add forward and pin APIs plus reply support in message create
- wire web actions: Reply, Fwd, Pin and reply composer state
- fix spam policy bug: allow repeated identical messages, keep rate limiting
- optimistic sending state with pending clock icon
- transition statuses sent -> delivered -> read via realtime events
- render checkmarks next to outgoing message timestamps
- add media preview and upload confirmation for image/video
- add upload progress tracking for presigned uploads
- keep voice recording/upload flow with better UI states
- include related realtime/chat updates currently in working tree