version bump

This commit is contained in:
Jeffrey Morgan 2015-05-08 20:53:31 -07:00
parent 34f6b7169d
commit c75bc2188e
3 changed files with 6 additions and 5 deletions

View File

@ -1,6 +1,6 @@
{
"name": "Kitematic",
"version": "0.5.23",
"version": "0.5.24",
"author": "Kitematic",
"description": "Simple Docker Container management for Mac OS X.",
"homepage": "https://kitematic.com/",
@ -47,7 +47,7 @@
"<rootDir>/node_modules/source-map-support"
]
},
"docker-version": "1.6.0",
"docker-version": "1.6.1",
"docker-machine-version": "0.2.0",
"electron-version": "0.24.0",
"virtualbox-version": "4.3.26",

View File

@ -71,8 +71,6 @@ var Containers = React.createClass({
this.context.router.transitionTo('containerHome', {name: name});
} else if (status === 'pending' && ContainerStore.pending()) {
this.context.router.transitionTo('pull');
} else if (status === 'destroy') {
this.onDestroy();
}
},
handleScroll: function (e) {

View File

@ -63,7 +63,10 @@ var _steps = [{
run: Promise.coroutine(function* (progressCallback) {
setupUtil.simulateProgress(this.seconds, progressCallback);
var exists = yield machine.exists();
if (!exists) {
if (!exists || (yield machine.state()) === 'Error') {
if ((yield machine.state()) === 'Error') {
yield machine.rm();
}
yield machine.create();
if(util.isWindows()) {
let home = util.home();