[PR #82] [MERGED] Release 0.5 #189

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

📋 Pull Request Information

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

Base: masterHead: release-0.5


📝 Commits (10+)

  • 834e3b3 Function that draws empty and filled circles.
  • 5919767 Ability to draw circles.
  • 3eea419 BrailleLine can clear pixels as well.
  • 50a734d Ability to clear pixels.
  • 045bd3f Improving test coverage.
  • ac42127 Two typos s/called/caller
  • f9eef8d Merge pull request #80 from mum4k/typos
  • 6b5c85f Merge branch 'devel' of ssh://github.com/mum4k/termdash into devel
  • ebc275c Merge branch 'devel' into donut
  • 310ea21 Skeleton for the donut widget.

📊 Changes

26 files changed (+4968 additions, -46 deletions)

View changed files

📝 README.md (+11 -0)
📝 canvas/braille/braille.go (+5 -2)
📝 canvas/braille/braille_test.go (+158 -2)
📝 canvas/braille/testbraille/testbraille.go (+7 -0)
draw/braille_circle.go (+263 -0)
draw/braille_circle_test.go (+1191 -0)
draw/braille_fill.go (+160 -0)
draw/braille_fill_test.go (+270 -0)
📝 draw/braille_line.go (+76 -23)
📝 draw/braille_line_test.go (+95 -4)
📝 draw/testdraw/testdraw.go (+7 -0)
images/donutdemo.gif (+0 -0)
📝 images/termdashdemo.gif (+0 -0)
📝 numbers/numbers.go (+37 -0)
📝 numbers/numbers_test.go (+128 -0)
📝 termdashdemo/termdashdemo.go (+31 -13)
📝 terminal/faketerm/diff.go (+13 -0)
📝 terminalapi/color_mode.go (+2 -2)
trig/trig.go (+224 -0)
trig/trig_test.go (+471 -0)

...and 6 more files

📄 Description

  • A Donut widget.
  • Bugfixes in the braille canvas.

🔄 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/82 **Author:** [@mum4k](https://github.com/mum4k) **Created:** 1/21/2019 **Status:** ✅ Merged **Merged:** 1/21/2019 **Merged by:** [@mum4k](https://github.com/mum4k) **Base:** `master` ← **Head:** `release-0.5` --- ### 📝 Commits (10+) - [`834e3b3`](https://github.com/mum4k/termdash/commit/834e3b365eb77daea2f4f9be485109946a4165c5) Function that draws empty and filled circles. - [`5919767`](https://github.com/mum4k/termdash/commit/5919767099726e9604570641c2e69aca05a1696d) Ability to draw circles. - [`3eea419`](https://github.com/mum4k/termdash/commit/3eea41990e6ffc2293cee64079000c1251e48f50) BrailleLine can clear pixels as well. - [`50a734d`](https://github.com/mum4k/termdash/commit/50a734d77af42954e92c96ca65863783c6b95358) Ability to clear pixels. - [`045bd3f`](https://github.com/mum4k/termdash/commit/045bd3ffd1b03572e4a7bceabfa792f15ccd0d2f) Improving test coverage. - [`ac42127`](https://github.com/mum4k/termdash/commit/ac421279fb86c5b98150394b2e87ff397694b42e) Two typos s/called/caller - [`f9eef8d`](https://github.com/mum4k/termdash/commit/f9eef8d51b4b369669706e164e39cd4c29c2e9b5) Merge pull request #80 from mum4k/typos - [`6b5c85f`](https://github.com/mum4k/termdash/commit/6b5c85feea973088d48ababec27783544f791741) Merge branch 'devel' of ssh://github.com/mum4k/termdash into devel - [`ebc275c`](https://github.com/mum4k/termdash/commit/ebc275c4b3bd6b5bdec7b29a8e1dc531c5b83fde) Merge branch 'devel' into donut - [`310ea21`](https://github.com/mum4k/termdash/commit/310ea212d33fd2d25b5ce067912103adb115ac5c) Skeleton for the donut widget. ### 📊 Changes **26 files changed** (+4968 additions, -46 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+11 -0) 📝 `canvas/braille/braille.go` (+5 -2) 📝 `canvas/braille/braille_test.go` (+158 -2) 📝 `canvas/braille/testbraille/testbraille.go` (+7 -0) ➕ `draw/braille_circle.go` (+263 -0) ➕ `draw/braille_circle_test.go` (+1191 -0) ➕ `draw/braille_fill.go` (+160 -0) ➕ `draw/braille_fill_test.go` (+270 -0) 📝 `draw/braille_line.go` (+76 -23) 📝 `draw/braille_line_test.go` (+95 -4) 📝 `draw/testdraw/testdraw.go` (+7 -0) ➕ `images/donutdemo.gif` (+0 -0) 📝 `images/termdashdemo.gif` (+0 -0) 📝 `numbers/numbers.go` (+37 -0) 📝 `numbers/numbers_test.go` (+128 -0) 📝 `termdashdemo/termdashdemo.go` (+31 -13) 📝 `terminal/faketerm/diff.go` (+13 -0) 📝 `terminalapi/color_mode.go` (+2 -2) ➕ `trig/trig.go` (+224 -0) ➕ `trig/trig_test.go` (+471 -0) _...and 6 more files_ </details> ### 📄 Description - A Donut widget. - Bugfixes in the braille canvas. --- <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:13 +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#189
No description provided.