diff --git a/dist-electron/main.js b/dist-electron/main.js index 9c18f09..0cc07fd 100644 --- a/dist-electron/main.js +++ b/dist-electron/main.js @@ -58,6 +58,7 @@ function createEditorWindow() { webSecurity: false } }); + win.maximize(); win.webContents.on("did-finish-load", () => { win == null ? void 0 : win.webContents.send("main-process-message", (/* @__PURE__ */ new Date()).toLocaleString()); }); diff --git a/electron/windows.ts b/electron/windows.ts index 7c3211b..962f309 100644 --- a/electron/windows.ts +++ b/electron/windows.ts @@ -65,6 +65,9 @@ export function createEditorWindow(): BrowserWindow { }, }) + // Maximize the window by default + win.maximize(); + win.webContents.on('did-finish-load', () => { win?.webContents.send('main-process-message', (new Date).toLocaleString()) }) diff --git a/src/components/VideoEditor.tsx b/src/components/VideoEditor.tsx index 51f97bc..4c1bac8 100644 --- a/src/components/VideoEditor.tsx +++ b/src/components/VideoEditor.tsx @@ -118,85 +118,97 @@ export default function VideoEditor() { // --- Main render --- return ( -
-
- {videoPath && ( - <> - +
+
+ {videoPath && ( + <> + +
+
+
+ Timeline/Editor controls coming soon... +
+
- -
-
- - - {formatTime(currentTime)} - - - - {formatTime(duration)} - +
+
+
+ Settings panel (coming soon)