All Versions
6
Latest Version
Avg Release Cycle
85 days
Latest Release
1173 days ago
Changelog History
Changelog History
-
v0.5.1 Changes
March 24, 2020๐ Changed
- โก๏ธ Updated build dependencies.
-
v0.5.0 Changes
April 28, 2019๐ Fixed
- Possible rendering error with multi-byte UTF-8 characters.
โ Added
- ๐ New
viewport
element for offsetting the render origin of child content (e.g., to implement scrolling) - ๐ New
canvas
andcanvas_cell
elements for drawing arbitrary shapes (see snake example). - ๐ Support for rendering multi-line content (with automatic line
wrapping) given to the
label
element. - ๐ Support for styling tree node content.
- ๐ Support for styling panel title content (thanks to @iboard) and configuring panel's padding.
- ๐ Support for passing colors and text attributes directly as atoms, so the integer constants no longer need to be looked up.
- ๐ Improved documentation of element hierarchy restrictions (thanks to @trescenzi)
-
v0.4.2 Changes
March 03, 2019๐ Fixed
- โก๏ธ Possible crash in the termbox NIFs when polling for events (updates ex_termbox to 1.0.0).
-
v0.4.1 Changes
February 23, 2019๐ Fixed
- Errors in panel box calculation with certain layouts.
โ Added
- ๐ Documentation of element attributes is now generated based on element specs.
-
v0.4.0 Changes
February 22, 2019โ Added
- Applications based on the Elm Architecture.
- App behaviour
- Runtime
- Runtime Supervisor
- Components & Subscriptions
- New examples
๐ Changed
- ๐ Views support labels as direct children.
โ Removed
- โ Removed the experimental component support in favor of the new TEA-based apps.
- Applications based on the Elm Architecture.
-
v0.3.0 Changes
January 25, 2019๐ Changed
- Element attributes are now validated based on the element's spec. Some attributes are optional, while others are required. It's not allowed to pass attributes that are not defined in the spec.
- The View DSL was extracted to
Ratatouille.View
. Imports likeimport Ratatouille.Renderer.View
should be updated toimport Ratatouille.View
.