version bump v0.4.0

This commit is contained in:
Manoj Vivek 2020-06-24 11:05:28 +05:30
parent 143c4aa654
commit 5ec8bf62b4
2 changed files with 6 additions and 6 deletions

View file

@ -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 = () => {
</span>
</div>
</div>
)
}
);
};
const StatusBar = ({visible}) => {
if (!visible) {

View file

@ -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\"",