I ran into two setup/startup issues on Linux that seem related to current repo state.
1) Missing dependency: lucide-react
After cloning and running npm install, the app failed until I manually installed lucide-react.
lucide-react is imported in source files (for example: src/components/video-editor/TutorialHelp.tsx) but is not listed in package.json dependencies/devDependencies.
Expected
npm install should install everything required to run the app.
Actual
Manual npm i lucide-react is required.
2) Linux startup: app only appears in tray, window does not show
When launching the app, I can see Recordly in the system tray, but no main window appears.
I also see this log line:
[45527:0418/122231.948021:ERROR:media/gpu/vaapi/vaapi_wrapper.cc:1631] vaInitialize failed: unknown libva error
Expected
Main UI window should appear on launch (or when clicking tray icon).
Actual
Only tray icon appears; no visible window.
Notes
This may be Linux Wayland/VAAPI/GPU related. It could help to test startup behavior with:
- X11 (
ELECTRON_OZONE_PLATFORM_HINT=x11)
- GPU disabled (
ELECTRON_DISABLE_GPU=1)
Thanks for looking into this — happy to provide more env details/logs if needed.
I ran into two setup/startup issues on Linux that seem related to current repo state.
1) Missing dependency:
lucide-reactAfter cloning and running
npm install, the app failed until I manually installedlucide-react.lucide-reactis imported in source files (for example:src/components/video-editor/TutorialHelp.tsx) but is not listed inpackage.jsondependencies/devDependencies.Expected
npm installshould install everything required to run the app.Actual
Manual
npm i lucide-reactis required.2) Linux startup: app only appears in tray, window does not show
When launching the app, I can see Recordly in the system tray, but no main window appears.
I also see this log line:
Expected
Main UI window should appear on launch (or when clicking tray icon).
Actual
Only tray icon appears; no visible window.
Notes
This may be Linux Wayland/VAAPI/GPU related. It could help to test startup behavior with:
ELECTRON_OZONE_PLATFORM_HINT=x11)ELECTRON_DISABLE_GPU=1)Thanks for looking into this — happy to provide more env details/logs if needed.