Update name and repo
This commit is contained in:
parent
d23cf924c9
commit
9a8a09354a
|
@ -8,7 +8,7 @@
|
|||
*/
|
||||
{
|
||||
// Name your instance!
|
||||
"title": "Etherpad",
|
||||
"title": "Etherpad Lite",
|
||||
|
||||
// favicon default name
|
||||
// alternatively, set up a fully specified Url to your own favicon
|
||||
|
@ -58,7 +58,7 @@
|
|||
*/
|
||||
|
||||
//the default text of a pad
|
||||
"defaultPadText" : "Welcome to Etherpad!\n\nThis pad text is synchronized as you type, so that everyone viewing this page sees the same text. This allows you to collaborate seamlessly on documents!\n\nGet involved with Etherpad at http:\/\/etherpad.org\n",
|
||||
"defaultPadText" : "Welcome to Etherpad Lite!\n\nThis pad text is synchronized as you type, so that everyone viewing this page sees the same text. This allows you to collaborate seamlessly on documents!\n",
|
||||
|
||||
/* Default Pad behavior, users can override by changing */
|
||||
"padOptions": {
|
||||
|
|
|
@ -10,15 +10,15 @@ var server;
|
|||
var serverName;
|
||||
|
||||
exports.createServer = function () {
|
||||
console.log("Report bugs at https://github.com/ether/etherpad-lite/issues")
|
||||
console.log("Report bugs at https://git.fuwafuwa.moe/fuwafuwa/etherpad-lite/issues")
|
||||
|
||||
serverName = "Etherpad " + settings.getGitCommit() + " (http://etherpad.org)";
|
||||
serverName = "Etherpad Lite " + settings.getGitCommit() + " (https://git.fuwafuwa.moe/fuwafuwa/etherpad-lite)";
|
||||
|
||||
console.log("Your Etherpad version is " + settings.getEpVersion() + " (" + settings.getGitCommit() + ")");
|
||||
console.log("Your Etherpad Lite version is " + settings.getEpVersion() + " (" + settings.getGitCommit() + ")");
|
||||
|
||||
exports.restartServer();
|
||||
|
||||
console.log("You can access your Etherpad instance at http://" + settings.ip + ":" + settings.port + "/");
|
||||
console.log("You can access your Etherpad Lite instance at http://" + settings.ip + ":" + settings.port + "/");
|
||||
if(!_.isEmpty(settings.users)){
|
||||
console.log("The plugin admin page is at http://" + settings.ip + ":" + settings.port + "/admin/plugins");
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "ep_etherpad-lite",
|
||||
"description": "A Etherpad based on node.js",
|
||||
"homepage": "http://etherpad.org",
|
||||
"description": "An Etherpad clone based on node.js",
|
||||
"homepage": "https://git.fuwafuwa.moe/fuwafuwa/etherpad-lite",
|
||||
"keywords": [
|
||||
"etherpad",
|
||||
"realtime",
|
||||
|
@ -24,6 +24,9 @@
|
|||
},
|
||||
{
|
||||
"name": "Peter Martischka"
|
||||
},
|
||||
{
|
||||
"name": "Les De Ridder"
|
||||
}
|
||||
],
|
||||
"dependencies": {
|
||||
|
@ -73,7 +76,7 @@
|
|||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "http://github.com/ether/etherpad-lite.git"
|
||||
"url": "https://git.fuwafuwa.moe/fuwafuwa/etherpad-lite.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "nyc mocha --timeout 5000 ../tests/backend/specs/api"
|
||||
|
|
Loading…
Reference in New Issue