Release/0.4.2 #11
No reviewers
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
ignyte.link/cliasi!11
Loading…
Reference in a new issue
No description provided.
Delete branch "release/0.4.2"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Fix animated messages going over multiple lines
Pull request overview
This PR fixes issues with animated messages that span multiple lines by implementing auto-truncation and improving multiline message handling.
Changes:
force_multilinemode when messages contain newlines or exceed available spaceReviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 4 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Corrected spelling of 'databasee_module' to 'database_module'.
Corrected spelling of 'databasee_module' to 'database_module'.
The return type was changed from
NonBlockingAnimationTask | NonetoNonBlockingAnimationTask, but the function can still return the result of__get_null_task()when verbosity check fails (line 1591). While__get_null_task()returns aNonBlockingProgressTaskwhich is a subclass ofNonBlockingAnimationTask, this change removes the explicitNonefrom the return type. Verify this change is intentional and that the null task pattern is sufficient for all consumers of this API.The return type was changed from
NonBlockingAnimationTask | NonetoNonBlockingAnimationTask, but the function can still return the result of__get_null_task()when verbosity check fails (line 1647). While__get_null_task()returns aNonBlockingProgressTaskwhich is a subclass ofNonBlockingAnimationTask, this change removes the explicitNonefrom the return type. Verify this change is intentional and that the null task pattern is sufficient for all consumers of this API.