This commit is contained in:
Siddharth
2025-10-12 17:42:06 -07:00
parent ac849a3337
commit 7428afaa6d
3 changed files with 4 additions and 3 deletions
+2 -1
View File
@@ -26,7 +26,8 @@
]
}
],
"artifactName": "${productName}-Windows-${version}-Setup.${ext}"
"artifactName": "${productName}-Windows-${version}-Setup.${ext}",
"requestedExecutionLevel": "asInvoker"
},
"nsis": {
"oneClick": false,
+1 -1
View File
@@ -43,7 +43,7 @@ export function LaunchWindow() {
return (
<div className="w-full h-full flex items-center justify-center bg-transparent">
<div className="flex items-center gap-6 backdrop-blur-lg bg-white/10 rounded-full px-6 py-3 shadow-2xl border border-white/30">
<div className="flex items-center gap-6 backdrop-blur-xl bg-black/80 rounded-full px-6 py-3 shadow-2xl border border-white/20">
<Button
variant="link"
size="sm"
+1 -1
View File
@@ -56,7 +56,7 @@ export function useScreenRecorder(): UseScreenRecorderReturn {
let mimeType = "video/webm;codecs=vp9";
const recorder = new MediaRecorder(streamRef.current, {
mimeType,
videoBitsPerSecond: 8000000,
videoBitsPerSecond: 16_000_000,
});
mediaRecorderRef.current = recorder;
recorder.ondataavailable = (e) => {