diff --git a/desktop-app/app/components/StatusBar/index.js b/desktop-app/app/components/StatusBar/index.js index 8e4b30d7e..80ef7a689 100644 --- a/desktop-app/app/components/StatusBar/index.js +++ b/desktop-app/app/components/StatusBar/index.js @@ -25,12 +25,12 @@ const AppUpdaterStatusInfoSection = () => { }, []); let label = ''; - switch(status) { + switch (status) { case 'checking': label = 'Update Info: Checking for Updates...'; break; case 'noUpdate': - label = 'Update Info: No Updates'; + label = 'Update Info: The App is up to date!'; break; case 'downloading': label = 'Update Info: Downloading Update...'; @@ -40,7 +40,7 @@ const AppUpdaterStatusInfoSection = () => { break; default: label = null; - break; + break; } if (label == null) return null; return ( @@ -51,8 +51,8 @@ const AppUpdaterStatusInfoSection = () => { - ) -} + ); +}; const StatusBar = ({visible}) => { if (!visible) { diff --git a/desktop-app/package.json b/desktop-app/package.json index 700d02efe..9983d5e2e 100644 --- a/desktop-app/package.json +++ b/desktop-app/package.json @@ -1,7 +1,7 @@ { "name": "Responsively-App", "productName": "ResponsivelyApp", - "version": "0.3.0", + "version": "0.4.0", "description": "A developer-friendly browser for developing responsive web apps", "scripts": { "build": "concurrently \"yarn build-main\" \"yarn build-renderer\"",