[PR #102] [MERGED] Release 0.6.0 #201

Closed
opened 2026-03-03 16:23:17 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mum4k/termdash/pull/102
Author: @mum4k
Created: 2/7/2019
Status: Merged
Merged: 2/7/2019
Merged by: @mum4k

Base: masterHead: release-0-6-0


📝 Commits (10+)

  • 3e60b42 Added Double Line Style
  • 41cbc3c Added a test for double border drawing
  • df87348 Merge pull request #87 from infinytum/master
  • ea868ae Adding the awesome-go badge.
  • f6ceec5 Merge pull request #88 from mum4k/awesome-go-badge
  • a7f0229 Adding a changelog.
  • 62c9f98 Adjusting version numbers to Semantic Versioning.
  • 1476bc3 Fixing version in the Unreleased link.
  • 6d185c8 Merge pull request #89 from mum4k/changelog
  • a278825 API of a 16-segment display.

📊 Changes

63 files changed (+8063 additions, -382 deletions)

View changed files

CHANGELOG.md (+91 -0)
📝 README.md (+18 -5)
📝 align/align.go (+1 -1)
📝 area/area.go (+6 -12)
attrrange/attrrange.go (+103 -0)
attrrange/attrrange_test.go (+165 -0)
📝 canvas/testcanvas/testcanvas.go (+8 -0)
📝 container/draw.go (+1 -2)
📝 container/options.go (+1 -1)
📝 doc/widget_development.md (+27 -3)
📝 draw/border_test.go (+62 -0)
📝 draw/braille_line.go (+3 -10)
📝 draw/line_style.go (+31 -1)
draw/segdisp/segment/segment.go (+472 -0)
draw/segdisp/segment/segment_test.go (+1760 -0)
draw/segdisp/segment/testsegment/testsegment.go (+38 -0)
draw/segdisp/sixteen/attributes.go (+300 -0)
draw/segdisp/sixteen/doc/16-Segment-ASCII-All.jpg (+0 -0)
draw/segdisp/sixteen/doc/segment_placement.graffle (+0 -0)
draw/segdisp/sixteen/doc/segment_placement.svg (+240 -0)

...and 43 more files

📄 Description

[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.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/mum4k/termdash/pull/102 **Author:** [@mum4k](https://github.com/mum4k) **Created:** 2/7/2019 **Status:** ✅ Merged **Merged:** 2/7/2019 **Merged by:** [@mum4k](https://github.com/mum4k) **Base:** `master` ← **Head:** `release-0-6-0` --- ### 📝 Commits (10+) - [`3e60b42`](https://github.com/mum4k/termdash/commit/3e60b42918e1ea92a0850fceb7f639a9e0fb409e) Added Double Line Style - [`41cbc3c`](https://github.com/mum4k/termdash/commit/41cbc3c19a8ebaca978cef13ca6caeb1cbf519f9) Added a test for double border drawing - [`df87348`](https://github.com/mum4k/termdash/commit/df8734811c79c11b79b8a6127903d81670151998) Merge pull request #87 from infinytum/master - [`ea868ae`](https://github.com/mum4k/termdash/commit/ea868ae4a2ee5c9d2749ce7399e9b332c2af2d8e) Adding the awesome-go badge. - [`f6ceec5`](https://github.com/mum4k/termdash/commit/f6ceec5b38bd59ea8715692f46b94c9949d6f5de) Merge pull request #88 from mum4k/awesome-go-badge - [`a7f0229`](https://github.com/mum4k/termdash/commit/a7f02291423567dcde351ed300bcc283c4dbac5e) Adding a changelog. - [`62c9f98`](https://github.com/mum4k/termdash/commit/62c9f98b852647ec0dad2bcbc95798bb3575527b) Adjusting version numbers to Semantic Versioning. - [`1476bc3`](https://github.com/mum4k/termdash/commit/1476bc3f7c6cda46182460dd4b197d2d07482383) Fixing version in the Unreleased link. - [`6d185c8`](https://github.com/mum4k/termdash/commit/6d185c8f496271bc2686b5de021370ec43bdab38) Merge pull request #89 from mum4k/changelog - [`a278825`](https://github.com/mum4k/termdash/commit/a278825fffa81333137c5505843600f0c334e526) API of a 16-segment display. ### 📊 Changes **63 files changed** (+8063 additions, -382 deletions) <details> <summary>View changed files</summary> ➕ `CHANGELOG.md` (+91 -0) 📝 `README.md` (+18 -5) 📝 `align/align.go` (+1 -1) 📝 `area/area.go` (+6 -12) ➕ `attrrange/attrrange.go` (+103 -0) ➕ `attrrange/attrrange_test.go` (+165 -0) 📝 `canvas/testcanvas/testcanvas.go` (+8 -0) 📝 `container/draw.go` (+1 -2) 📝 `container/options.go` (+1 -1) 📝 `doc/widget_development.md` (+27 -3) 📝 `draw/border_test.go` (+62 -0) 📝 `draw/braille_line.go` (+3 -10) 📝 `draw/line_style.go` (+31 -1) ➕ `draw/segdisp/segment/segment.go` (+472 -0) ➕ `draw/segdisp/segment/segment_test.go` (+1760 -0) ➕ `draw/segdisp/segment/testsegment/testsegment.go` (+38 -0) ➕ `draw/segdisp/sixteen/attributes.go` (+300 -0) ➕ `draw/segdisp/sixteen/doc/16-Segment-ASCII-All.jpg` (+0 -0) ➕ `draw/segdisp/sixteen/doc/segment_placement.graffle` (+0 -0) ➕ `draw/segdisp/sixteen/doc/segment_placement.svg` (+240 -0) _...and 43 more files_ </details> ### 📄 Description ## [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. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 16:23:17 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/termdash#201
No description provided.