|
|
@ -16,27 +16,31 @@ For support or suggestions check out the [kbtui team](https://keybase.io/team/kb |
|
|
|
* Reactions to messages |
|
|
|
* Reactions to messages |
|
|
|
* Auto #general teams when not given a channel |
|
|
|
* Auto #general teams when not given a channel |
|
|
|
* Pretty format headers in List view from window size |
|
|
|
* Pretty format headers in List view from window size |
|
|
|
|
|
|
|
|
|
|
|
## Todo |
|
|
|
|
|
|
|
* Message editing |
|
|
|
* Message editing |
|
|
|
* Twitter-style feed reading public messages |
|
|
|
* Twitter-style feed reading public messages |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Todo |
|
|
|
* Track multiple conversations at once |
|
|
|
* Track multiple conversations at once |
|
|
|
|
|
|
|
* Message replies |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Building and Running |
|
|
|
### Building and Running |
|
|
|
Easiest Way: |
|
|
|
Easiest Way: |
|
|
|
``` |
|
|
|
``` |
|
|
|
go get -u github.com/rudi9719/kbtui |
|
|
|
go get -u github.com/rudi9719/kbtui |
|
|
|
``` |
|
|
|
``` |
|
|
|
|
|
|
|
Or you can do the following: |
|
|
|
``` |
|
|
|
``` |
|
|
|
go get ./ |
|
|
|
go get ./ |
|
|
|
go build |
|
|
|
go run build.go |
|
|
|
|
|
|
|
go run build.go {build, buildBeta... etc} |
|
|
|
./kbtui |
|
|
|
./kbtui |
|
|
|
``` |
|
|
|
``` |
|
|
|
Or |
|
|
|
|
|
|
|
``` |
|
|
|
You may see an error with `go get ./` about PATHs, that may be safely ignored. |
|
|
|
go get ./ |
|
|
|
|
|
|
|
go run *.go |
|
|
|
If you see an error about a missing dependancy during a build, you'll want to resolve that. |
|
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Occasionally when @dxb updates his API it will be necessary to run |
|
|
|
Occasionally when @dxb updates his API it will be necessary to run |
|
|
|
`go get -u ./` |
|
|
|
`go get -u ./` |
|
|
|