Bump v0.10.0.

This commit is contained in:
Cheng Zhao 2014-02-24 05:30:52 +00:00
parent 7d93b4a48f
commit 90cc1a7062
5 changed files with 11 additions and 10 deletions

View file

@ -32,7 +32,8 @@ ipc.on('echo', function(ev, pid, rid, msg) {
ev.returnValue = msg;
});
process.on('uncaughtException', function() {
process.on('uncaughtException', function(error) {
console.log(error);
window.openDevTools();
});
@ -133,7 +134,7 @@ app.on('ready', function() {
app.setApplicationMenu(menu);
// Test if using protocol module would crash.
require('protocol').registerProtocol('test-if-crashes', function() {});
// require('protocol').registerProtocol('test-if-crashes', function() {});
window = new BrowserWindow({
title: 'atom-shell tests',