fix: remove cursor pointer from demo gif#41
Conversation
Hide the cursor from the first cast frame (was flashing for ~0.2s before the hide escape) and drop the end-of-cast cursor restore, which made the pointer reappear on the final frame and flash on every loop. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
|
Warning Review limit reached
More reviews will be available in 56 minutes and 42 seconds. Learn how PR review limits work. Your organization has used up its prepaid credits, and credit purchases are no longer available. Enable the review add-on in the billing tab to keep reviews running — you're only billed for reviews past your plan's rate limits ($0.25/file). ⌛ How to resolve this issue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based credits. 🚦 How do rate limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan refill rate. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, the refill rate gradually slows as usage increases. The highest same-day bursts are limited more strictly. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (1)
✨ Finishing Touches🧪 Generate unit tests (beta)
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. Comment |
There was a problem hiding this comment.
Code Review
This pull request updates the demo build script demo/build_final.py to hide the cursor starting from the very first frame by setting its delay to 0.0, and removes the cursor restoration command. There are no review comments, so I have no feedback to provide.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
Summary
Removes the stray cursor "pointer" from
demo/demo.gif.Two sources of the visible cursor:
\x1b[?25l) was emitted at t=0.2s, so the default cursor block showed for the first ~0.2s.\x1b[?25h, added in docs: hero demo GIF header with gradient wordmark title card #39) made the cursor reappear on the final frame, flashing on every GIF loop.Fix
\x1b[?25lat t=0.0 (cursor hidden from the very first frame).\x1b[?25hrestore.The restore only benefited playing the raw
demo/demo.castin a terminal — but that file is an untracked build artifact, and the committed GIF is what users see. agg has no hide-cursor flag, so this is handled in the cast timeline.Regenerated
demo/demo.gifwith the fix.ingest/banner.pyis untouched.🤖 Generated with Claude Code