Skip to content

Commit

Permalink
version bump v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
manojVivek committed Jun 24, 2020
1 parent 143c4aa commit 5ec8bf6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions desktop-app/app/components/StatusBar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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...';
Expand All @@ -40,7 +40,7 @@ const AppUpdaterStatusInfoSection = () => {
break;
default:
label = null;
break;
break;
}
if (label == null) return null;
return (
Expand All @@ -51,8 +51,8 @@ const AppUpdaterStatusInfoSection = () => {
</span>
</div>
</div>
)
}
);
};

const StatusBar = ({visible}) => {
if (!visible) {
Expand Down
2 changes: 1 addition & 1 deletion desktop-app/package.json
Original file line number Diff line number Diff line change
@@ -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\"",
Expand Down

0 comments on commit 5ec8bf6

Please sign in to comment.