diff --git a/README.md b/README.md index 2b2697fc..d01c46c7 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,13 @@ ## shout + Run your IRC client on a server and access it from the web browser. This gives you a persistent connection and allows you to chat from multiple devices at the same time. ### Screenshot + ![](https://raw.github.com/erming/shout/master/shout.png) ### Commands + These are the commands currently implemented: - [x] /ame - [x] /amsg @@ -13,7 +16,6 @@ These are the commands currently implemented: - [x] /deop - [x] /devoice - [x] /disconnect -- [ ] /help - [x] /invite - [x] /join - [x] /kick @@ -33,9 +35,7 @@ These are the commands currently implemented: - [x] /send - [x] /server - [x] /slap -- [ ] /time - [x] /topic -- [ ] /version - [x] /voice - [x] /whois @@ -60,6 +60,7 @@ These are the commands currently implemented: `http://localhost:9000` ## Events + Using [Socket.IO](http://socket.io/) Events sent from the __server__ to the __browser__: ```javascript diff --git a/client/css/style.css b/client/css/style.css index fd292b15..6619d182 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -206,7 +206,7 @@ button { overflow-y: auto; -webkit-overflow-scrolling: touch; position: absolute; - right: 160px; + right: 180px; top: 0; } #chat .show-more { @@ -292,7 +292,7 @@ button { display: none; position: absolute; right: 0; - width: 160px; + width: 180px; top: 0; } #chat .active .sidebar { @@ -335,7 +335,7 @@ button { height: 35px; left: 0; position: absolute; - right: 160px; + right: 180px; } #chat .form .hint { color: #bbb; @@ -358,8 +358,8 @@ button { transform: translate3d(220px, 0, 0); } #viewport.rt { - -webkit-transform: translate3d(-160px, 0, 0); - transform: translate3d(-160px, 0, 0); + -webkit-transform: translate3d(-180px, 0, 0); + transform: translate3d(-180px, 0, 0); } #sidebar { margin-left: -220px; @@ -383,7 +383,7 @@ button { right: 0; } #chat .sidebar { - margin-right: -160px; + margin-right: -180px; } #chat .messages { display: block; diff --git a/client/js/chat.js b/client/js/chat.js index d9e9d09e..3a16dba9 100644 --- a/client/js/chat.js +++ b/client/js/chat.js @@ -125,8 +125,8 @@ $(function() { }; target.find(".meta") .replaceWith(render("meta", json)) - .end() - .find(".users") + .end(); + target.find(".users") .html(render("users", json)) .end(); break; diff --git a/package.json b/package.json index 2f659046..0aff6d8c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "shout", "description": "The modern IRC client", - "version": "1.0.0-alpha3", + "version": "1.0.0-alpha4", "homepage": "http://github.com/erming/shout", "author": { "name": "Mattias Erming",