Skip to content
This repository has been archived by the owner on May 22, 2023. It is now read-only.

Commit

Permalink
v0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Derric Williams committed Feb 12, 2021
1 parent 5177f94 commit 2176688
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion signal/mock.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ type MockSignal struct {

// Version just returns the last known compatible version of signal-cli
func (ms *MockSignal) Version() (string, error) {
return "0.6.7", nil
return "0.7.4", nil
}

// Send just sends a fake message, by putting it on the "wire"
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

var (
GitCommit string
Version = "0.8.2"
Version = "0.9"
BuildDate = ""
GoVersion = runtime.Version()
OsArch = fmt.Sprintf("%s %s", runtime.GOOS, runtime.GOARCH)
Expand Down
4 changes: 0 additions & 4 deletions widgets/chatwindow.go
Original file line number Diff line number Diff line change
Expand Up @@ -540,9 +540,6 @@ func NewChatWindow(siggo *model.Siggo, app *tview.Application) *ChatWindow {
w.HideStatusBar()
w.HideCommandInput()
return nil
//case tcell.KeyCtrlT:
//w.ShowContactSearch()
//return nil
case tcell.KeyCtrlN:
w.NextUnreadMessage()
return nil
Expand Down Expand Up @@ -577,7 +574,6 @@ func NewChatWindow(siggo *model.Siggo, app *tview.Application) *ChatWindow {
// primitiv, row, col, rowSpan, colSpan, minGridHeight, maxGridHeight, focus)
// TODO: lets make some of the spans confiurable?
w.AddItem(w.contactsPanel, 0, 0, 2, 1, 0, 0, false)
//w.AddItem(w.conversationPanel, 0, 1, 1, 1, 0, 0, false)
w.ShowConversation()
w.AddItem(w.sendPanel, 1, 1, 1, 1, 0, 0, false)

Expand Down
1 change: 0 additions & 1 deletion widgets/filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ func NewFilterInput(parent *ChatWindow) *CommandInput {
parent: parent,
}
ci.SetLabel("/")
//ci.SetText("")
ci.SetFieldBackgroundColor(tview.Styles.PrimitiveBackgroundColor)
ci.SetInputCapture(func(event *tcell.EventKey) *tcell.EventKey {
// Setup keys
Expand Down

0 comments on commit 2176688

Please sign in to comment.