Skip to content
This repository was archived by the owner on May 3, 2024. It is now read-only.

Commit a0d566f

Browse files
committed
Bug fix release
* Fix issues with history buffer * Fix tab activity logic * Add kick command * Fix bug with /query and /topic logic
1 parent 9643808 commit a0d566f

File tree

2 files changed

+31
-29
lines changed

2 files changed

+31
-29
lines changed

README.md

+30-28
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ Flags:
3434
-p, --port=PORT port
3535
-n, --nick=NICK nick
3636
-u, --user=USER server user
37-
-P, --server-password=SERVER-PASSWORD
37+
-P, --server-password=SERVER-PASSWORD
3838
server password
39-
--nick-password=NICK-PASSWORD
39+
--nick-password=NICK-PASSWORD
4040
nick password
4141
-a, --auto auto-connect on startup.
4242
-c, --config=CONFIG configuration file location
@@ -60,30 +60,32 @@ Flags:
6060
## /help output
6161

6262
```bash
63-
-> [17:59] * ==================== HELP COMMANDS ====================
64-
-> [17:59] * /exit - exit komanda-cli
65-
-> [17:59] * /connect - connect to irc using passed arguments
66-
-> [17:59] * /status - status command
67-
-> [17:59] * /help - help command
68-
-> [17:59] * /join <channel> - join irc channel
69-
-> [17:59] * /part [channel] - part irc channel or current if no channel given
70-
-> [17:59] * /clear - clear current view
71-
-> [17:59] * /logo - logo command
72-
-> [17:59] * /version - version command
73-
-> [17:59] * /nick <nick> - nick irc channel
74-
-> [17:59] * /pass <password> - pass irc channel
75-
-> [17:59] * /raw <command> [data] - raw command
76-
-> [17:59] * /topic [channel] [topic] - set topic for given channel or current channel if empty
77-
-> [17:59] * /window <id,#channel> - change window example: /window #komanda
78-
-> [17:59] * /names - list channel names
79-
-> [17:59] * /query <user> [message] - send private message to user
80-
-> [17:59] * /who <nick> - send who command to server
81-
-> [17:59] * /whois <nick> - send whois command to server
82-
-> [17:59] * /me [message] - send action message to channel
83-
-> [17:59] * /notice <channel/nick> <message> - send notice message to channel or nick
84-
-> [17:59] * /shrug - Shrugging Emoji
85-
-> [17:59] * /tableflip - TableFlip Emoji
86-
-> [17:59] * ==================== HELP COMMANDS ====================
63+
* ==================== HELP COMMANDS ====================
64+
* /exit - exit komanda-cli
65+
* /connect - connect to irc using passed arguments
66+
* /status - status command
67+
* /help - help command
68+
* /join <channel> - join irc channel
69+
* /part [channel] - part irc channel or current if no channel given
70+
* /clear - clear current view
71+
* /logo - logo command
72+
* /version - version command
73+
* /nick <nick> - nick irc channel
74+
* /pass <password> - pass irc channel
75+
* /raw <command> [data] - raw command
76+
* /topic [channel] [topic] - set topic for given channel or current channel if empty
77+
* /window <id,#channel> - change window example: /window #komanda
78+
* /names - list channel names
79+
* /query <user> [message] - send private message to user
80+
* /who <nick> - send who command to server
81+
* /whois <nick> - send whois command to server
82+
* /me [message] - send action message to channel
83+
* /notice <channel/nick> <message> - send notice message to channel or nick
84+
* /shrug - Shrugging Emoji
85+
* /tableflip - TableFlip Emoji
86+
* /kick <channel> <nick> [message] - kick user from channel. /kick #komanda mephux
87+
* /away [message] - set status to away with a message or none to toggle away atatus
88+
* ==================== HELP COMMANDS ====================
8789
```
8890
8991
## Features
@@ -154,8 +156,8 @@ Flags:
154156
155157
## TODO
156158
157-
* Support for kick/ban/op releated commands
158-
* IRC colors (for notice etc...)
159+
* Support for ban/op releated commands
160+
* IRC colors (for notice etc...)
159161
- https://en.wikipedia.org/wiki/Caret_notation
160162
- https://github.com/myano/jenni/wiki/IRC-String-Formatting
161163

komanda/version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const Name = "komanda"
1919
const Description = "The Komanda Command-line IRC Client"
2020

2121
// Version number
22-
const Version = "0.9.1"
22+
const Version = "0.9.2"
2323

2424
// Website number
2525
const Website = "github.com/mephux/komanda"

0 commit comments

Comments
 (0)