From 8b8ffaa7a0c099ac294a91a817049b9201c09d7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20B=C3=BCchele?= Date: Fri, 10 Aug 2018 09:42:20 -0700 Subject: [PATCH] missing UI renames Summary: Rename app title and update notification to "Flipper" Reviewed By: passy Differential Revision: D9270088 fbshipit-source-id: 4e49e8d553fdd6b98da599be3ce18b4daf412cb6 --- src/chrome/AutoUpdateVersion.js | 2 +- static/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/chrome/AutoUpdateVersion.js b/src/chrome/AutoUpdateVersion.js index 148fca605..cf32d1f49 100644 --- a/src/chrome/AutoUpdateVersion.js +++ b/src/chrome/AutoUpdateVersion.js @@ -51,7 +51,7 @@ export default class AutoUpdateVersion extends Component<{}, State> { this.setState({updater: 'update-downloaded'}); const notification = new window.Notification('Update available', { - body: 'Restart Sonar to update to the latest version.', + body: 'Restart Flipper to update to the latest version.', requireInteraction: true, }); notification.onclick = remote.autoUpdater.quitAndInstall; diff --git a/static/index.js b/static/index.js index 9f3cae33c..d99157783 100644 --- a/static/index.js +++ b/static/index.js @@ -146,7 +146,7 @@ function tryCreateWindow() { if (appReady && pluginsCompiled) { win = new BrowserWindow({ show: false, - title: 'Sonar', + title: 'Flipper', width: config.lastWindowPosition.width || 1400, height: config.lastWindowPosition.height || 1000, minWidth: 800,