junkdog
released this
08 Dec 19:03
·
10 commits
to development
since this release
tachyonfx 0.10.1 - 2024-12-08
Documentation
- Improved code examples with complete imports and explicit color values instead of theme references
- Updated motion-related documentation to use
Motion
enum instead ofDirection
Fixed
fx::effect_fn
/fx::effect_fn_buf
: removedDebug
requirement for state parameter.
Breaking Changes introduced in 0.10.0
- Added
Debug
requirement toShader
trait - any custom shaders must now implementDebug
tachyonfx 0.10.0 - 2024-12-07
Added
- Implemented
Debug
for all effect types and supporting structs fx::dissolve_to()
: dissolves both the characters and style over the specified duration.fx::coallesce_from()
: reforms both the characters and style over the specified duration.- Example gifs and better rustdoc for the fx module.
Changed/Deprecated
Motion
replacesDirection
to to avoid name clashing with ratatui'sDirection
enum.
The deprecatedDirection
is a type alias forMotion
.
Fixed
fx::with_duration
: clarified misleading documentation.