371371 class =" flex items-center gap-2 cursor-pointer"
372372 @click =" isInstructionsExpanded = !isInstructionsExpanded"
373373 >
374- <span class =" text-sm text-white/70" >Browser Version Instructions</span >
374+ <span class =" text-sm text-white/70" >Cockpit Lite Instructions</span >
375375 <v-icon
376376 class =" text-white/70 transition-transform duration-200"
377377 :class =" { 'rotate-180': isInstructionsExpanded }"
391391 <div class =" text-white/80 text-sm space-y-1" >
392392 <p >
393393 These are raw video chunks that need to be processed. The processing can be done
394- exclusively in the standalone version of Cockpit. The browser version can only record
395- the video chunks.
394+ exclusively in Cockpit Standalone. Cockpit Lite can only record the video chunks.
396395 </p >
397396 <div >
398397 <p class =" font-medium mb-2" >To process your videos:</p >
403402 </li >
404403 <li class =" flex items-start gap-2" >
405404 <span class =" text-white font-bold" >2.</span >
406- <span >Open the standalone version of Cockpit (desktop app) </span >
405+ <span >Open Cockpit Standalone </span >
407406 </li >
408407 <li class =" flex items-start gap-2" >
409408 <span class =" text-white font-bold" >3.</span >
627626 <ol class =" text-white/80 text-sm space-y-2" >
628627 <li class =" flex items-start gap-2" >
629628 <span class =" text-white font-bold" >1.</span >
630- <span >Download raw video chunks from the browser version 's "Raw" tab</span >
629+ <span >Download raw video chunks from Cockpit Lite 's "Raw" tab</span >
631630 </li >
632631 <li class =" flex items-start gap-2" >
633632 <span class =" text-white font-bold" >2.</span >
@@ -831,7 +830,7 @@ const videoSubTabs = [
831830 label: ' Processed' ,
832831 icon: ' mdi-video' ,
833832 disabled: ! isElectron (),
834- tooltip: isElectron () ? ' ' : ' Only available in standalone version ' ,
833+ tooltip: isElectron () ? ' ' : ' Only available in Cockpit Standalone ' ,
835834 },
836835 {
837836 name: ' raw' ,
@@ -845,7 +844,7 @@ const videoSubTabs = [
845844 label: ' Processing' ,
846845 icon: ' mdi-cog-outline' ,
847846 disabled: ! isElectron (),
848- tooltip: isElectron () ? ' Process ZIP files with raw video chunks' : ' Only available in standalone version ' ,
847+ tooltip: isElectron () ? ' Process ZIP files with raw video chunks' : ' Only available in Cockpit Standalone ' ,
849848 },
850849]
851850
@@ -854,7 +853,7 @@ const openElectronFolder = (opener: () => void): void => {
854853 opener ()
855854 } else {
856855 openSnackbar ({
857- message: ' This feature is only available in the desktop version of Cockpit.' ,
856+ message: ' This feature is only available in Cockpit Standalone .' ,
858857 duration: 3000 ,
859858 variant: ' error' ,
860859 closeButton: true ,
@@ -876,7 +875,7 @@ const playVideoInDefaultPlayer = (fileName: string): void => {
876875 if (isElectron () && window .electronAPI ) {
877876 window .electronAPI ?.openVideoFile (fileName )
878877 } else {
879- openSnackbar ({ message: ' This feature is only available in the desktop version of Cockpit.' , variant: ' error' })
878+ openSnackbar ({ message: ' This feature is only available in Cockpit Standalone .' , variant: ' error' })
880879 }
881880}
882881
0 commit comments