2019-01-25 11:02:44 +08:00
|
|
|
# Changelog
|
|
|
|
|
|
|
|
All notable changes to this project are documented here.
|
|
|
|
|
|
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
|
|
|
|
|
## [Unreleased]
|
|
|
|
|
2019-02-25 05:40:32 +08:00
|
|
|
## [0.7.2] - 25-Feb-2019
|
|
|
|
|
|
|
|
### Added
|
|
|
|
|
|
|
|
- Test coverage for data only packages.
|
2019-03-03 15:42:19 +08:00
|
|
|
- Containers now support margin around them and padding of their content.
|
2019-02-25 05:40:32 +08:00
|
|
|
|
|
|
|
### Changed
|
|
|
|
|
2019-03-03 06:56:37 +08:00
|
|
|
- The Text widget now supports content wrapping on word boundaries.
|
2019-02-25 05:40:32 +08:00
|
|
|
- Refactoring packages that contained a mix of public and internal identifiers.
|
2019-03-03 11:03:14 +08:00
|
|
|
- Moving widgetapi out of the internal directory to allow external users to
|
|
|
|
develop their own widgets.
|
2019-02-25 05:40:32 +08:00
|
|
|
|
2019-03-03 07:24:10 +08:00
|
|
|
### Fixed
|
|
|
|
|
|
|
|
- The termdash_test now correctly waits until all subscribers processed events,
|
|
|
|
not just received them.
|
|
|
|
|
2019-02-25 05:40:32 +08:00
|
|
|
#### Breaking API changes
|
|
|
|
|
|
|
|
The following packages were refactored, no impact is expected as the removed
|
|
|
|
identifiers shouldn't be used externally.
|
|
|
|
|
|
|
|
- Functions align.Text and align.Rectangle were moved to a new
|
|
|
|
internal/alignfor package.
|
|
|
|
- Types cell.Cell and cell.Buffer were moved into a new internal/canvas/buffer
|
|
|
|
package.
|
|
|
|
|
2019-02-24 14:42:34 +08:00
|
|
|
## [0.7.1] - 24-Feb-2019
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
|
2019-02-24 14:56:48 +08:00
|
|
|
- Some of the packages that were moved into internal are required externally.
|
|
|
|
This release makes them available again.
|
2019-02-24 14:42:34 +08:00
|
|
|
|
2019-02-25 05:40:32 +08:00
|
|
|
### Changed
|
|
|
|
|
2019-02-24 14:42:34 +08:00
|
|
|
#### Breaking API changes
|
|
|
|
|
|
|
|
- The draw.LineStyle enum was refactored into its own package
|
2019-02-24 14:56:48 +08:00
|
|
|
linestyle.LineStyle. Users will have to replace:
|
2019-02-24 14:58:12 +08:00
|
|
|
|
|
|
|
- draw.LineStyleNone -> linestyle.None
|
|
|
|
- draw.LineStyleLight -> linestyle.Light
|
|
|
|
- draw.LineStyleDouble -> linestyle.Double
|
|
|
|
- draw.LineStyleRound -> linestyle.Round
|
2019-02-24 14:42:34 +08:00
|
|
|
|
2019-02-24 13:28:18 +08:00
|
|
|
## [0.7.0] - 24-Feb-2019
|
|
|
|
|
2019-02-13 13:48:08 +08:00
|
|
|
### Added
|
|
|
|
|
2019-02-24 13:28:18 +08:00
|
|
|
#### New widgets
|
|
|
|
|
2019-02-24 08:38:47 +08:00
|
|
|
- The Button widget.
|
2019-02-24 13:28:18 +08:00
|
|
|
|
|
|
|
#### Improvements to documentation
|
|
|
|
|
|
|
|
- Clearly marked the public API surface by moving private packages into
|
|
|
|
internal directory.
|
|
|
|
- Started a GitHub wiki for Termdash.
|
|
|
|
|
|
|
|
#### Improvements to the LineChart widget
|
|
|
|
|
2019-02-14 13:46:14 +08:00
|
|
|
- The LineChart widget can display X axis labels in vertical orientation.
|
2019-02-15 12:13:21 +08:00
|
|
|
- The LineChart widget allows the user to specify a custom scale for the Y
|
|
|
|
axis.
|
2019-02-16 13:38:32 +08:00
|
|
|
- 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.
|
2019-02-18 14:28:30 +08:00
|
|
|
- The LineChart widget now supports zoom of the content triggered by mouse
|
|
|
|
events.
|
2019-02-24 13:28:18 +08:00
|
|
|
|
|
|
|
#### Improvements to the Text widget
|
|
|
|
|
2019-02-15 13:41:33 +08:00
|
|
|
- The Text widget now has a Write option that atomically replaces the entire
|
|
|
|
text content.
|
2019-02-24 13:28:18 +08:00
|
|
|
|
|
|
|
|
|
|
|
#### Improvements to the infrastructure
|
|
|
|
|
|
|
|
- A function that draws text vertically.
|
2019-02-21 14:21:47 +08:00
|
|
|
- A non-blocking event distribution system that can throttle repetitive events.
|
2019-02-24 13:28:18 +08:00
|
|
|
- Generalized mouse button FSM for use in widgets that need to track mouse
|
|
|
|
button clicks.
|
2019-02-13 13:48:08 +08:00
|
|
|
|
2019-02-13 11:42:49 +08:00
|
|
|
### Changed
|
|
|
|
|
2019-02-13 13:48:08 +08:00
|
|
|
- Termbox is now initialized in 256 color mode by default.
|
2019-02-20 13:52:51 +08:00
|
|
|
- The infrastructure now uses the non-blocking event distribution system to
|
|
|
|
distribute events to subscribers. Each widget is now an individual
|
|
|
|
subscriber.
|
2019-02-21 14:21:47 +08:00
|
|
|
- The infrastructure now throttles event driven screen redraw rather than
|
|
|
|
redrawing for each input event.
|
2019-02-23 13:41:58 +08:00
|
|
|
- Widgets can now specify the scope at which they want to receive keyboard and
|
|
|
|
mouse events.
|
2019-02-15 12:44:11 +08:00
|
|
|
|
|
|
|
#### Breaking API changes
|
|
|
|
|
2019-02-22 13:37:56 +08:00
|
|
|
##### High impact
|
|
|
|
|
2019-02-15 12:44:11 +08:00
|
|
|
- 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
|
2019-02-15 13:22:11 +08:00
|
|
|
widgets: BarChart, Gauge, LineChart, SparkLine, Text. The callers will have
|
|
|
|
to handle the returned error.
|
2019-02-13 11:42:49 +08:00
|
|
|
|
2019-02-22 13:37:56 +08:00
|
|
|
##### Low impact
|
|
|
|
|
|
|
|
- The container package no longer exports separate methods to receive Keyboard
|
|
|
|
and Mouse events which were replaced by a Subscribe method for the event
|
|
|
|
distribution system. This shouldn't affect users as the removed methods
|
|
|
|
aren't needed by container users.
|
|
|
|
- The widgetapi.Options struct now uses an enum instead of a boolean when
|
2019-02-23 13:41:58 +08:00
|
|
|
widget specifies if it wants keyboard or mouse events. This only impacts
|
|
|
|
development of new widgets.
|
2019-02-22 13:37:56 +08:00
|
|
|
|
2019-02-15 12:16:28 +08:00
|
|
|
### Fixed
|
|
|
|
|
|
|
|
- The LineChart widget now correctly determines the Y axis scale when multiple
|
|
|
|
series are provided.
|
2019-02-18 15:14:14 +08:00
|
|
|
- Lint issues in the codebase, and updated Travis configuration so that golint
|
|
|
|
is executed on every run.
|
2019-02-22 13:04:08 +08:00
|
|
|
- Termdash now correctly starts in locales like zh_CN.UTF-8 where some of the
|
|
|
|
characters it uses internally can have ambiguous width.
|
2019-02-15 12:16:28 +08:00
|
|
|
|
2019-02-13 12:15:13 +08:00
|
|
|
## [0.6.1] - 12-Feb-2019
|
|
|
|
|
2019-02-13 12:36:45 +08:00
|
|
|
### Fixed
|
2019-02-13 12:15:13 +08:00
|
|
|
|
|
|
|
- The LineChart widget now correctly places custom labels.
|
|
|
|
|
2019-02-07 13:16:51 +08:00
|
|
|
## [0.6.0] - 07-Feb-2019
|
|
|
|
|
2019-01-25 11:02:44 +08:00
|
|
|
### Added
|
|
|
|
|
2019-02-07 13:09:18 +08:00
|
|
|
- The SegmentDisplay widget.
|
2019-01-25 11:02:44 +08:00
|
|
|
- A CHANGELOG.
|
2019-01-26 14:11:51 +08:00
|
|
|
- New line styles for borders.
|
2019-01-25 11:02:44 +08:00
|
|
|
|
2019-02-07 13:09:18 +08:00
|
|
|
### Changed
|
|
|
|
|
|
|
|
- Better recordings of the individual demos.
|
|
|
|
|
2019-01-25 11:02:44 +08:00
|
|
|
### Fixed
|
|
|
|
|
2019-01-27 11:33:20 +08:00
|
|
|
- The LineChart now has an option to change the behavior of the Y axis from
|
|
|
|
zero anchored to adaptive.
|
2019-01-25 11:02:44 +08:00
|
|
|
- Lint errors reported on the Go report card.
|
2019-01-27 13:00:30 +08:00
|
|
|
- Widgets now correctly handle a race when new user data are supplied between
|
|
|
|
calls to their Options() and Draw() methods.
|
2019-01-25 11:02:44 +08:00
|
|
|
|
2019-01-25 11:25:31 +08:00
|
|
|
## [0.5.0] - 21-Jan-2019
|
2019-01-25 11:02:44 +08:00
|
|
|
|
|
|
|
### Added
|
|
|
|
|
|
|
|
- Draw primitives for drawing circles.
|
|
|
|
- The Donut widget.
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
|
|
|
|
- Bugfixes in the braille canvas.
|
|
|
|
- Lint errors reported on the Go report card.
|
2019-01-27 11:54:50 +08:00
|
|
|
- Flaky behavior in termdash_test.
|
2019-01-25 11:02:44 +08:00
|
|
|
|
2019-01-25 11:25:31 +08:00
|
|
|
## [0.4.0] - 15-Jan-2019
|
2019-01-25 11:02:44 +08:00
|
|
|
|
|
|
|
### Added
|
|
|
|
|
|
|
|
- 256 color support.
|
|
|
|
- Variable size container splits.
|
|
|
|
- A more complete demo of the functionality.
|
|
|
|
|
|
|
|
### Changed
|
|
|
|
|
|
|
|
- Updated documentation and README.
|
|
|
|
|
2019-01-25 11:25:31 +08:00
|
|
|
## [0.3.0] - 13-Jan-2019
|
2019-01-25 11:02:44 +08:00
|
|
|
|
|
|
|
### Added
|
|
|
|
|
|
|
|
- Primitives for drawing lines.
|
|
|
|
- Implementation of a Braille canvas.
|
|
|
|
- The LineChart widget.
|
|
|
|
|
2019-01-25 11:25:31 +08:00
|
|
|
## [0.2.0] - 02-Jul-2018
|
2019-01-25 11:02:44 +08:00
|
|
|
|
|
|
|
### Added
|
|
|
|
|
|
|
|
- The SparkLine widget.
|
|
|
|
- The BarChart widget.
|
|
|
|
- Manually triggered redraw.
|
|
|
|
- Travis now checks for presence of licence headers.
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
|
|
|
|
- Fixing races in termdash_test.
|
|
|
|
|
2019-01-25 11:25:31 +08:00
|
|
|
## 0.1.0 - 13-Jun-2018
|
2019-01-25 11:02:44 +08:00
|
|
|
|
|
|
|
### Added
|
|
|
|
|
|
|
|
- Documentation of the project and its goals.
|
|
|
|
- Drawing infrastructure.
|
|
|
|
- Testing infrastructure.
|
|
|
|
- The Gauge widget.
|
|
|
|
- The Text widget.
|
|
|
|
|
2019-02-25 05:40:32 +08:00
|
|
|
[Unreleased]: https://github.com/mum4k/termdash/compare/v0.7.2...devel
|
|
|
|
[0.7.2]: https://github.com/mum4k/termdash/compare/v0.7.1...v0.7.2
|
2019-02-24 14:56:48 +08:00
|
|
|
[0.7.1]: https://github.com/mum4k/termdash/compare/v0.7.0...v0.7.1
|
2019-02-24 13:28:18 +08:00
|
|
|
[0.7.0]: https://github.com/mum4k/termdash/compare/v0.6.1...v0.7.0
|
2019-02-13 12:15:13 +08:00
|
|
|
[0.6.1]: https://github.com/mum4k/termdash/compare/v0.6.0...v0.6.1
|
2019-02-07 13:16:51 +08:00
|
|
|
[0.6.0]: https://github.com/mum4k/termdash/compare/v0.5.0...v0.6.0
|
2019-01-25 11:25:31 +08:00
|
|
|
[0.5.0]: https://github.com/mum4k/termdash/compare/v0.4.0...v0.5.0
|
|
|
|
[0.4.0]: https://github.com/mum4k/termdash/compare/v0.3.0...v0.4.0
|
|
|
|
[0.3.0]: https://github.com/mum4k/termdash/compare/v0.2.0...v0.3.0
|
|
|
|
[0.2.0]: https://github.com/mum4k/termdash/compare/v0.1.0...v0.2.0
|