This commit is contained in:
Jeffrey Morgan 2015-02-27 23:22:40 -05:00
Родитель 43d12c65fc
Коммит ea31632588
5 изменённых файлов: 8 добавлений и 8 удалений

Просмотреть файл

@ -26,7 +26,7 @@ var windowOptions = {
'min-height': 700,
resizable: true,
frame: false,
show: true
show: false
};
app.on('activate-with-no-open-windows', function () {
@ -86,12 +86,12 @@ app.on('ready', function() {
console.log(e, releaseNotes, releaseName, releaseDate, updateURL);
console.log('Update downloaded.');
console.log(releaseNotes, releaseName, releaseDate, updateURL);
mainWindow.webContents.send('notify', 'window:update-available');
mainWindow.webContents.send('notify', 'application:update-available');
});
autoUpdater.on('error', function (e) {
autoUpdater.on('error', function (e, error) {
console.log('An error occured while checking for updates.');
console.log(e);
console.log(error);
});
ipc.on('command', function (event, arg) {

Просмотреть файл

@ -34,7 +34,7 @@ var options = {
appName: isBeta ? 'Kitematic (Beta)' : 'Kitematic',
name: 'Kitematic',
icon: isBeta ? './util/kitematic-beta.icns' : './util/kitematic.icns',
bundle: 'com.kitemaic.app'
bundle: 'com.kitematic.kitematic'
};
gulp.task('js', function () {

Просмотреть файл

@ -32,14 +32,14 @@ var Containers = React.createClass({
this.transitionTo('containerHome', {name: this.state.sorted[0].Name});
}
autoUpdater.checkForUpdates();
ipc.on('notify', function (message) {
if (message === 'window:update-available') {
ipc.on('notify', message => {
if (message === 'application:update-available') {
this.setState({
updateAvailable: true
});
}
});
autoUpdater.checkForUpdates();
},
componentDidUnmount: function () {
ContainerStore.removeListener(ContainerStore.SERVER_CONTAINER_EVENT, this.update);

Двоичные данные
util/kitematic-beta.icns

Двоичный файл не отображается.

Двоичные данные
util/kitematic.icns

Двоичный файл не отображается.