Update name and link to repo to new project
This commit is contained in:
parent
e079ec70d6
commit
39dc4e8957
@ -10,7 +10,7 @@
|
|||||||
<meta name="mobile-web-app-capable" content="yes">
|
<meta name="mobile-web-app-capable" content="yes">
|
||||||
<meta name="referrer" content="no-referrer">
|
<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/bootstrap.css">
|
||||||
<link rel="stylesheet" href="css/style.css">
|
<link rel="stylesheet" href="css/style.css">
|
||||||
@ -34,7 +34,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</aside>
|
</aside>
|
||||||
<footer id="footer">
|
<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 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 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>
|
<button id="sign-out" class="icon sign-out" data-placement="top" title="Sign out"></button>
|
||||||
@ -266,12 +266,12 @@
|
|||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-12">
|
<div class="col-sm-12">
|
||||||
<h2>About Shout</h2>
|
<h2>About The Lounge</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-12">
|
<div class="col-sm-12">
|
||||||
<p class="about">
|
<p class="about">
|
||||||
You're currently running version <small><%= version %></small><br>
|
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>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
2
client/js/libs/jquery/inputhistory.js
vendored
2
client/js/libs/jquery/inputhistory.js
vendored
@ -49,7 +49,7 @@
|
|||||||
|
|
||||||
case 38: // Up
|
case 38: // Up
|
||||||
case 40: // Down
|
case 40: // Down
|
||||||
// NOTICE: This is specific to the Shout client.
|
// NOTICE: This is specific to The Lounge.
|
||||||
if (e.ctrlKey || e.metaKey) {
|
if (e.ctrlKey || e.metaKey) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -557,7 +557,7 @@ $(function() {
|
|||||||
.sticky()
|
.sticky()
|
||||||
.end();
|
.end();
|
||||||
|
|
||||||
var title = "Shout";
|
var title = "The Lounge";
|
||||||
if (chan.data("title")) {
|
if (chan.data("title")) {
|
||||||
title = chan.data("title") + " — " + title;
|
title = chan.data("title") + " — " + title;
|
||||||
}
|
}
|
||||||
|
@ -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 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);
|
var irc = slate(stream);
|
||||||
identd.hook(stream, username);
|
identd.hook(stream, username);
|
||||||
|
@ -23,7 +23,7 @@ program
|
|||||||
if (!mode && !users.length) {
|
if (!mode && !users.length) {
|
||||||
console.log("");
|
console.log("");
|
||||||
console.log("No users found!");
|
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("");
|
console.log("");
|
||||||
} else {
|
} else {
|
||||||
shout({
|
shout({
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
var path = require("path");
|
var path = require("path");
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
HOME: (process.env.HOME || process.env.USERPROFILE) + "/.shout",
|
HOME: (process.env.HOME || process.env.USERPROFILE) + "/.lounge",
|
||||||
getConfig: getConfig
|
getConfig: getConfig
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -104,7 +104,7 @@ function fetch(url, cb) {
|
|||||||
var req = request.get({
|
var req = request.get({
|
||||||
url: url,
|
url: url,
|
||||||
headers: {
|
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) {
|
} catch (e) {
|
||||||
|
@ -58,7 +58,7 @@ module.exports = function(options) {
|
|||||||
manager.sockets = sockets;
|
manager.sockets = sockets;
|
||||||
|
|
||||||
console.log("");
|
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("Press ctrl-c to stop");
|
||||||
console.log("");
|
console.log("");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user