From 20a87bc85278cd75a92205021bde8303bae095d2 Mon Sep 17 00:00:00 2001 From: Mattias Erming Date: Sun, 15 Jun 2014 19:33:01 +0200 Subject: [PATCH] Release 0.4.0 --- client/css/style.css | 3 +++ index.js | 3 ++- package.json | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/client/css/style.css b/client/css/style.css index 8d3d8efa..a73be8dc 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -120,6 +120,9 @@ button { #sidebar a:hover .close { opacity: .4; } +#sidebar a[href="#sign-in"] { + display: none; +} #sidebar h1, #sidebar h2 { color: #fff; diff --git a/index.js b/index.js index c6f7914b..672e9108 100644 --- a/index.js +++ b/index.js @@ -1,2 +1,3 @@ process.chdir(__dirname); -require("./lib/server")(); +var listen = require("./lib/server"); +listen(); diff --git a/package.json b/package.json index 0aff6d8c..27411504 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "shout", "description": "The modern IRC client", - "version": "1.0.0-alpha4", + "version": "0.4.0", "homepage": "http://github.com/erming/shout", "author": { "name": "Mattias Erming",