M README.md => README.md +4 -0
@@ 22,6 22,10 @@ JSON config is in `$home/lib/disco.cfg` for setting password, should be made aut
* Cutting and pasting text might break things
+* ~~:g switching guilds crashes the client~~ Add private channel switch later
+
+* You have to verify your e-mail regularly (i guess?)
+
## Commands
Commands available in chat:
M commands.go => commands.go +4 -3
@@ 49,9 49,10 @@ func ParseForCommands(line string) string {
func SelectGuild() {
State.Enabled = false
SelectGuildMenu()
- if !State.Channel.IsPrivate {
- SelectChannelMenu()
- }
+ /* this causes a segfault, investigate later */
+ //if !State.Channel.IsPrivate {
+ SelectChannelMenu()
+ //}
State.Enabled = true
ShowContent()
}
M main.go => main.go +1 -1
@@ 60,7 60,7 @@ func main() {
//Start Listening
reader := bufio.NewReader(os.Stdin)
for {
- fmt.Print("> ")
+ //fmt.Print("> ")
//line, _ := rl.Readline()
line, _ := reader.ReadString('\n')
line = line[:len(line)-1]