[PR #266] [MERGED] Releasing Termdash v0.13. #288

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

📋 Pull Request Information

Original PR: https://github.com/mum4k/termdash/pull/266
Author: @mum4k
Created: 11/18/2020
Status: Merged
Merged: 11/18/2020
Merged by: @mum4k

Base: masterHead: release-0-13


📝 Commits (10+)

  • 8a316e6 added the ability to swap the scrolling runes
  • c3220f0 added the ability to change the scrolling runes
  • 50310f4 add font modifier cell options: bold, italic, underline.
  • 0b92ce9 Adding coveralls back to travis-ci.
  • d0b26fa Adding env and switching to travis-pro.
  • 38da7d1 Updating CHANGELOG.
  • f501a14 have the termbox backend return an error when attempting to use italics or strikethrough
  • 7229bd7 Merge pull request #252 from mum4k/coveralls
  • ee4873f Merge pull request #248 from d-ank/master
  • b2c1820 Formatting files and adding test coverage.

📊 Changes

34 files changed (+783 additions, -211 deletions)

View changed files

📝 .travis.yml (+4 -0)
📝 CHANGELOG.md (+31 -2)
📝 cell/cell.go (+50 -2)
📝 cell/cell_test.go (+20 -0)
📝 cell/color.go (+21 -4)
📝 container/grid/grid_test.go (+9 -9)
📝 go.mod (+4 -2)
📝 go.sum (+14 -0)
private/faketerm/diff_test.go (+69 -0)
📝 termdash_test.go (+3 -3)
📝 termdashdemo/termdashdemo.go (+34 -12)
📝 terminal/tcell/cell_options.go (+31 -18)
📝 terminal/tcell/cell_options_test.go (+292 -109)
📝 terminal/tcell/event.go (+1 -3)
📝 terminal/tcell/event_test.go (+1 -1)
📝 terminal/tcell/tcell.go (+2 -2)
📝 terminal/tcell/tcell_test.go (+1 -1)
📝 terminal/termbox/cell_options.go (+42 -3)
📝 terminal/termbox/cell_options_test.go (+31 -0)
📝 terminal/termbox/termbox.go (+14 -2)

...and 14 more files

📄 Description

[0.13.0] - 17-Nov-2020

Added

  • the Text widget now allows user to specify custom scroll marker runes.

Changed

  • terminal cells now support font modifier options (bold, italic,
    underline, strike through).
  • tcell dependency was upgraded to v2.0.0.
  • upgraded versions of all other dependencies.
  • aligned the definition of the first 16 colors with the definition used by
    Xterm and tcell. Defined two non-standard colors ColorMagenta and
    ColorCyan to make this change backward compatible for users that use
    termbox-go.
  • made tcell terminal implementation the default in examples, demos and
    documentation.

Fixed

  • coveralls again triggers and reports on PRs.
  • addressed some lint issues.
  • improved test coverage in some modules.
  • changed the Blue color in demos to a more visible shade.
  • fixed a bug where segment display text in termdashdemo appeared to be
    jumping.

🔄 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/266 **Author:** [@mum4k](https://github.com/mum4k) **Created:** 11/18/2020 **Status:** ✅ Merged **Merged:** 11/18/2020 **Merged by:** [@mum4k](https://github.com/mum4k) **Base:** `master` ← **Head:** `release-0-13` --- ### 📝 Commits (10+) - [`8a316e6`](https://github.com/mum4k/termdash/commit/8a316e6c1b5ad0bc512d2d8459335ef6828c16b0) added the ability to swap the scrolling runes - [`c3220f0`](https://github.com/mum4k/termdash/commit/c3220f04f19e0aff4d9df1afe34fabbdc55c2f53) added the ability to change the scrolling runes - [`50310f4`](https://github.com/mum4k/termdash/commit/50310f4d29e7e7164a97b70a10c3d8e7ab837cbf) add font modifier cell options: bold, italic, underline. - [`0b92ce9`](https://github.com/mum4k/termdash/commit/0b92ce9aa13ee98345dcb7f21f20cd120cbfb97f) Adding coveralls back to travis-ci. - [`d0b26fa`](https://github.com/mum4k/termdash/commit/d0b26fa25f78ec44e6df2c232559b27f3afd2c7d) Adding env and switching to travis-pro. - [`38da7d1`](https://github.com/mum4k/termdash/commit/38da7d1cf5fd0f5366a2c32b55d3b63e304205f3) Updating CHANGELOG. - [`f501a14`](https://github.com/mum4k/termdash/commit/f501a14afa3b9e2acd0de8c2119952c16288aa2f) have the termbox backend return an error when attempting to use italics or strikethrough - [`7229bd7`](https://github.com/mum4k/termdash/commit/7229bd72ceeb0b88b5ec59e5d2db1edcd329d80e) Merge pull request #252 from mum4k/coveralls - [`ee4873f`](https://github.com/mum4k/termdash/commit/ee4873f748250ec5ebaba0528442a45d2c666fe2) Merge pull request #248 from d-ank/master - [`b2c1820`](https://github.com/mum4k/termdash/commit/b2c182063b4360bbb1645e046a5a1f3d45ba80b7) Formatting files and adding test coverage. ### 📊 Changes **34 files changed** (+783 additions, -211 deletions) <details> <summary>View changed files</summary> 📝 `.travis.yml` (+4 -0) 📝 `CHANGELOG.md` (+31 -2) 📝 `cell/cell.go` (+50 -2) 📝 `cell/cell_test.go` (+20 -0) 📝 `cell/color.go` (+21 -4) 📝 `container/grid/grid_test.go` (+9 -9) 📝 `go.mod` (+4 -2) 📝 `go.sum` (+14 -0) ➕ `private/faketerm/diff_test.go` (+69 -0) 📝 `termdash_test.go` (+3 -3) 📝 `termdashdemo/termdashdemo.go` (+34 -12) 📝 `terminal/tcell/cell_options.go` (+31 -18) 📝 `terminal/tcell/cell_options_test.go` (+292 -109) 📝 `terminal/tcell/event.go` (+1 -3) 📝 `terminal/tcell/event_test.go` (+1 -1) 📝 `terminal/tcell/tcell.go` (+2 -2) 📝 `terminal/tcell/tcell_test.go` (+1 -1) 📝 `terminal/termbox/cell_options.go` (+42 -3) 📝 `terminal/termbox/cell_options_test.go` (+31 -0) 📝 `terminal/termbox/termbox.go` (+14 -2) _...and 14 more files_ </details> ### 📄 Description ## [0.13.0] - 17-Nov-2020 ### Added - the `Text` widget now allows user to specify custom scroll marker runes. ### Changed - terminal cells now support font modifier options (bold, italic, underline, strike through). - `tcell` dependency was upgraded to v2.0.0. - upgraded versions of all other dependencies. - aligned the definition of the first 16 colors with the definition used by Xterm and `tcell`. Defined two non-standard colors `ColorMagenta` and `ColorCyan` to make this change backward compatible for users that use `termbox-go`. - made `tcell` terminal implementation the default in examples, demos and documentation. ### Fixed - coveralls again triggers and reports on PRs. - addressed some lint issues. - improved test coverage in some modules. - changed the Blue color in demos to a more visible shade. - fixed a bug where segment display text in `termdashdemo` appeared to be jumping. --- <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:43 +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#288
No description provided.