This commit is contained in:
legop3
2025-11-15 23:59:30 -05:00
parent 8c25114c50
commit 38c087b7d5
4 changed files with 7 additions and 5 deletions
+2
View File
@@ -1,5 +1,7 @@
## video stream ## video stream
- video stream needs to always autoplay, even if it cant unmute itself - video stream needs to always autoplay, even if it cant unmute itself
- currently, it wont play at all unless it can unmute - currently, it wont play at all unless it can unmute
- video stream currently unloads and reloads based on the tab being active
- just remove this feature. It needs to stay running all the time.
## ##
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -5,7 +5,7 @@
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> <link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>webui</title> <title>webui</title>
<script type="module" crossorigin src="/assets/index-CIkC6ML4.js"></script> <script type="module" crossorigin src="/assets/index-DIOCVx-w.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-DbekZdBV.css"> <link rel="stylesheet" crossorigin href="/assets/index-DbekZdBV.css">
</head> </head>
<body> <body>
+3 -3
View File
@@ -80,23 +80,23 @@ function MobileLandscapeLayout() {
<div className="flex flex-col gap-1"> <div className="flex flex-col gap-1">
<section className="grid grid-cols-[minmax(0,0.7fr)_minmax(0,2.1fr)_minmax(0,0.7fr)] gap-1"> <section className="grid grid-cols-[minmax(0,0.7fr)_minmax(0,2.1fr)_minmax(0,0.7fr)] gap-1">
<div className="flex flex-col gap-1"> <div className="flex flex-col gap-1">
<DrivePanel />
<AuxMotorControls /> <AuxMotorControls />
<DrivePanel />
</div> </div>
<DriverVideoPanel /> <DriverVideoPanel />
<div className="flex flex-col gap-1"> <div className="flex flex-col gap-1">
<MobileJoystick /> <MobileJoystick />
<TelemetryPanel />
</div> </div>
</section> </section>
<RoomCameraPanel />
<section className="grid grid-cols-[minmax(0,1fr)_minmax(0,1fr)] gap-1"> <section className="grid grid-cols-[minmax(0,1fr)_minmax(0,1fr)] gap-1">
<div className="flex flex-col gap-1"> <div className="flex flex-col gap-1">
<AuthPanel /> <AuthPanel />
<AdminPanel /> <AdminPanel />
</div> </div>
<div className="flex flex-col gap-1"> <div className="flex flex-col gap-1">
<RoomCameraPanel />
<LogPanel /> <LogPanel />
<TelemetryPanel />
</div> </div>
</section> </section>
</div> </div>