This commit is contained in:
Artem Chivchalov
2016-11-14 17:42:28 +03:00
parent 0f44576192
commit 32856ae09a
2 changed files with 13 additions and 7 deletions

View File

@@ -1,3 +1,9 @@
#### 2.0.0
* **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).
* Fixed a bug with creeps unable to move in newly generated rooms.
* New users are created with 100 CPU limit.
#### 1.0.7 #### 1.0.7
* `config.cli.createSandbox` is deprecated now, use `config.cli.onCliSandbox` instead. * `config.cli.createSandbox` is deprecated now, use `config.cli.onCliSandbox` instead.
* Fixed permissions for scripts in `node_modules/.hooks` after running `screeps init`. * Fixed permissions for scripts in `node_modules/.hooks` after running `screeps init`.

View File

@@ -1,6 +1,6 @@
{ {
"name": "screeps", "name": "screeps",
"version": "1.0.9", "version": "2.0.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": {
@@ -13,13 +13,13 @@
"url": "https://github.com/screeps/screeps.git" "url": "https://github.com/screeps/screeps.git"
}, },
"dependencies": { "dependencies": {
"@screeps/backend": "1.0.3", "@screeps/backend": "2.0.0",
"@screeps/common": "1.0.1", "@screeps/common": "2.0.0",
"@screeps/driver": "1.0.1", "@screeps/driver": "2.0.0",
"@screeps/engine": "1.0.3", "@screeps/engine": "2.0.0",
"@screeps/launcher": "1.0.5", "@screeps/launcher": "2.0.0",
"@screeps/pathfinding": "0.4.16", "@screeps/pathfinding": "0.4.16",
"@screeps/storage": "1.0.2" "@screeps/storage": "2.0.0"
}, },
"engines": { "engines": {
"node": ">=6.5.0", "node": ">=6.5.0",