Shout -> Shuo branding

Closes #16
This commit is contained in:
Christine Dodrill 2015-08-04 17:46:53 -07:00
parent a2769f786a
commit 3708c1d593
5 changed files with 23 additions and 23 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>Shuo</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 Shuo"></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>
@ -259,12 +259,12 @@
</div>
</div>
<div class="col-sm-12">
<h2>About Shout</h2>
<h2>About Shuo</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://github.com/PonyChat/Shuo">Github Repo</a>
</p>
</div>
</div>

View File

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

View File

@ -56,7 +56,7 @@ module.exports = {
//
// Prefetch URLs
//
// If enabled, Shout will try to load thumbnails and site descriptions from
// If enabled, Shuo will try to load thumbnails and site descriptions from
// URLs posted in channels.
//
// @type boolean
@ -67,7 +67,7 @@ module.exports = {
//
// Display network
//
// If set to false Shout will not expose network settings in login
// If set to false Shuo will not expose network settings in login
// form, limiting client to connect to the configured network.
//
// @type boolean
@ -115,15 +115,15 @@ module.exports = {
// @type string
// @default "Freenode"
//
name: "Freenode",
name: "PonyChat",
//
// Host
//
// @type string
// @default "irc.freenode.org"
// @default "irc.ponychat.net"
//
host: "irc.freenode.org",
host: "irc.ponychat.net",
//
// Port
@ -153,33 +153,33 @@ module.exports = {
// Nick
//
// @type string
// @default "shout-user"
// @default "shuo-user"
//
nick: "shout-user",
nick: "shuo-user",
//
// Username
//
// @type string
// @default "shout-user"
// @default "shuo-user"
//
username: "shout-user",
username: "shuo-user",
//
// Real Name
//
// @type string
// @default "Shout User"
// @default "Shuo User"
//
realname: "Shout User",
realname: "Shuo User",
//
// Channels
//
// @type string
// @default "#foo, #shout-irc"
// @default "#foo, #shuo-irc"
//
join: "#foo, #shout-irc"
join: "#foo, #shuo-irc"
},
//
@ -191,7 +191,7 @@ module.exports = {
transports: ["polling", "websocket"],
//
// Run Shout with HTTPS support.
// Run Shuo with HTTPS support.
//
// @type object
// @default {}
@ -225,7 +225,7 @@ module.exports = {
},
//
// Run Shout with identd support.
// Run Shuo with identd support.
//
// @type object
// @default {}

View File

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

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("Shuo is now running on " + protocol + "://" + config.host + ":" + config.port + "/");
console.log("Press ctrl-c to stop");
console.log("");