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="mobile-web-app-capable" content="yes">
<meta name="referrer" content="no-referrer"> <meta name="referrer" content="no-referrer">
<title>Shout</title> <title>Shuo</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 Shuo"></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>
@ -259,12 +259,12 @@
</div> </div>
</div> </div>
<div class="col-sm-12"> <div class="col-sm-12">
<h2>About Shout</h2> <h2>About Shuo</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://github.com/PonyChat/Shuo">Github Repo</a>
</p> </p>
</div> </div>
</div> </div>

View File

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

View File

@ -56,7 +56,7 @@ module.exports = {
// //
// Prefetch URLs // 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. // URLs posted in channels.
// //
// @type boolean // @type boolean
@ -67,7 +67,7 @@ module.exports = {
// //
// Display network // 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. // form, limiting client to connect to the configured network.
// //
// @type boolean // @type boolean
@ -115,15 +115,15 @@ module.exports = {
// @type string // @type string
// @default "Freenode" // @default "Freenode"
// //
name: "Freenode", name: "PonyChat",
// //
// Host // Host
// //
// @type string // @type string
// @default "irc.freenode.org" // @default "irc.ponychat.net"
// //
host: "irc.freenode.org", host: "irc.ponychat.net",
// //
// Port // Port
@ -153,33 +153,33 @@ module.exports = {
// Nick // Nick
// //
// @type string // @type string
// @default "shout-user" // @default "shuo-user"
// //
nick: "shout-user", nick: "shuo-user",
// //
// Username // Username
// //
// @type string // @type string
// @default "shout-user" // @default "shuo-user"
// //
username: "shout-user", username: "shuo-user",
// //
// Real Name // Real Name
// //
// @type string // @type string
// @default "Shout User" // @default "Shuo User"
// //
realname: "Shout User", realname: "Shuo User",
// //
// Channels // Channels
// //
// @type string // @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"], transports: ["polling", "websocket"],
// //
// Run Shout with HTTPS support. // Run Shuo with HTTPS support.
// //
// @type object // @type object
// @default {} // @default {}
@ -225,7 +225,7 @@ module.exports = {
}, },
// //
// Run Shout with identd support. // Run Shuo with identd support.
// //
// @type object // @type object
// @default {} // @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 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); var irc = slate(stream);
identd.hook(stream, username); identd.hook(stream, username);

View File

@ -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("Shuo 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("");