Release 1.0.0-alpha3
This commit is contained in:
parent
acdd7bcbcb
commit
fb38df1405
@ -29,7 +29,7 @@ These are the commands currently implemented:
|
||||
- [x] /say
|
||||
- [x] /send
|
||||
- [x] /server
|
||||
- [ ] /slap
|
||||
- [x] /slap
|
||||
- [ ] /time
|
||||
- [x] /topic
|
||||
- [ ] /version
|
||||
|
@ -27,6 +27,7 @@ $(function() {
|
||||
"/say",
|
||||
"/send",
|
||||
"/server",
|
||||
"/slap",
|
||||
"/topic",
|
||||
"/voice",
|
||||
"/whois",
|
||||
@ -62,7 +63,7 @@ $(function() {
|
||||
.sticky({speed: 400, overflow: "auto"})
|
||||
.end()
|
||||
.find(".input")
|
||||
.tabComplete(commands);
|
||||
.tabComplete(commands, {hint: false});
|
||||
|
||||
$("#network-" + data.id)
|
||||
.append(render("channels", {channels: [data.chan]}))
|
||||
@ -81,7 +82,7 @@ $(function() {
|
||||
var channels = $.map(data.networks, function(n) { return n.channels; });
|
||||
chat.html(render("windows", {windows: channels}))
|
||||
.find(".input")
|
||||
.tabComplete(commands)
|
||||
.tabComplete(commands, {hint: false})
|
||||
.end()
|
||||
.find(".hidden")
|
||||
.prev(".show-more")
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "shout",
|
||||
"description": "The modern IRC client",
|
||||
"version": "1.0.0-alpha2",
|
||||
"version": "1.0.0-alpha3",
|
||||
"homepage": "http://github.com/erming/shout",
|
||||
"author": {
|
||||
"name": "Mattias Erming",
|
||||
|
Loading…
Reference in New Issue
Block a user