Release 1.0.0-alpha4

This commit is contained in:
Mattias Erming 2014-06-09 21:45:38 +02:00
parent 7a509e6a1a
commit 5e3abe2347
4 changed files with 13 additions and 12 deletions

View file

@ -1,10 +1,13 @@
## shout ## 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. 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 ### Screenshot
![](https://raw.github.com/erming/shout/master/shout.png) ![](https://raw.github.com/erming/shout/master/shout.png)
### Commands ### Commands
These are the commands currently implemented: These are the commands currently implemented:
- [x] /ame - [x] /ame
- [x] /amsg - [x] /amsg
@ -13,7 +16,6 @@ These are the commands currently implemented:
- [x] /deop - [x] /deop
- [x] /devoice - [x] /devoice
- [x] /disconnect - [x] /disconnect
- [ ] /help
- [x] /invite - [x] /invite
- [x] /join - [x] /join
- [x] /kick - [x] /kick
@ -33,9 +35,7 @@ These are the commands currently implemented:
- [x] /send - [x] /send
- [x] /server - [x] /server
- [x] /slap - [x] /slap
- [ ] /time
- [x] /topic - [x] /topic
- [ ] /version
- [x] /voice - [x] /voice
- [x] /whois - [x] /whois
@ -60,6 +60,7 @@ These are the commands currently implemented:
`http://localhost:9000` `http://localhost:9000`
## Events ## Events
Using [Socket.IO](http://socket.io/) Using [Socket.IO](http://socket.io/)
Events sent from the __server__ to the __browser__: Events sent from the __server__ to the __browser__:
```javascript ```javascript

View file

@ -206,7 +206,7 @@ button {
overflow-y: auto; overflow-y: auto;
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
position: absolute; position: absolute;
right: 160px; right: 180px;
top: 0; top: 0;
} }
#chat .show-more { #chat .show-more {
@ -292,7 +292,7 @@ button {
display: none; display: none;
position: absolute; position: absolute;
right: 0; right: 0;
width: 160px; width: 180px;
top: 0; top: 0;
} }
#chat .active .sidebar { #chat .active .sidebar {
@ -335,7 +335,7 @@ button {
height: 35px; height: 35px;
left: 0; left: 0;
position: absolute; position: absolute;
right: 160px; right: 180px;
} }
#chat .form .hint { #chat .form .hint {
color: #bbb; color: #bbb;
@ -358,8 +358,8 @@ button {
transform: translate3d(220px, 0, 0); transform: translate3d(220px, 0, 0);
} }
#viewport.rt { #viewport.rt {
-webkit-transform: translate3d(-160px, 0, 0); -webkit-transform: translate3d(-180px, 0, 0);
transform: translate3d(-160px, 0, 0); transform: translate3d(-180px, 0, 0);
} }
#sidebar { #sidebar {
margin-left: -220px; margin-left: -220px;
@ -383,7 +383,7 @@ button {
right: 0; right: 0;
} }
#chat .sidebar { #chat .sidebar {
margin-right: -160px; margin-right: -180px;
} }
#chat .messages { #chat .messages {
display: block; display: block;

View file

@ -125,8 +125,8 @@ $(function() {
}; };
target.find(".meta") target.find(".meta")
.replaceWith(render("meta", json)) .replaceWith(render("meta", json))
.end() .end();
.find(".users") target.find(".users")
.html(render("users", json)) .html(render("users", json))
.end(); .end();
break; break;

View file

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