diff --git a/client/css/style.css b/client/css/style.css index 08e88b2..8669bc4 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -468,6 +468,13 @@ button { #chat .notice .type { display: none; } +#chat .action, +#chat .action .user { + color: #f39c12; +} +#chat .action .user:before { + content: '* '; +} #chat .meta { height: 80px; padding: 25px 0 0 20px; diff --git a/config.json b/config.json index f16cea1..8914005 100644 --- a/config.json +++ b/config.json @@ -1,5 +1,5 @@ { "port": 9000, "theme": "themes/example.css", - "public": false + "public": true } diff --git a/package.json b/package.json index b1385b3..85007a0 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "shout", "description": "The modern IRC client", - "version": "0.8.2", + "version": "0.8.3", "homepage": "http://github.com/erming/shout", "author": { "name": "Mattias Erming", diff --git a/screenshot.png b/screenshot.png new file mode 100644 index 0000000..9052f79 Binary files /dev/null and b/screenshot.png differ diff --git a/users/example/user.json b/users/example/user.json index c3af3a5..f7f56ce 100644 --- a/users/example/user.json +++ b/users/example/user.json @@ -4,7 +4,10 @@ "networks": [ { "host": "irc.rizon.net", - "nick": "example" + "port": 6667, + "nick": "example", + "realname": "Example", + "join": "#chan" } ] }