-
Notifications
You must be signed in to change notification settings - Fork 536
Add selectable webcam layout presets (Picture in Picture, Vertical Stack) #241
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
a0682e6
579887e
83a6092
c84c244
6236d2a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 22.22.1 | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,6 +3,11 @@ | |
| "private": true, | ||
| "version": "1.2.0", | ||
| "type": "module", | ||
| "packageManager": "npm@10.9.4", | ||
| "engines": { | ||
| "node": "22.22.1", | ||
| "npm": "10.9.4" | ||
| }, | ||
|
Comment on lines
+6
to
+10
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this prevents generating a new lock file when someone is using npm 11 |
||
| "scripts": { | ||
| "dev": "vite", | ||
| "build": "tsc && vite build && electron-builder", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,7 @@ | ||
| import { useEffect, useState } from "react"; | ||
| import { LaunchWindow } from "./components/launch/LaunchWindow"; | ||
| import { SourceSelector } from "./components/launch/SourceSelector"; | ||
| import { Toaster } from "./components/ui/sonner"; | ||
| import { TooltipProvider } from "./components/ui/tooltip"; | ||
| import { ShortcutsConfigDialog } from "./components/video-editor/ShortcutsConfigDialog"; | ||
| import VideoEditor from "./components/video-editor/VideoEditor"; | ||
|
|
@@ -48,5 +49,10 @@ export default function App() { | |
| } | ||
| })(); | ||
|
|
||
| return <TooltipProvider>{content}</TooltipProvider>; | ||
| return ( | ||
| <TooltipProvider> | ||
| {content} | ||
| <Toaster theme="dark" className="pointer-events-auto" /> | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. bug fix: toaster wasn't working in the control panel - now it is working |
||
| </TooltipProvider> | ||
| ); | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
now you can use the right node version with
nvm use