From b73acc88a7e940b5ff034ac0f62a11e6782bba9a Mon Sep 17 00:00:00 2001 From: probablycorey Date: Tue, 25 Feb 2014 20:40:03 -0800 Subject: [PATCH] Send release notes along with releaseName --- src/browser/atom-application.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/browser/atom-application.coffee b/src/browser/atom-application.coffee index 1729d4fea..02c67140b 100644 --- a/src/browser/atom-application.coffee +++ b/src/browser/atom-application.coffee @@ -141,7 +141,7 @@ class AtomApplication @applicationMenu.showCheckForUpdateItem(true) autoUpdater.on 'update-downloaded', (event, releaseNotes, releaseName, releaseDate, releaseURL) => - atomWindow.sendCommand('window:update-available', releaseName) for atomWindow in @windows + atomWindow.sendCommand('window:update-available', [releaseName, releaseNotes]) for atomWindow in @windows @applicationMenu.showInstallUpdateItem(true) @applicationMenu.showCheckForUpdateItem(false) @updateVersion = releaseName