Update name and link to repo to new project

This commit is contained in:
Jérémie Astori 2016-02-10 05:45:21 +00:00
parent e079ec70d6
commit 39dc4e8957
8 changed files with 12 additions and 12 deletions

View file

@ -10,7 +10,7 @@
<meta name="mobile-web-app-capable" content="yes">
<meta name="referrer" content="no-referrer">
<title>Shout</title>
<title>The Lounge</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/style.css">
@ -34,7 +34,7 @@
</div>
</aside>
<footer id="footer">
<button class="icon sign-in" data-target="#sign-in" data-title="Sign in" data-placement="top" title="Sign in to Shout"></button>
<button class="icon sign-in" data-target="#sign-in" data-title="Sign in" data-placement="top" title="Sign in to The Lounge"></button>
<button class="icon connect" data-target="#connect" data-title="Connect" data-placement="top" title="Connect to network"></button>
<button class="icon settings" data-target="#settings" data-title="Settings" data-placement="top" title="Client settings"></button>
<button id="sign-out" class="icon sign-out" data-placement="top" title="Sign out"></button>
@ -266,12 +266,12 @@
</label>
</div>
<div class="col-sm-12">
<h2>About Shout</h2>
<h2>About The Lounge</h2>
</div>
<div class="col-sm-12">
<p class="about">
You're currently running version <small><%= version %></small><br>
<a href="https://raw.githubusercontent.com/erming/shout/master/CHANGELOG.md" target="_blank">Check for updates</a>
<a href="https://raw.githubusercontent.com/thelounge/lounge/master/CHANGELOG.md" target="_blank">Check for updates</a>
</p>
</div>
</div>

View file

@ -49,7 +49,7 @@
case 38: // Up
case 40: // Down
// NOTICE: This is specific to the Shout client.
// NOTICE: This is specific to The Lounge.
if (e.ctrlKey || e.metaKey) {
break;
}

View file

@ -557,7 +557,7 @@ $(function() {
.sticky()
.end();
var title = "Shout";
var title = "The Lounge";
if (chan.data("title")) {
title = chan.data("title") + " — " + title;
}

View file

@ -151,9 +151,9 @@ Client.prototype.connect = function(args) {
});
});
var nick = args.nick || "shout-user";
var nick = args.nick || "lounge-user";
var username = args.username || nick.replace(/[^a-zA-Z0-9]/g, "");
var realname = args.realname || "Shout User";
var realname = args.realname || "The Lounge User";
var irc = slate(stream);
identd.hook(stream, username);

View file

@ -23,7 +23,7 @@ program
if (!mode && !users.length) {
console.log("");
console.log("No users found!");
console.log("Create a new user with 'shout add <name>'.");
console.log("Create a new user with 'lounge add <name>'.");
console.log("");
} else {
shout({

View file

@ -1,7 +1,7 @@
var path = require("path");
module.exports = {
HOME: (process.env.HOME || process.env.USERPROFILE) + "/.shout",
HOME: (process.env.HOME || process.env.USERPROFILE) + "/.lounge",
getConfig: getConfig
};

View file

@ -104,7 +104,7 @@ function fetch(url, cb) {
var req = request.get({
url: url,
headers: {
"User-Agent": "Mozilla/5.0 (compatible; Shout IRC Client; +https://github.com/erming/shout)"
"User-Agent": "Mozilla/5.0 (compatible; The Lounge IRC Client; +https://github.com/thelounge/lounge)"
}
});
} catch (e) {

View file

@ -58,7 +58,7 @@ module.exports = function(options) {
manager.sockets = sockets;
console.log("");
console.log("Shout is now running on " + protocol + "://" + config.host + ":" + config.port + "/");
console.log("The Lounge is now running on " + protocol + "://" + config.host + ":" + config.port + "/");
console.log("Press ctrl-c to stop");
console.log("");