[PR #225] [MERGED] Release v0.11.0. #266

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

📋 Pull Request Information

Original PR: https://github.com/mum4k/termdash/pull/225
Author: @mum4k
Created: 3/7/2020
Status: Merged
Merged: 3/7/2020
Merged by: @mum4k

Base: masterHead: release-0-11-0


📝 Commits (10+)

  • 372d194 Merge pull request #218 from mum4k/release-0-10-0
  • b23d99c Add tcell dependency as another terminal backend
  • 4fcdf48 Fix mouse events
  • facb0e6 Add missing comment
  • f01148c Add color mode and clear style colors
  • 2f95ff9 Remove local go.mod stuff
  • 67c22d9 Add license headers
  • 3fdaf65 Use tcell screen.Fill() to clear screen
  • 5cd12d9 Add test for tcell options
  • c431b8c Add fixColor test

📊 Changes

13 files changed (+1211 additions, -23 deletions)

View changed files

📝 .travis.yml (+1 -1)
📝 CHANGELOG.md (+22 -1)
📝 internal/numbers/numbers_test.go (+2 -14)
📝 termdashdemo/termdashdemo.go (+26 -1)
terminal/tcell/cell_options.go (+62 -0)
terminal/tcell/cell_options_test.go (+157 -0)
terminal/tcell/event.go (+199 -0)
terminal/tcell/event_test.go (+281 -0)
terminal/tcell/tcell.go (+200 -0)
terminal/tcell/tcell_test.go (+116 -0)
📝 terminal/terminalapi/terminalapi.go (+4 -0)
📝 widgets/gauge/gauge.go (+2 -6)
📝 widgets/gauge/gauge_test.go (+139 -0)

📄 Description

  • New tcell based terminal implementation.

Fixes #100.
Fixes #223.


🔄 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/225 **Author:** [@mum4k](https://github.com/mum4k) **Created:** 3/7/2020 **Status:** ✅ Merged **Merged:** 3/7/2020 **Merged by:** [@mum4k](https://github.com/mum4k) **Base:** `master` ← **Head:** `release-0-11-0` --- ### 📝 Commits (10+) - [`372d194`](https://github.com/mum4k/termdash/commit/372d19448e8ccdc7eb91a33f1beecbc3a5a07c5f) Merge pull request #218 from mum4k/release-0-10-0 - [`b23d99c`](https://github.com/mum4k/termdash/commit/b23d99cd8d5733faa84ec0b56df58b6e246e937f) Add tcell dependency as another terminal backend - [`4fcdf48`](https://github.com/mum4k/termdash/commit/4fcdf48ecbb4ac9fc82e80878d65310259e91dc5) Fix mouse events - [`facb0e6`](https://github.com/mum4k/termdash/commit/facb0e6743da43e4e1ec5b3e49ec2573ecf45b3d) Add missing comment - [`f01148c`](https://github.com/mum4k/termdash/commit/f01148c8fd28da1b87b31dd9cc0ce51218a4de90) Add color mode and clear style colors - [`2f95ff9`](https://github.com/mum4k/termdash/commit/2f95ff99d1ff6131e4d513f17147871ceb360488) Remove local go.mod stuff - [`67c22d9`](https://github.com/mum4k/termdash/commit/67c22d9015269136db2271d7f4d25b9c9c459a02) Add license headers - [`3fdaf65`](https://github.com/mum4k/termdash/commit/3fdaf659f215959c3fbdf2658a726889046596f3) Use tcell screen.Fill() to clear screen - [`5cd12d9`](https://github.com/mum4k/termdash/commit/5cd12d9fce4b234c47a9f3a599b9db302519559c) Add test for tcell options - [`c431b8c`](https://github.com/mum4k/termdash/commit/c431b8c3bd7794e46174b98287873c31f00fd965) Add fixColor test ### 📊 Changes **13 files changed** (+1211 additions, -23 deletions) <details> <summary>View changed files</summary> 📝 `.travis.yml` (+1 -1) 📝 `CHANGELOG.md` (+22 -1) 📝 `internal/numbers/numbers_test.go` (+2 -14) 📝 `termdashdemo/termdashdemo.go` (+26 -1) ➕ `terminal/tcell/cell_options.go` (+62 -0) ➕ `terminal/tcell/cell_options_test.go` (+157 -0) ➕ `terminal/tcell/event.go` (+199 -0) ➕ `terminal/tcell/event_test.go` (+281 -0) ➕ `terminal/tcell/tcell.go` (+200 -0) ➕ `terminal/tcell/tcell_test.go` (+116 -0) 📝 `terminal/terminalapi/terminalapi.go` (+4 -0) 📝 `widgets/gauge/gauge.go` (+2 -6) 📝 `widgets/gauge/gauge_test.go` (+139 -0) </details> ### 📄 Description - New [`tcell`](https://github.com/gdamore/tcell) based terminal implementation. Fixes #100. Fixes #223. --- <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:37 +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#266
No description provided.