[PR #64] [MERGED] Release 0.3 #180

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

📋 Pull Request Information

Original PR: https://github.com/mum4k/termdash/pull/64
Author: @mum4k
Created: 1/13/2019
Status: Merged
Merged: 1/13/2019
Merged by: @mum4k

Base: masterHead: release-0.3


📝 Commits (10+)

  • 1bc6a7c Skeleton for function that draws lines.
  • df60341 Implementing code that draws line crossings.
  • 3bfc5b5 Merge branch 'devel' into draw-line
  • c89ed60 Self review.
  • 9f7a598 Fixing documentation.
  • 750d715 Ability to copy a canvas.
  • 3006866 The copied-to canvas is always zero-based.
  • 11c9dba Adding a higher resolution canvas.
  • d3ad056 Merge branch 'devel' into 10-braille-canvas-copyto
  • 7d15d24 Merge branch '10-braille-canvas-copyto' into 20-braille-canvas

📊 Changes

30 files changed (+6724 additions, -38 deletions)

View changed files

📝 README.md (+7 -0)
canvas/braille/braille.go (+236 -0)
canvas/braille/braille_test.go (+669 -0)
canvas/braille/testbraille/testbraille.go (+56 -0)
📝 canvas/canvas.go (+63 -23)
📝 canvas/canvas_test.go (+183 -0)
draw/braille_line.go (+161 -0)
draw/braille_line_test.go (+366 -0)
draw/hv_line.go (+206 -0)
draw/hv_line_graph.go (+204 -0)
draw/hv_line_graph_test.go (+375 -0)
draw/hv_line_test.go (+673 -0)
📝 draw/line_style.go (+34 -2)
📝 draw/testdraw/testdraw.go (+15 -0)
images/linechartdemo.gif (+0 -0)
numbers/numbers.go (+127 -0)
numbers/numbers_test.go (+201 -0)
widgets/linechart/axes/axes.go (+195 -0)
widgets/linechart/axes/axes_test.go (+226 -0)
widgets/linechart/axes/label.go (+232 -0)

...and 10 more files

📄 Description

Implementing a LineChart widget.


🔄 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/64 **Author:** [@mum4k](https://github.com/mum4k) **Created:** 1/13/2019 **Status:** ✅ Merged **Merged:** 1/13/2019 **Merged by:** [@mum4k](https://github.com/mum4k) **Base:** `master` ← **Head:** `release-0.3` --- ### 📝 Commits (10+) - [`1bc6a7c`](https://github.com/mum4k/termdash/commit/1bc6a7ccd4e7b70b477f94b2cbbdaad38d7a5d03) Skeleton for function that draws lines. - [`df60341`](https://github.com/mum4k/termdash/commit/df60341164d1034c96491a500b9c4c14527bae9a) Implementing code that draws line crossings. - [`3bfc5b5`](https://github.com/mum4k/termdash/commit/3bfc5b554c6714b74dee4f5ff64283503fe426e9) Merge branch 'devel' into draw-line - [`c89ed60`](https://github.com/mum4k/termdash/commit/c89ed6042b8d8905659363dca407769cc46f0bd4) Self review. - [`9f7a598`](https://github.com/mum4k/termdash/commit/9f7a598f1a6060aa0db201e539afe5e2dedf2926) Fixing documentation. - [`750d715`](https://github.com/mum4k/termdash/commit/750d7159e3c91dd03c57083a19d131e518db2528) Ability to copy a canvas. - [`3006866`](https://github.com/mum4k/termdash/commit/30068668d0a999a614f3adb6fd529adf031060f1) The copied-to canvas is always zero-based. - [`11c9dba`](https://github.com/mum4k/termdash/commit/11c9dbab242ba342ad7c12b1e9ba61b04a082322) Adding a higher resolution canvas. - [`d3ad056`](https://github.com/mum4k/termdash/commit/d3ad05646886f17778df5b0c54470701d6a8b305) Merge branch 'devel' into 10-braille-canvas-copyto - [`7d15d24`](https://github.com/mum4k/termdash/commit/7d15d24d2f7f9761dc84fd39ad0692d5f47f014b) Merge branch '10-braille-canvas-copyto' into 20-braille-canvas ### 📊 Changes **30 files changed** (+6724 additions, -38 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+7 -0) ➕ `canvas/braille/braille.go` (+236 -0) ➕ `canvas/braille/braille_test.go` (+669 -0) ➕ `canvas/braille/testbraille/testbraille.go` (+56 -0) 📝 `canvas/canvas.go` (+63 -23) 📝 `canvas/canvas_test.go` (+183 -0) ➕ `draw/braille_line.go` (+161 -0) ➕ `draw/braille_line_test.go` (+366 -0) ➕ `draw/hv_line.go` (+206 -0) ➕ `draw/hv_line_graph.go` (+204 -0) ➕ `draw/hv_line_graph_test.go` (+375 -0) ➕ `draw/hv_line_test.go` (+673 -0) 📝 `draw/line_style.go` (+34 -2) 📝 `draw/testdraw/testdraw.go` (+15 -0) ➕ `images/linechartdemo.gif` (+0 -0) ➕ `numbers/numbers.go` (+127 -0) ➕ `numbers/numbers_test.go` (+201 -0) ➕ `widgets/linechart/axes/axes.go` (+195 -0) ➕ `widgets/linechart/axes/axes_test.go` (+226 -0) ➕ `widgets/linechart/axes/label.go` (+232 -0) _...and 10 more files_ </details> ### 📄 Description Implementing a LineChart widget. --- <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:11 +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#180
No description provided.