fix(tui): shimmer the LIBERATED badge + stop it touching the workspace name - #216
Open
robertohluna wants to merge 1 commit into
Open
fix(tui): shimmer the LIBERATED badge + stop it touching the workspace name#216robertohluna wants to merge 1 commit into
robertohluna wants to merge 1 commit into
Conversation
… name Replace the ~3x/sec bright<->dim pulse on LIBERATED (read as jittery/ugly) with a slow left-to-right shimmer: a soft-edged highlight (bright peak, mid-tone shoulders) glides across the letters over ~1.3s, then a short dark gap before it repeats. The bolt keeps a gentle flicker. Also adds a trailing space so the badge no longer runs straight into the workspace name (was 'LIBERATEDOptimalSystemAgent'). Pure wall-clock animation, no extra tick plumbing; shimmer math is a pure fn with a deterministic test. jailbreak suite 5/0.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The v1.0.165 LIBERATED badge had two problems: the LIBERATED text pulsed bright<->dim ~3x/sec (jittery/ugly), and the badge ran straight into the workspace name (
LIBERATEDOptimalSystemAgent— no trailing separator).This replaces the pulse with a slow shimmer — a soft-edged highlight (bright peak + mid-tone shoulders) glides left-to-right across the letters over ~1.3s, then rests dim for a short gap before repeating. The
⚡bolt keeps a gentle flicker. Adds a trailing space so the badge can't touch the element beside it.Pure wall-clock animation (no extra tick plumbing); the shimmer position is a pure function with a deterministic test. jailbreak suite 5/0, TUI compiles clean.