Release 1.0.0-alpha3

This commit is contained in:
Mattias Erming 2014-05-29 18:07:38 -07:00
parent acdd7bcbcb
commit fb38df1405
3 changed files with 5 additions and 4 deletions

View file

@ -29,7 +29,7 @@ These are the commands currently implemented:
- [x] /say
- [x] /send
- [x] /server
- [ ] /slap
- [x] /slap
- [ ] /time
- [x] /topic
- [ ] /version

View file

@ -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")

View file

@ -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",