Skip to content

fix: remove extension-sources, replace lucide-react with phosphor icons#263

Merged
webadderall merged 1 commit intomainfrom
fix/remove-extension-sources-fix-lucide
Apr 18, 2026
Merged

fix: remove extension-sources, replace lucide-react with phosphor icons#263
webadderall merged 1 commit intomainfrom
fix/remove-extension-sources-fix-lucide

Conversation

@webadderall
Copy link
Copy Markdown
Collaborator

@webadderall webadderall commented Apr 18, 2026

Summary

Removes 91MB of bundled extension source assets from the repo and replaces all lucide-react imports with @phosphor-icons/react (which the project already uses everywhere else).

Changes

Remove extension-sources/ (91MB)

  • Deleted extension-sources/ directory containing bundled wallpaper/cursor extension assets
  • Added extension-sources/ to .gitignore

Replace lucide-react with phosphor icons

  • TutorialHelp.tsx: Replaced 8 lucide imports (ArrowRight, ExternalLink→ArrowSquareOut, HelpCircle→Question, Keyboard, MessageSquareMore→ChatDots, Scissors, Settings2→GearSix, Twitter→XLogo)
  • ExtensionManager.tsx: Replaced 15 lucide imports with phosphor equivalents
  • TimelineEditor.tsx: Replaced 9 lucide imports with phosphor equivalents

This fixes the missing lucide-react dependency (it was never in package.json) and the Twitter export crash reported in #261.

Linux window issue

The Linux tray-only / no-window issue from #261 is a separate GPU/Wayland problem — the HUD window uses did-finish-load to show, which may never fire if the renderer fails due to VAAPI errors. That needs a separate fix (GPU fallback flags + ready-to-show handler for Linux).

Closes #261 (lucide-react portion)

Summary by CodeRabbit

  • Chores
    • Removed Cool Cursors and More Wallpapers extensions
    • Updated icon styling across video editor interface components
    • Modified repository configuration files

- Remove extension-sources/ directory (91MB of bundled extension assets)
- Add extension-sources/ to .gitignore
- Replace all lucide-react imports with @phosphor-icons/react equivalents
  in TutorialHelp, ExtensionManager, and TimelineEditor
- Fixes #261 (missing lucide-react dependency + Twitter icon crash)

Closes #261
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Apr 18, 2026

Warning

.coderabbit.yaml has a parsing error

The CodeRabbit configuration file in this repository has a parsing error and default settings were used instead. Please fix the error(s) in the configuration file. You can initialize chat with CodeRabbit to get help with the configuration file.

💥 Parsing errors (1)
Validation error: Invalid regex pattern for base branch. Received: "*" at "reviews.auto_review.base_branches[0]"
⚙️ Configuration instructions
  • Please see the configuration documentation for more information.
  • You can also validate your configuration using the online YAML validator.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
📝 Walkthrough

Walkthrough

This PR removes two extension packages (Cool Cursors and More Wallpapers) from the codebase, migrates icon dependencies in three video-editor components from lucide-react to @phosphor-icons/react via icon name remapping, and updates .gitignore to exclude the extension-sources/ directory with CRLF line-ending formatting adjustments.

Changes

Cohort / File(s) Summary
Icon Library Migration
src/components/video-editor/ExtensionManager.tsx, src/components/video-editor/TutorialHelp.tsx, src/components/video-editor/timeline/TimelineEditor.tsx
Replaced lucide-react icon imports with @phosphor-icons/react equivalents via aliasing (e.g., ChevronLeftCaretLeft, Loader2SpinnerGap, DownloadDownloadSimple). No logic or control flow changes.
Extension Removal
extension-sources/insomniachooman.cool-cursors/*, extension-sources/webadderall.more-wallpapers/*
Deleted two extension packages entirely, including both index.js activation modules and recordly-extension.json manifest files. No replacement or equivalent functionality added.
Git Configuration
.gitignore
Updated line-ending formatting to Windows-style CRLF, added extension-sources/ to ignore patterns, and restored previously removed entries (vite.config.js, build artifacts, debug scripts).

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

Possibly related PRs

Suggested labels

Checked

Poem

🐰 Hoppy refactoring day!
Out go cursors, wallpapers away,
Icons swapped from lucide's array
To phosphor's brilliant display,
Our hop skips lighter today! ✨

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately summarizes the two main changes: removing extension-sources and replacing lucide-react with phosphor icons.
Description check ✅ Passed The description provides detailed summaries of both major changes, context about the dependency issue, and clarifies the separate Linux/GPU problem.
Linked Issues check ✅ Passed The PR directly addresses both coding requirements from #261: adding lucide-react to dependencies (by replacing with phosphor) and fixing the Twitter export crash.
Out of Scope Changes check ✅ Passed All changes are directly in scope: removing bundled extension assets, adding to .gitignore, and replacing icon libraries as required by #261.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch fix/remove-extension-sources-fix-lucide

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (1)
.gitignore (1)

1-5: Add .gitattributes to enforce consistent line endings across platforms.

The .gitignore file currently has CRLF (Windows-style) line endings, and no .gitattributes file exists to enforce consistency. Since this is a cross-platform Electron app (targeting Windows, macOS, and Linux), this can cause spurious diffs and merge conflicts when developers on different platforms edit the file.

Add a .gitattributes file with:

* text=auto
.gitignore text eol=lf

This ensures that .gitignore is checked out with consistent LF line endings regardless of the developer's platform.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In @.gitignore around lines 1 - 5, Add a new .gitattributes file to enforce LF
line endings for the repository and ensure .gitignore is normalized across
platforms; create a file named .gitattributes at repo root containing the
directives to treat files as text and to force .gitignore to use LF (e.g.,
include lines to set "* text=auto" and ".gitignore text eol=lf"), commit that
alongside the existing .gitignore so editors on Windows/macOS/Linux check out
consistent line endings.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Nitpick comments:
In @.gitignore:
- Around line 1-5: Add a new .gitattributes file to enforce LF line endings for
the repository and ensure .gitignore is normalized across platforms; create a
file named .gitattributes at repo root containing the directives to treat files
as text and to force .gitignore to use LF (e.g., include lines to set "*
text=auto" and ".gitignore text eol=lf"), commit that alongside the existing
.gitignore so editors on Windows/macOS/Linux check out consistent line endings.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro

Run ID: abf6a567-0c5f-4d4c-b200-97f67f52a2b6

📥 Commits

Reviewing files that changed from the base of the PR and between c1a070c and 9b6744a.

⛔ Files ignored due to path filters (192)
  • extension-sources/insomniachooman.cool-cursors/cursors/amongus/default.png is excluded by !**/*.png
  • extension-sources/insomniachooman.cool-cursors/cursors/amongus/pointer.png is excluded by !**/*.png
  • extension-sources/insomniachooman.cool-cursors/cursors/chooper/default.png is excluded by !**/*.png
  • extension-sources/insomniachooman.cool-cursors/cursors/chooper/pointer.png is excluded by !**/*.png
  • extension-sources/insomniachooman.cool-cursors/cursors/lavender/default.png is excluded by !**/*.png
  • extension-sources/insomniachooman.cool-cursors/cursors/lavender/pointer.png is excluded by !**/*.png
  • extension-sources/insomniachooman.cool-cursors/cursors/parched/default.png is excluded by !**/*.png
  • extension-sources/insomniachooman.cool-cursors/cursors/parched/pointer.png is excluded by !**/*.png
  • extension-sources/insomniachooman.cool-cursors/cursors/turtle/default.png is excluded by !**/*.png
  • extension-sources/insomniachooman.cool-cursors/cursors/turtle/pointer.png is excluded by !**/*.png
  • extension-sources/insomniachooman.cool-cursors/icon.png is excluded by !**/*.png
  • extension-sources/webadderall.more-wallpapers/icon.png is excluded by !**/*.png
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-1.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-10.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-11.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-12.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-13.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-14.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-15.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-16.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-17.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-18.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-19.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-2.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-20.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-21.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-22.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-23.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-3.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-4.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-5.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-6.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-7.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-8.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Energy/energy-9.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Glassmorphism/glassmorphism-1.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Glassmorphism/glassmorphism-10.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Glassmorphism/glassmorphism-2.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Glassmorphism/glassmorphism-3.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Glassmorphism/glassmorphism-4.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Glassmorphism/glassmorphism-5.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Glassmorphism/glassmorphism-6.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Glassmorphism/glassmorphism-7.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Glassmorphism/glassmorphism-8.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Glassmorphism/glassmorphism-9.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Iridescent/iridescent-1.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Iridescent/iridescent-10.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Iridescent/iridescent-11.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Iridescent/iridescent-12.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Iridescent/iridescent-13.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Iridescent/iridescent-14.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Iridescent/iridescent-15.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Iridescent/iridescent-16.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Iridescent/iridescent-17.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Iridescent/iridescent-2.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Iridescent/iridescent-3.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Iridescent/iridescent-4.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Iridescent/iridescent-5.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Iridescent/iridescent-6.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Iridescent/iridescent-7.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Iridescent/iridescent-8.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Iridescent/iridescent-9.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Midnight/midnight-1.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Midnight/midnight-10.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Midnight/midnight-11.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Midnight/midnight-12.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Midnight/midnight-13.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Midnight/midnight-14.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Midnight/midnight-15.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Midnight/midnight-16.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Midnight/midnight-17.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Midnight/midnight-18.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Midnight/midnight-2.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Midnight/midnight-3.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Midnight/midnight-4.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Midnight/midnight-5.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Midnight/midnight-6.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Midnight/midnight-7.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Midnight/midnight-8.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Midnight/midnight-9.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Radiant/radiant-1.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Radiant/radiant-10.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Radiant/radiant-11.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Radiant/radiant-12.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Radiant/radiant-13.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Radiant/radiant-14.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Radiant/radiant-15.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Radiant/radiant-16.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Radiant/radiant-17.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Radiant/radiant-18.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Radiant/radiant-19.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Radiant/radiant-2.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Radiant/radiant-20.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Radiant/radiant-3.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Radiant/radiant-4.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Radiant/radiant-5.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Radiant/radiant-6.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Radiant/radiant-7.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Radiant/radiant-8.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Radiant/radiant-9.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/autumnal-peach.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/blob-red.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/blob.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/blossom.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/blue-distortion-1.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/blue-distortion-2.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/blushing-fire.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/bright-rain.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/chromatic-dark-1.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/chromatic-dark-2.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/chromatic-light-1.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/chromatic-light-2.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/cube-mono.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/cube-prod.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/floss.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/glass-rainbow.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/good-vibes.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/loupe-mono-dark.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/loupe-mono-light.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/loupe.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/mono-dark-distortion-1.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/mono-dark-distortion-2.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/mono-light-distortion-1.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/mono-light-distortion-2.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/moonrise.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/ray-of-lights.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/red-distortion-1.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/red-distortion-2.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/red-distortion-3.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/red-distortion-4.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Raycast/rose-thorn.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-1.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-10.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-11.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-12.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-13.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-14.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-15.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-16.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-17.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-18.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-19.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-2.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-20.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-21.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-22.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-23.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-24.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-3.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-4.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-5.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-6.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-7.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-8.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Spring/spring-9.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Sunset/sunset-1.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Sunset/sunset-10.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Sunset/sunset-11.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Sunset/sunset-12.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Sunset/sunset-13.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Sunset/sunset-14.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Sunset/sunset-15.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Sunset/sunset-16.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Sunset/sunset-17.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Sunset/sunset-18.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Sunset/sunset-19.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Sunset/sunset-2.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Sunset/sunset-20.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Sunset/sunset-21.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Sunset/sunset-3.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Sunset/sunset-4.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Sunset/sunset-5.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Sunset/sunset-6.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Sunset/sunset-7.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Sunset/sunset-8.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/Sunset/sunset-9.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/macOS/ipad-17-dark.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/macOS/ipad-17-light.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/macOS/sequoia-blue-orange.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/macOS/sequoia-blue.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/macOS/sonoma-clouds.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/macOS/sonoma-dark.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/macOS/sonoma-evening.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/macOS/sonoma-from-above.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/macOS/sonoma-horizon.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/macOS/sonoma-light.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/macOS/sonoma-river.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/macOS/tahoe-dark.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/macOS/tahoe-light.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/macOS/ventura-dark.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/macOS/ventura-semi-dark.jpg is excluded by !**/*.jpg
  • extension-sources/webadderall.more-wallpapers/wallpapers/macOS/ventura.jpg is excluded by !**/*.jpg
📒 Files selected for processing (8)
  • .gitignore
  • extension-sources/insomniachooman.cool-cursors/index.js
  • extension-sources/insomniachooman.cool-cursors/recordly-extension.json
  • extension-sources/webadderall.more-wallpapers/index.js
  • extension-sources/webadderall.more-wallpapers/recordly-extension.json
  • src/components/video-editor/ExtensionManager.tsx
  • src/components/video-editor/TutorialHelp.tsx
  • src/components/video-editor/timeline/TimelineEditor.tsx
💤 Files with no reviewable changes (4)
  • extension-sources/insomniachooman.cool-cursors/index.js
  • extension-sources/insomniachooman.cool-cursors/recordly-extension.json
  • extension-sources/webadderall.more-wallpapers/index.js
  • extension-sources/webadderall.more-wallpapers/recordly-extension.json

@webadderall webadderall merged commit 20231fb into main Apr 18, 2026
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Linux: app stays in tray (no window) + missing lucide-react dependency

1 participant