diff options
author | Tulir Asokan <tulir@maunium.net> | 2018-04-11 17:57:15 +0300 |
---|---|---|
committer | Tulir Asokan <tulir@maunium.net> | 2018-04-11 17:57:15 +0300 |
commit | ff7ee333a1028850337aa332532cbc23c7bdde14 (patch) | |
tree | 48e8c5d99bfba4f4d981f54b0816646cd52da4db /interface | |
parent | c0705b02a08bc9054ab8dca0363248bf72896b3d (diff) |
Rename UIString to TString, move ansimage to lib/ and switch to tcell fork
Diffstat (limited to 'interface')
-rw-r--r-- | interface/matrix.go | 2 | ||||
-rw-r--r-- | interface/ui.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/interface/matrix.go b/interface/matrix.go index b7b52c3..cf011cf 100644 --- a/interface/matrix.go +++ b/interface/matrix.go @@ -34,5 +34,5 @@ type MatrixContainer interface { LeaveRoom(roomID string) error GetHistory(roomID, prevBatch string, limit int) ([]gomatrix.Event, string, error) GetRoom(roomID string) *rooms.Room - Download(mxcURL string) ([]byte, error) + Download(mxcURL string) ([]byte, string, error) } diff --git a/interface/ui.go b/interface/ui.go index df92308..8d3836d 100644 --- a/interface/ui.go +++ b/interface/ui.go @@ -19,7 +19,7 @@ package ifc import ( "time" - "github.com/gdamore/tcell" + "maunium.net/go/tcell" "maunium.net/go/gomatrix" "maunium.net/go/gomuks/matrix/pushrules" "maunium.net/go/gomuks/matrix/rooms" |