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
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

View file

@ -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;

View file

@ -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;

View file

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