Skip to content

Commit

Permalink
changed banner menu and acknowledgements color
Browse files Browse the repository at this point in the history
  • Loading branch information
talkkonnect committed Apr 7, 2022
1 parent a27bcb9 commit 7ac07b7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions client.go
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ func (b *Talkkonnect) ClientStart() {
log.Println("debug: Backlight Timer Disabled by Config")
}

talkkonnectBanner("\u001b[44;1m") // add blue background to banner reference https://www.lihaoyi.com/post/BuildyourownCommandLinewithANSIescapecodes.html#background-colors
talkkonnectBanner("\x1b[0;44m") // add blue background to banner reference https://www.lihaoyi.com/post/BuildyourownCommandLinewithANSIescapecodes.html#background-colors

err = volume.Unmute(Config.Global.Software.Settings.OutputDevice)

Expand Down Expand Up @@ -578,7 +578,7 @@ keyPressListenerLoop:
case term.KeyCtrlB:
b.cmdLiveReload()
case term.KeyCtrlC:
talkkonnectAcknowledgements("\u001b[44;1m") // add blue background to banner reference https://www.lihaoyi.com/post/BuildyourownCommandLinewithANSIescapecodes.html#background-colors
talkkonnectAcknowledgements("\x1b[0;44m") // add blue background to banner reference https://www.lihaoyi.com/post/BuildyourownCommandLinewithANSIescapecodes.html#background-colors
b.cmdQuitTalkkonnect()
case term.KeyCtrlD:
b.cmdDebugStacktrace()
Expand Down
4 changes: 2 additions & 2 deletions commandkeys.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func (b *Talkkonnect) cmdDisplayMenu() {
log.Println("debug: Delete Key Pressed Menu and Session Information Requested")

TTSEvent("displaymenu")
b.talkkonnectMenu("\u001b[44;1m") // add blue background to banner reference https://www.lihaoyi.com/post/BuildyourownCommandLinewithANSIescapecodes.html#background-colors
b.talkkonnectMenu("\x1b[0;44m") // add blue background to banner reference https://www.lihaoyi.com/post/BuildyourownCommandLinewithANSIescapecodes.html#background-colors
b.ParticipantLEDUpdate(true)
}

Expand Down Expand Up @@ -809,7 +809,7 @@ func (b *Talkkonnect) cmdScanChannels() {
func cmdThanks() {
log.Printf("debug: Ctrl-T Pressed \n")
log.Println("info: Thanks and Acknowledgements Screen Request ")
talkkonnectAcknowledgements("\u001b[44;1m") // add blue background to banner reference https://www.lihaoyi.com/post/BuildyourownCommandLinewithANSIescapecodes.html#background-colors
talkkonnectAcknowledgements("\x1b[0;44m") // add blue background to banner reference https://www.lihaoyi.com/post/BuildyourownCommandLinewithANSIescapecodes.html#background-colors
}

func (b *Talkkonnect) cmdShowUptime() {
Expand Down
4 changes: 2 additions & 2 deletions version.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
package talkkonnect

const (
talkkonnectVersion string = "2.13.02"
talkkonnectVersion string = "2.13.03"
talkkonnectReleased string = "Apr 7 2022"
)

/* Release Notes
1. Fixed prevparticipant count logial error causing a lot of audible alerts fur no real reason
1. Modified full line color for logs
*/

0 comments on commit 7ac07b7

Please sign in to comment.