From 4f5b248c1a5e1eaff083267bdc3545fc00a19a68 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Thu, 6 Nov 2025 00:09:01 +0530 Subject: [PATCH 1/9] feat: use outputPreviewHeight --- src/components/run/InterpretationLog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/run/InterpretationLog.tsx b/src/components/run/InterpretationLog.tsx index a00426948..c269add1c 100644 --- a/src/components/run/InterpretationLog.tsx +++ b/src/components/run/InterpretationLog.tsx @@ -453,7 +453,7 @@ export const InterpretationLog: React.FC = ({ isOpen, se background: `${darkMode ? '#1d1c1cff' : 'white'}`, color: `${darkMode ? 'white' : 'black'}`, padding: '10px', - height: "calc(100% - 140px)", + height: outputPreviewHeight, width: outputPreviewWidth, display: 'flex', flexDirection: 'column', From 596d2781c9bde785cd0681dfea723d4f90a12346 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Thu, 6 Nov 2025 00:25:38 +0530 Subject: [PATCH 2/9] fix: set position relative --- src/components/recorder/RightSidePanel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/recorder/RightSidePanel.tsx b/src/components/recorder/RightSidePanel.tsx index e22ab08bb..4faa90817 100644 --- a/src/components/recorder/RightSidePanel.tsx +++ b/src/components/recorder/RightSidePanel.tsx @@ -534,7 +534,7 @@ export const RightSidePanel: React.FC = ({ onFinishCapture const isDarkMode = theme.darkMode; return ( - + {!isAnyActionActive && ( From 16f7bb12bcac4d835410f50c5f432668dd951d11 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Thu, 6 Nov 2025 00:26:04 +0530 Subject: [PATCH 3/9] fix: set border none --- src/components/recorder/RightSidePanel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/recorder/RightSidePanel.tsx b/src/components/recorder/RightSidePanel.tsx index 4faa90817..d5a7c29c0 100644 --- a/src/components/recorder/RightSidePanel.tsx +++ b/src/components/recorder/RightSidePanel.tsx @@ -534,7 +534,7 @@ export const RightSidePanel: React.FC = ({ onFinishCapture const isDarkMode = theme.darkMode; return ( - + {!isAnyActionActive && ( From f8b54b98b00876442299c815919ac834b969b86b Mon Sep 17 00:00:00 2001 From: amhsirak Date: Thu, 6 Nov 2025 00:32:17 +0530 Subject: [PATCH 4/9] chore: cloud sync --- src/pages/RecordingPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/RecordingPage.tsx b/src/pages/RecordingPage.tsx index 6e3624713..02a1d6262 100644 --- a/src/pages/RecordingPage.tsx +++ b/src/pages/RecordingPage.tsx @@ -157,7 +157,7 @@ export const RecordingPage = ({ recordingName }: RecordingPageProps) => { <> -
+
From 49598518dd06e257596ecea9e3ebc42b2dad9135 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Thu, 6 Nov 2025 00:42:28 +0530 Subject: [PATCH 5/9] feat: increase outputPreviweHeight --- src/helpers/dimensionUtils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/dimensionUtils.ts b/src/helpers/dimensionUtils.ts index ab9dd209a..2533ba625 100644 --- a/src/helpers/dimensionUtils.ts +++ b/src/helpers/dimensionUtils.ts @@ -73,7 +73,7 @@ export const getResponsiveDimensions = (): AppDimensions => { browserWidth, browserHeight, panelHeight: browserHeight + 137, - outputPreviewHeight: windowHeight * 0.7, + outputPreviewHeight: windowHeight * 0.9, outputPreviewWidth, canvasWidth: browserWidth, canvasHeight: browserHeight From c87893996ff47f174fc1097765c1c67ce1d98866 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Thu, 6 Nov 2025 01:08:27 +0530 Subject: [PATCH 6/9] chore: cloud sync --- src/pages/RecordingPage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/RecordingPage.tsx b/src/pages/RecordingPage.tsx index 02a1d6262..8d3a53af9 100644 --- a/src/pages/RecordingPage.tsx +++ b/src/pages/RecordingPage.tsx @@ -156,8 +156,8 @@ export const RecordingPage = ({ recordingName }: RecordingPageProps) => { {isLoaded ? ( <> - -
+ +
From 725492bff2e310186ba2432fe05b3c9a248c0e60 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Thu, 6 Nov 2025 01:28:52 +0530 Subject: [PATCH 7/9] fix: remove isRecording condition --- src/pages/PageWrapper.tsx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/pages/PageWrapper.tsx b/src/pages/PageWrapper.tsx index 1af536811..07ef8cfb8 100644 --- a/src/pages/PageWrapper.tsx +++ b/src/pages/PageWrapper.tsx @@ -55,7 +55,7 @@ export const PageWrapper = () => { const sessionParam = urlParams.get('session'); const storedSessionId = getTabState('recordingSessionId'); const storedRecordingUrl = getTabState('recordingUrl'); - + if (location.pathname === '/recording-setup' && sessionParam && sessionParam === storedSessionId) { setBrowserId('new-recording'); setRecordingName(''); @@ -67,14 +67,14 @@ export const PageWrapper = () => { navigate('/recording'); } - else if (location.pathname === '/recording' || - (getTabState('nextTabIsRecording') === 'true' && sessionParam === storedSessionId)) { + else if (location.pathname === '/recording' || + (getTabState('nextTabIsRecording') === 'true' && sessionParam === storedSessionId)) { setIsRecordingMode(true); - + if (location.pathname !== '/recording') { navigate('/recording'); } - + window.sessionStorage.removeItem('nextTabIsRecording'); } else if (tabMode === 'main') { console.log('Tab is in main application mode'); @@ -88,7 +88,7 @@ export const PageWrapper = () => { const isAuthPage = location.pathname === '/login' || location.pathname === '/register'; const isRecordingPage = location.pathname === '/recording'; - + return (
@@ -96,18 +96,18 @@ export const PageWrapper = () => { {/* Show NavBar only for main app pages, not for recording pages */} {!isRecordingPage && ( - )} - }> From 0ba7fa0d445c9f308a58951d5cf72e60451faf92 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Thu, 6 Nov 2025 01:29:21 +0530 Subject: [PATCH 8/9] chore: cloud sync --- src/pages/RecordingPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/RecordingPage.tsx b/src/pages/RecordingPage.tsx index 8d3a53af9..bd23012a5 100644 --- a/src/pages/RecordingPage.tsx +++ b/src/pages/RecordingPage.tsx @@ -157,7 +157,7 @@ export const RecordingPage = ({ recordingName }: RecordingPageProps) => { <> -
+
From cdee69a9cb0c95a9746f23769d4921a702e64a9f Mon Sep 17 00:00:00 2001 From: amhsirak Date: Thu, 6 Nov 2025 01:30:23 +0530 Subject: [PATCH 9/9] fix: set margin left --- src/components/browser/BrowserRecordingSave.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/browser/BrowserRecordingSave.tsx b/src/components/browser/BrowserRecordingSave.tsx index 32d0fabad..d5e484063 100644 --- a/src/components/browser/BrowserRecordingSave.tsx +++ b/src/components/browser/BrowserRecordingSave.tsx @@ -143,7 +143,8 @@ const BrowserRecordingSave = () => { overflow: 'hidden', display: 'flex', justifyContent: 'space-between', - height: "48px" + height: "48px", + marginLeft: '10px' }}>