From fb38df1405095284cf705c3dc3f0eb84ac18d39b Mon Sep 17 00:00:00 2001 From: Mattias Erming Date: Thu, 29 May 2014 18:07:38 -0700 Subject: [PATCH] Release 1.0.0-alpha3 --- README.md | 2 +- client/js/chat.js | 5 +++-- package.json | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 74489cf..482801f 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ These are the commands currently implemented: - [x] /say - [x] /send - [x] /server -- [ ] /slap +- [x] /slap - [ ] /time - [x] /topic - [ ] /version diff --git a/client/js/chat.js b/client/js/chat.js index c03e35e..658e014 100644 --- a/client/js/chat.js +++ b/client/js/chat.js @@ -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") diff --git a/package.json b/package.json index 5465061..2f65904 100644 --- a/package.json +++ b/package.json @@ -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",