Compare commits

..

No commits in common. "072afc86dd58d8955b7cf0af986b9ea65136ad8e" and "7855ce5d54a659416f39a5c024a93cc408c7082b" have entirely different histories.

5 changed files with 4 additions and 8 deletions

View File

@ -5,16 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
# [0.18.2] - 2026-01-23
# [0.18.0] - 2026-01-23
### Added
- support for shell completion, see [Shell Completion](https://github.com/onyx-and-iris/gobs-cli?tab=readme-ov-file#shell-completion)
### Changed
- emoji-style ✅, ❌ replaced with cleaner ●, ○. See [Style](https://github.com/onyx-and-iris/gobs-cli?tab=readme-ov-file#style)
# [0.17.0] - 2026-01-09
### Added

BIN
img/coloured-border.png Normal file → Executable file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

BIN
img/coloured-no-border.png Normal file → Executable file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

@ -131,7 +131,7 @@ func (cmd *InputListCmd) Run(ctx *context) error {
)
if err != nil {
if err.Error() == "request GetInputMute: InvalidResourceState (604): The specified input does not support audio." {
muteMark = ""
muteMark = "N/A"
} else {
return fmt.Errorf("failed to get input mute state: %w", err)
}

View File

@ -24,12 +24,12 @@ func getEnabledMark(enabled bool) string {
if os.Getenv("NO_COLOR") != "" { // nolint: misspell
return "✓"
}
return ""
return ""
}
if os.Getenv("NO_COLOR") != "" { // nolint: misspell
return "✗"
}
return ""
return ""
}
func trimPrefix(s, prefix string) string {