Cyril
191f8abbcc
♿ ️(frontend) improve chat a11y for screen readers
...
Chat messages announced via role="log" when open, toast+announce when closed.
2026-03-09 16:06:08 +01:00
Cyril
042be17cfa
♿ ️(frontend) improve MoreLink a11y and UX on home page
...
Render MoreLink once in LeftColumn, make full phrase clickable and add icon.
2026-03-09 14:27:39 +01:00
Cyril
d00f4fa695
♿ ️(frontend) sync html lang attribute with i18n for screen readers
...
Set document.documentElement.lang in i18n init and on languageChanged,
2026-03-09 13:32:10 +01:00
Cyril
c72c5cae1a
♿ ️(frontend) dynamic tab title when connected to meeting
...
Display room name, date and app title in browser tab
2026-03-05 17:58:00 +01:00
lebaudantoine
b564044e70
🔖 (minor) bump release to 1.10.0
2026-03-05 14:19:25 +01:00
dependabot[bot]
805e983749
Bump @hono/node-server from 1.19.9 to 1.19.10 in /src/frontend
...
Bumps [@hono/node-server](https://github.com/honojs/node-server ) from 1.19.9 to 1.19.10.
- [Release notes](https://github.com/honojs/node-server/releases )
- [Commits](https://github.com/honojs/node-server/compare/v1.19.9...v1.19.10 )
---
updated-dependencies:
- dependency-name: "@hono/node-server"
dependency-version: 1.19.10
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-05 12:13:29 +01:00
Cyril
6dfafb7f67
💄 (fix) truncate long names with ellipsis in reaction overlay
...
Long participant names under emoji reactions overflow without truncation.
2026-03-05 11:38:47 +01:00
lebaudantoine
e56c0f997e
🩹 (frontend) fix overflow in participant metadata layout
...
Recent styling changes introduced an overflow, causing the network
indicator to be pushed outside of the participant tile.
Remove width: 100% and add a minimal gap to prevent metadata
elements from being too close to each other.
2026-03-04 20:39:09 +01:00
lebaudantoine
61afd94e3a
🩹 (frontend) enhance shortcut hint styling using PandaCSS utilities
...
Refactor styles to leverage PandaCSS inline capabilities for
better clarity and consistency.
Remove an unnecessary div wrapper that was causing a layout shift.
2026-03-04 20:39:09 +01:00
Cyril
3d7aec2b4a
♿ ️(frontend) announce selected state to SR in select and menu list
...
Add visually hidden "selected" text for screen readers.
2026-03-04 19:07:34 +01:00
dependabot[bot]
9c009839f0
Bump minimatch from 3.1.2 to 3.1.5 in /src/frontend
...
Bumps [minimatch](https://github.com/isaacs/minimatch ) from 3.1.2 to 3.1.5.
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md )
- [Commits](https://github.com/isaacs/minimatch/compare/v3.1.2...v3.1.5 )
---
updated-dependencies:
- dependency-name: minimatch
dependency-version: 3.1.5
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-04 17:22:29 +01:00
lebaudantoine
fcde8757e6
🩹 (frontend) remove incorrect reference to ProConnect on the prejoin
...
Remove incorrect reference to ProConnect (DINUM SSO) from content
literals, where it should not be mentioned by default in the
white labeled version.
It closes #1075
2026-03-04 14:04:37 +01:00
Cyril
9610e606eb
♿ ️(frontend) prevent focus ring clipping
...
Change overflow from hidden to visible on invite dialog
2026-03-04 13:39:02 +01:00
Cyril
8362ac0e24
♿ ️(frontend) shortcuts table: semantic structure and kbd badge
...
caption, th scope, <kbd> for keys, no Tab stops on rows
2026-03-04 12:09:38 +01:00
Cyril
f1ddd7fa2f
♻️ (frontend) show shortcut hint only on first grid tile via CSS
...
Use :first-child and :focus-within to restrict hint visibility to the first tile
2026-03-04 12:08:22 +01:00
Cyril
487340efca
♻️ (frontend) move fullscreen and recording shortcuts to their components
...
Register Ctrl+Shift+F in DesktopControlBar, Ctrl+Shift+L in ToolsToggle
2026-03-04 12:07:39 +01:00
Cyril
7ebc928dd3
✨ (frontend) add Ctrl+Shift+/ to open shortcuts settings
...
Update toolbar hint and register shortcut to open settings on shortcuts tab
2026-03-04 12:07:39 +01:00
Cyril
85de214ca7
💄 (frontend) truncate pinned participant name with ellipsis on overflow
...
Long participant names are now truncated with an ellipsis.
2026-03-04 11:21:10 +01:00
lebaudantoine
e3e34dbf31
⚡ ️(frontend) optimize countdown check in IsIdleDisconnectModal.tsx
...
Using Array.includes runs in O(n) on every second of the countdown.
Replace the array with a Set to achieve O(1) lookups for better
performance.
2026-03-04 10:22:29 +01:00
lebaudantoine
555afe4abd
⚡ ️(frontend) fix roomId RegExp recompilation
...
The regex was being recreated on every function call, causing
unnecessary performance overhead.
Hoist the RegExp to a module-level constant to reuse the compiled
pattern.
2026-03-04 10:22:29 +01:00
lebaudantoine
78ddb121e3
⚡ ️(frontend) avoid recreating inline array props in VideoTab.tsx
...
The items array was defined inline, creating a new reference on
every render.
Hoist the array to a module-level constant or memoize it with
useMemo to prevent unnecessary re-renders.
2026-03-04 10:22:29 +01:00
lebaudantoine
ca9c7fc152
⚡ ️(frontend) avoid non-primitive default props recreation on each render
...
The empty object literal created a new reference every render,
potentially triggering unnecessary re-renders.
Hoist an EMPTY_PROPS constant to the module level and reuse it
instead of allocating a new object.
2026-03-04 10:22:29 +01:00
lebaudantoine
6e3845d0c1
⚡ ️(frontend) fix missing import type in Rating.tsx
...
Replace runtime import of PostHog with a type-only import to
avoid loading the module at runtime.
2026-03-04 10:22:29 +01:00
lebaudantoine
41b171da68
🩹 (frontend) fix double await in Join.tsx
...
Remove redundant await in videoTrack.setDeviceId call
to avoid unnecessary promise chaining.
2026-03-04 10:22:29 +01:00
lebaudantoine
4ad897e756
⚡ ️(frontend) optimize enterRoom calls in useWaitingParticipants
...
Replace sequential await inside the loop with Promise.all, since
each enterRoom call is independent.
This prevents unnecessary delays when multiple participants are
waiting (e.g. 10 participants previously resulted in ~10x longer
execution time).
2026-03-04 10:22:29 +01:00
Cyril
1d23cb889a
♿ ️(frontend) announce mic/camera state for screen readers on shortcut
...
announce "Microphone/Camera turned on/off" when toggling via
keyboard shortcut so screen reader users get feedback
2026-03-03 09:46:47 +01:00
lebaudantoine
b2ad423886
🔖 (minor) bump release to 1.9.0
2026-03-02 14:33:25 +01:00
Cyril
8d5488c333
♿ ️(frontend) add skip link component for keyboard navigation
...
Improve a11y: skip to main heading, bypass header. RGAA 12.7.
2026-02-27 22:49:03 +01:00
lebaudantoine
5c0e6b6479
⬆️ (frontend) update react-aria-components to a newer version
...
The previously pinned version (July release) did not support
passing the aria-disabled prop to React Aria Button.
A more recent release (August) introduced this capability.
Upgrade is required to make Cyril's proposal work.
2026-02-27 19:39:55 +01:00
Cyril
077cf59082
♿ ️(frontend) keep carousel nav buttons focusable at first and last slide
...
use aria-disabled to prevent focus loss when reaching slide limits
2026-02-27 19:39:55 +01:00
Cyril
4881fa20f5
♿ ️(frontend) fix carousel focus ring visibility with NVDA
...
add :focus fallback for nav buttons when focus-visible detection fails
2026-02-27 19:39:55 +01:00
Cyril
116db1e697
♿ ️(frontend) improve IntroSlider accessibility for screen readers
...
add aria-labels with slide position, carousel semantics, live region
2026-02-27 19:39:55 +01:00
Cyril
e8739d7e70
♿ ️(frontend) improve JoinMeetingDialog screen reader
...
Focus input on modal open and improve screen reader announcements
2026-02-26 18:35:15 +01:00
lebaudantoine
cd0cec78ba
🩹 (frontend) fix German language preference update
...
German was missing from the frontend/backend language list in the
sync hook, causing user preference updates to be ignored.
Add the language to ensure preference changes are properly applied.
2026-02-25 17:01:02 +01:00
Cyril
259b739160
♿ ️(a11y) fix focus ring on tab container components
...
Suppress inherited global focus ring on Tabs, TabList, and TabPanel containers.
2026-02-24 14:37:49 +01:00
Cyril
2cdf19de77
♻️ (frontend) remove redundant formatLongPressLabel helper
...
Use i18next interpolation directly in useShortcutFormatting
2026-02-24 09:16:16 +01:00
Cyril
fcf08a6dbd
🌐 (frontend) localize SR modifier labels
...
Replace hardcoded 'Alt'/'Shift' in SR formatter with i18next
labels. Use Option/Alt distinction on Mac like Ctrl/Command.
2026-02-24 09:13:03 +01:00
Cyril
7bf623f654
🌐 (frontend) localize SR modifier labels
...
Replace hardcoded 'Alt' and 'Shift' in the SR shortcut
2026-02-24 09:06:53 +01:00
lebaudantoine
1c1d1938d9
🚚 (frontend) rename "wellknown" directory to "well-known"
...
Fix a typo introduced while configuring the correct directory for
automatic container view opening on Windows.
2026-02-23 20:20:54 +01:00
Ovgodd
8ca52737cd
✨ (frontend) introduce a shortcut settings tab
...
Work adapted from PR #859 and partially extracted to ship as a
smaller, focused PR.
This allows users to view the full list of available shortcuts.
An editor to customize these shortcuts may be introduced later.
2026-02-23 14:26:52 +01:00
lebaudantoine
127d4e1d5a
⬆️ (frontend) update livekit-related dependencies
...
Bring packages to the latest compatible versions.
2026-02-23 12:14:00 +01:00
lebaudantoine
99cbc1f784
⬆️ (frontend) update panda-related dependencies
...
Bring packages to the latest compatible versions.
2026-02-23 12:14:00 +01:00
lebaudantoine
246312c51c
⬆️ (frontend) update i18next-related dependencies
...
Bring packages to the latest compatible versions.
2026-02-23 12:14:00 +01:00
lebaudantoine
1b09683938
⬆️ (frontend) update vite-related dependencies
...
Bring packages to the latest compatible versions.
2026-02-23 12:14:00 +01:00
lebaudantoine
db3d3d61ef
⬆️ (frontend) update tanstack-related dependencies
...
Bring packages to the latest compatible versions.
2026-02-23 12:14:00 +01:00
Cyril
c1a797c2c1
💄 (frontend) add focus ring to reaction emoji buttons
...
show outline on keyboard focus, fix when sr is opened
2026-02-23 10:29:17 +01:00
dependabot[bot]
0b73fd8f06
Bump undici from 6.19.8 to 6.23.0 in /src/frontend
...
Bumps [undici](https://github.com/nodejs/undici ) from 6.19.8 to 6.23.0.
- [Release notes](https://github.com/nodejs/undici/releases )
- [Commits](https://github.com/nodejs/undici/compare/v6.19.8...v6.23.0 )
---
updated-dependencies:
- dependency-name: undici
dependency-version: 6.23.0
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-02-23 10:00:40 +01:00
lebaudantoine
e362765b21
🔒 ️(frontend) uninstall curl from the frontend production image
...
Remove unnecessary package to reduce image size and surface area.
2026-02-20 18:27:17 +01:00
Cyril
3087dfe486
♻️ (frontend) replace custom reactions toolbar with react aria popover
...
use react aria primitives for escape, focus containment and restore
2026-02-20 18:21:33 +01:00
lebaudantoine
9916ab7d7e
🔖 (minor) bump release to 1.8.0
2026-02-20 13:44:19 +01:00