-
Notifications
You must be signed in to change notification settings - Fork 0
feat: implement video length selection in TopicVideoGenerator #19
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
base: dev
Are you sure you want to change the base?
Changes from all commits
01bc41f
68d0bab
784965e
b4c7841
fe626dd
6e87170
f2e29c4
6a7ab07
0a602ec
b21357f
a8b0eba
09e6530
e6c45d3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,6 @@ | |
|
|
||
| # dependencies | ||
| node_modules/ | ||
| db/migrations/ | ||
| # Expo | ||
| .expo/ | ||
| dist/ | ||
|
|
@@ -38,13 +37,13 @@ yarn-error.* | |
|
|
||
| app-example | ||
|
|
||
| # Drizzle | ||
| db/migrations/ | ||
|
|
||
| # Ignore the entire Android directory | ||
| android/ | ||
| # But keep the model file for emotion detection | ||
| !android/app/src/main/assets/face_landmarker.task | ||
| android/app/src/main/java/com/expostarter/base/MainActivity.kt | ||
| android/app/src/main/java/com/expostarter/base/MainActivity.kt | ||
| .github/copilot-instructions.md | ||
|
Comment on lines
44
to
46
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Suspicious bare paths without ignore semantics. Lines 44-46 list paths without a negation ( Please clarify the intent and remove or fix these entries. 🤖 Prompt for AI Agents |
||
| rebuild.bat | ||
| public/database.sqlite | ||
| .idea/ | ||
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.
Negation pattern is ineffective after ignoring parent directory.
Git ignores the entire
android/directory on line 41, so the negation on line 43 won't work—Git doesn't check children of already-ignored directories. To track a specific file inside an ignored directory, you must unignore the entire path hierarchy:Alternatively, consider whether committing this binary asset to the repo is the right approach vs. downloading it during build or using Git LFS.
🤖 Prompt for AI Agents