-
Notifications
You must be signed in to change notification settings - Fork 838
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
(v2) feat: use the cursed ferocious renderer #1267
Open
aymanbagabas
wants to merge
19
commits into
v2-exp
Choose a base branch
from
v2-ferocious2
base: v2-exp
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
+469
−1,210
Conversation
This file contains 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
aymanbagabas
changed the title
feat: use the cursed ferocious renderer
(v2) feat: use the cursed ferocious renderer
Dec 9, 2024
How should we test this? |
This implements the new cursed ferocious renderer. This is based on the new `cellbuf.Screen` renderer. This renderer is more efficient and flexible than the previous renderer. The renderer controls the altscreen buffer and cursor visibility which means we don't need to do so in Bubble Tea. Instead, Bubble Tea can focus on the event loop and the application state.
aymanbagabas
force-pushed
the
v2-ferocious2
branch
from
December 9, 2024 21:26
7271090
to
bdd75f3
Compare
You can use export TEA_EXPERIMENTAL=ferocious
// run bubble tea applications EDIT: This is no longer needed as the ferocious cursed renderer is now the default and only available renderer. |
caarlos0
approved these changes
Dec 10, 2024
aymanbagabas
force-pushed
the
v2-ferocious2
branch
from
December 10, 2024 22:53
07f0d83
to
c308816
Compare
aymanbagabas
force-pushed
the
v2-ferocious2
branch
from
December 10, 2024 23:03
c308816
to
9d780bc
Compare
caarlos0
approved these changes
Dec 12, 2024
aymanbagabas
force-pushed
the
v2-ferocious2
branch
from
December 12, 2024 15:59
90a8d23
to
4ef0e71
Compare
aymanbagabas
force-pushed
the
v2-ferocious2
branch
from
December 12, 2024 16:19
4ef0e71
to
1bd7acc
Compare
…rd renderer This also removes the experimental flags and changes the renderer interface to be more explicit about the methods that are available.
aymanbagabas
force-pushed
the
v2-ferocious2
branch
2 times, most recently
from
December 12, 2024 18:21
5ca08e7
to
6922e33
Compare
aymanbagabas
force-pushed
the
v2-ferocious2
branch
from
December 12, 2024 18:26
70c0468
to
fda3865
Compare
aymanbagabas
force-pushed
the
v2-ferocious2
branch
from
December 12, 2024 18:45
20611ed
to
b76f7d5
Compare
aymanbagabas
force-pushed
the
v2-ferocious2
branch
from
December 12, 2024 19:01
73d0ffd
to
4b2b55b
Compare
Testing Ferocious Renderer
IMAGES VIDEOS 2024-12-16.07-14-22.mov2024-12-16.06-50-40.mov |
aymanbagabas
force-pushed
the
v2-ferocious2
branch
2 times, most recently
from
December 20, 2024 08:35
319cbe8
to
fdf22bc
Compare
aymanbagabas
force-pushed
the
v2-ferocious2
branch
from
December 22, 2024 09:09
fdf22bc
to
317c49f
Compare
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.
This implements the new cursed ferocious renderer. This is based on the new
cellbuf.Screen
renderer. This renderer is more efficient and flexible than the previous renderer.The renderer controls the altscreen buffer and cursor visibility which means we don't need to do so in Bubble Tea. Instead, Bubble Tea can focus on the event loop and the application state.
This also removes the experimental flags and changes the renderer
interface to be more explicit about the methods that are available.