mirror of https://github.com/mum4k/termdash.git
3.8 KiB
3.8 KiB
Changelog
All notable changes to this project are documented here.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
Unreleased
Added
- A function that draws text vertically.
- The LineChart widget can display X axis labels in vertical orientation.
- The LineChart widget allows the user to specify a custom scale for the Y axis.
- The LineChart widget now has an option that disables scaling of the X axis. Useful for applications that want to continuously feed data and make them "roll" through the linechart.
- The LineChart widget now has a method that returns the observed capacity of the LineChart the last time Draw was called.
- The LineChart widget now supports zoom of the content triggered by mouse events.
- The Text widget now has a Write option that atomically replaces the entire text content.
- A non-blocking event distribution system that can throttle repetitive events.
Changed
- Termbox is now initialized in 256 color mode by default.
- Generalized mouse button FSM for use in widgets that need to track mouse button clicks.
- The infrastructure now uses the non-blocking event distribution system to distribute events to subscribers. Each widget is now an individual subscriber.
- The infrastructure now throttles event driven screen redraw rather than redrawing for each input event.
Breaking API changes
- The constructors of all the widgets now also return an error so that they can validate the options. This is a breaking change for the following widgets: BarChart, Gauge, LineChart, SparkLine, Text. The callers will have to handle the returned error.
Fixed
- The LineChart widget now correctly determines the Y axis scale when multiple series are provided.
- Lint issues in the codebase, and updated Travis configuration so that golint is executed on every run.
0.6.1 - 12-Feb-2019
Fixed
- The LineChart widget now correctly places custom labels.
0.6.0 - 07-Feb-2019
Added
- The SegmentDisplay widget.
- A CHANGELOG.
- New line styles for borders.
Changed
- Better recordings of the individual demos.
Fixed
- The LineChart now has an option to change the behavior of the Y axis from zero anchored to adaptive.
- Lint errors reported on the Go report card.
- Widgets now correctly handle a race when new user data are supplied between calls to their Options() and Draw() methods.
0.5.0 - 21-Jan-2019
Added
- Draw primitives for drawing circles.
- The Donut widget.
Fixed
- Bugfixes in the braille canvas.
- Lint errors reported on the Go report card.
- Flaky behavior in termdash_test.
0.4.0 - 15-Jan-2019
Added
- 256 color support.
- Variable size container splits.
- A more complete demo of the functionality.
Changed
- Updated documentation and README.
0.3.0 - 13-Jan-2019
Added
- Primitives for drawing lines.
- Implementation of a Braille canvas.
- The LineChart widget.
0.2.0 - 02-Jul-2018
Added
- The SparkLine widget.
- The BarChart widget.
- Manually triggered redraw.
- Travis now checks for presence of licence headers.
Fixed
- Fixing races in termdash_test.
0.1.0 - 13-Jun-2018
Added
- Documentation of the project and its goals.
- Drawing infrastructure.
- Testing infrastructure.
- The Gauge widget.
- The Text widget.