diff --git a/documentation/CHANGELOG.md b/documentation/CHANGELOG.md index b0f24f0..64d674f 100644 --- a/documentation/CHANGELOG.md +++ b/documentation/CHANGELOG.md @@ -128,4 +128,7 @@ * Uniform command scheme where green is "GO" and red is "STOP" * Serial bots no longer show up unless they're connected - \ No newline at end of file +## 1.8.1 (2017-11-08) + * Fixed Conductor "Add Player" functionality + * Fixed Remote bot crash issue + * Disabled editing or sending text when not connected \ No newline at end of file diff --git a/package.json b/package.json index 49c3fd1..c72f0e6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "machine-collaboration-utility", - "version": "1.8.0", + "version": "1.8.1", "private": true, "main": "server/launchElectron.js", "build": { @@ -15,10 +15,12 @@ "start:headless-js": "BROWSER=NONE PORT=3000 react-scripts start", "start:electron": "nodemon -w server -w bots node_modules/.bin/electron .", "start:css": "nodemon -e scss -w styles -x 'npm run build:css'", - "build": "npm run build:cleanup && npm run build:css && npm run build:js && mv build server/build", + "build": + "npm run build:cleanup && npm run build:css && npm run build:js && mv build server/build", "build:js": "react-scripts build", "build:cleanup": "rm -rf build && rm -rf server/build", - "build:css": "npm run prebuild:css && postcss src/main.css --use autoprefixer -d src/", + "build:css": + "npm run prebuild:css && postcss src/main.css --use autoprefixer -d src/", "package": "npm run build && electron-rebuild && electron-builder", "prebuild:css": "node-sass styles/main.scss -o src/", "test": "node node_modules/gulp/bin/gulp.js test"