craftyjs becomes flying-squid (due to name conflict)

This commit is contained in:
Romain Beaumont 2015-08-30 19:49:46 +02:00
parent 8c06acf155
commit 94926df8da
4 changed files with 18 additions and 18 deletions

View file

@ -1,11 +1,11 @@
Craftyjs
Flying-squid
================
[![Join the chat at https://gitter.im/mhsjlw/craftyjs](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/mhsjlw/craftyjs?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/mhsjlw/craftyjs/blob/master/LICENSE)
[![Join the chat at https://gitter.im/mhsjlw/flying-squid](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/mhsjlw/flying-squid?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
[![Minecraft version](https://img.shields.io/badge/minecraft%20version-1.8-brightgreen.svg)](http://wiki.vg/Protocol)
[![Github issues](https://img.shields.io/github/issues/mhsjlw/craftyjs.svg)](https://img.shields.io/github/issues/mhsjlw/craftyjs.svg)
[![Build Status](https://img.shields.io/circleci/project/mhsjlw/craftyjs/master.svg)](https://circleci.com/gh/mhsjlw/craftyjs) [![Gratipay](https://img.shields.io/gratipay/mhsjlw.svg)](https://gratipay.com/~mhsjlw/)
[![Github issues](https://img.shields.io/github/issues/mhsjlw/flying-squid.svg)](https://img.shields.io/github/issues/mhsjlw/flying-squid.svg)
[![Build Status](https://img.shields.io/circleci/project/mhsjlw/flying-squid/master.svg)](https://circleci.com/gh/mhsjlw/flying-squid) [![Gratipay](https://img.shields.io/gratipay/mhsjlw.svg)](https://gratipay.com/~mhsjlw/)
A semi-functional minecraft server in Node.js
@ -18,7 +18,7 @@ A semi-functional minecraft server in Node.js
* Player movement
## Test server!
We created an auto updating test server (see the repository [here](https://github.com/mhsjlw/auto-craftyjs))
We created an auto updating test server (see the repository [here](https://github.com/mhsjlw/autonomous-squid))
Connection address: 45.55.62.8 (Port 25565, default port)
@ -28,7 +28,7 @@ Before running or building it is recommended that you configure the server in co
npm install
node app.js
Or try our autoupdating craftyjs server [auto-craftyjs](https://github.com/mhsjlw/auto-craftyjs)
Or try our autoupdating flying-squid server [autonomous-squid](https://github.com/mhsjlw/autonomous-squid)
## Documentation
Documentation for how to operate and how to customize your server are coming soon!

View file

@ -1,5 +1,5 @@
{
"help": "Available commands: /version and /bug",
"version": "This server is running craftyjs version 0.1.0",
"bug": "Report bugs / issues here: https://github.com/mhsjlw/craftyjs/issues"
"version": "This server is running flying-squid version 0.1.0",
"bug": "Report bugs / issues here: https://github.com/mhsjlw/flying-squid/issues"
}

View file

@ -4,7 +4,7 @@
- [API](#api)
- [Classes](#classes)
- [CraftyJS.Entity](#craftyjsentity)
- [Flying-squid.Entity](#flying-squidentity)
- [entity.id](#entityid)
- [entity.type](#entitytype)
- [entity.username](#entityusername)
@ -28,7 +28,7 @@
- [entity.food](#entityfood)
- [entity.player](#entityplayer)
- [MCServer](#mcserver)
- [CraftyJS.createMCServer(options)](#craftyjscreatemcserveroptions)
- [Flying-squid.createMCServer(options)](#flying-squidcreatemcserveroptions)
- [Properties](#properties)
- [serv.entityMaxId](#serventitymaxid)
- [serv.players](#servplayers)
@ -74,7 +74,7 @@
## Classes
### CraftyJS.Entity
### Flying-squid.Entity
Entities represent players, mobs, and objects. They are emitted
in many events, and you can access your own entity with `bot.entity`.
@ -165,7 +165,7 @@ The player
## MCServer
### CraftyJS.createMCServer(options)
### Flying-squid.createMCServer(options)
Create and return an instance of the class MCServer.
@ -227,7 +227,7 @@ broadcasts `message` to all the players with the optional `color`.
#### player.entity
The entity of the player, of type `CraftyJS.Entity`
The entity of the player, of type `Flying-squid.Entity`
#### player.username

View file

@ -1,5 +1,5 @@
{
"name": "craftyjs",
"name": "flying-squid",
"description": "A minecraft server written in node.js",
"version": "0.1.0",
"main": "index.js",
@ -11,7 +11,7 @@
}
],
"bin": {
"craftyjs": "./app.js"
"flying-squid": "./app.js"
},
"scripts": {
"test": "mocha --reporter spec"
@ -34,10 +34,10 @@
},
"repository": {
"type": "git",
"url": "git://github.com/mhsjlw/craftyjs.git"
"url": "git://github.com/mhsjlw/flying-squid.git"
},
"bugs": {
"url": "http://github.com/mhsjlw/craftyjs/issues"
"url": "http://github.com/mhsjlw/flying-squid/issues"
},
"devDependencies": {
"doctoc": "^0.15.0",