Skip to content

Releases: bash-bastion/bash-term

v0.6.3

01 Dec 19:19
v0.6.3
c746cd2
Compare
Choose a tag to compare

Breaking Changes

  • Convert to MPL-2.0 license

v0.6.2

18 Aug 03:46
v0.6.2
458d6f9
Compare
Choose a tag to compare

Fixes

  • More bug fixes with -P flag

v0.6.1

18 Aug 02:39
v0.6.1
5c05171
Compare
Choose a tag to compare

Fixes

  • Flag -P works like its supposed to in all cases

v0.6.0

18 Aug 02:35
v0.6.0
6a1f4c3
Compare
Choose a tag to compare

Features

  • Use the -P flag to print the escape sequence with the newline

Breaking Changes

  • The -p flag now emits without the escape sequence. To get previous behavior, pass -P instead
  • Options must be passed with a single argument. That is, passing -p -d is no longer allowed; must do -pd

v0.5.0

18 Aug 01:45
v0.5.0
f6e9a23
Compare
Choose a tag to compare

Breaking Changes

  • Removes btput-like API
    • This was removed because it encourages the use of a more cryptic (even if potentially familiar) API

v0.4.1

18 Aug 01:42
v0.4.1
f60a2f8
Compare
Choose a tag to compare

Fixes

File basalt.toml properly specifies to source ./pkg/src/util as a source directory

v0.4.0

31 Jul 05:10
v0.4.0
cc19c9a
Compare
Choose a tag to compare

Features

  • Support term.screen_{save,restrore}
  • Support term.style_{reset,bold,dim} etc. functions
  • Support term.color_{black,cran,light_cyan}, etc. functions
  • For term.{style,color}_* functions, pass in -d (done) to terminate the string with a reset code. This enables a pattern like so:
term.color_light_cyan 'four'
term.style_strikethrough "$REPLY"
term.style_inverse "$REPLY"
term.style_underline -dp "$REPLY"
  • Support passing in -p flag for all functions for automatically printing the REPLY variable to standard output

v0.3.2

14 Jul 19:07
v0.3.2
9f47181
Compare
Choose a tag to compare

Fixes

  • Properly reset terminal state when calling term.@(bold|italic|underline|strikethrough)

v0.3.1

09 Apr 02:53
v0.3.1
20cfc0b
Compare
Choose a tag to compare

Fixes

  • term.hyperlink no longer adds extraneous newline

Misc

Before this release, this repository renamed from bash-tty to bash-term

v0.3.0

06 Apr 03:57
v0.3.0
1d8d106
Compare
Choose a tag to compare

Breaking Changes

  • Rename unsave functions to restore
  • Remove BASH_TTY_FORCE_TPUT variable check

Features

  • Add screen.save
  • Add screen.restore
  • Implement several more arguments for btput