This commit is contained in:
Artem Chivchalov
2016-11-15 18:39:26 +03:00
parent c03865868e
commit 32dc67601d
2 changed files with 5 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
#### 2.1.0
* Added [Steam Workshop](http://steamcommunity.com/app/464350/workshop/) support for mods and bot AI scripts.
Use your Steam client server launcher to submit npm packages to the Workshop.
#### 2.0.0 #### 2.0.0
* **Breaking change:** replaced all callback methods in mods `config` object with events. See example mods to learn more. * **Breaking change:** replaced all callback methods in mods `config` object with events. See example mods to learn more.
* Introduced autonomous NPC bot players system, see [README](https://github.com/screeps/screeps#npc-bots). * Introduced autonomous NPC bot players system, see [README](https://github.com/screeps/screeps#npc-bots).

View File

@@ -1,6 +1,6 @@
{ {
"name": "screeps", "name": "screeps",
"version": "2.0.1", "version": "2.1.0",
"description": "A standalone server for programming game Screeps", "description": "A standalone server for programming game Screeps",
"main": "package.json", "main": "package.json",
"bin": { "bin": {
@@ -17,7 +17,7 @@
"@screeps/common": "2.0.0", "@screeps/common": "2.0.0",
"@screeps/driver": "2.0.0", "@screeps/driver": "2.0.0",
"@screeps/engine": "2.0.0", "@screeps/engine": "2.0.0",
"@screeps/launcher": "2.0.0", "@screeps/launcher": "2.1.0",
"@screeps/pathfinding": "0.4.16", "@screeps/pathfinding": "0.4.16",
"@screeps/storage": "2.0.1" "@screeps/storage": "2.0.1"
}, },