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] /say
- [x] /send - [x] /send
- [x] /server - [x] /server
- [ ] /slap - [x] /slap
- [ ] /time - [ ] /time
- [x] /topic - [x] /topic
- [ ] /version - [ ] /version

View file

@ -27,6 +27,7 @@ $(function() {
"/say", "/say",
"/send", "/send",
"/server", "/server",
"/slap",
"/topic", "/topic",
"/voice", "/voice",
"/whois", "/whois",
@ -62,7 +63,7 @@ $(function() {
.sticky({speed: 400, overflow: "auto"}) .sticky({speed: 400, overflow: "auto"})
.end() .end()
.find(".input") .find(".input")
.tabComplete(commands); .tabComplete(commands, {hint: false});
$("#network-" + data.id) $("#network-" + data.id)
.append(render("channels", {channels: [data.chan]})) .append(render("channels", {channels: [data.chan]}))
@ -81,7 +82,7 @@ $(function() {
var channels = $.map(data.networks, function(n) { return n.channels; }); var channels = $.map(data.networks, function(n) { return n.channels; });
chat.html(render("windows", {windows: channels})) chat.html(render("windows", {windows: channels}))
.find(".input") .find(".input")
.tabComplete(commands) .tabComplete(commands, {hint: false})
.end() .end()
.find(".hidden") .find(".hidden")
.prev(".show-more") .prev(".show-more")

View file

@ -1,7 +1,7 @@
{ {
"name": "shout", "name": "shout",
"description": "The modern IRC client", "description": "The modern IRC client",
"version": "1.0.0-alpha2", "version": "1.0.0-alpha3",
"homepage": "http://github.com/erming/shout", "homepage": "http://github.com/erming/shout",
"author": { "author": {
"name": "Mattias Erming", "name": "Mattias Erming",