-
-
Notifications
You must be signed in to change notification settings - Fork 850
feat: Video Trimmer and more #1276
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…desktop timeline issues - Fixed segment and cutaway playback to properly stop at the end and resume correctly after user interaction - Ensured playback continues seamlessly from cutaway to next segment when clicking Play - Updated start and end bracket icons for both segment and cutaway popup menus to correct designs - Fixed dynamic updates of popup menus when dragging segment boundaries past the playhead - Fixed issue where deleting a segment did not trigger correct switch to cutaway popup menu - Synced playback icons between popup menu and video controls under various playback scenarios - Replaced browser-native unload confirmation with a custom, unified message to warn about unsaved edits - Ensured timeline-based editing now works reliably on iPhone/iPad (iOS Safari) - Fixed issue where clicking at the end of a cutaway area closed the popup and prevented re-opening on desktop browsers
| @@ -0,0 +1,14 @@ | |||
| import { defineConfig } from "drizzle-kit"; | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Yiannistaos is this being used? If not please remove (along with package.json/yarn.lock entries)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mgogoulos You're right — this is no longer needed. I’ve removed it in the latest commit. It was used earlier as a mock database setup with Drizzle ORM before we integrated with Django.
| @@ -0,0 +1,17 @@ | |||
| import { pgTable, text, serial, integer, boolean } from "drizzle-orm/pg-core"; | |||
| import { createInsertSchema } from "drizzle-zod"; | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Yiannistaos i believe this is redundant too?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mgogoulos You're right — this is no longer needed. I’ve removed it in the latest commit. It was used earlier as a mock database setup with Drizzle ORM before we integrated with Django.
In Preview mode, you can jump in timeline to review the edits, without having to listen to the full video.
Description
What is pending here