diff --git a/README.md b/README.md
index d352503..d55724b 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,13 @@
-Yet another look into covid-19 cases in nepal
+Yet another look into covid-19 cases inside nepal
## Introduction
-**covidnepal** is just another try to look into covidcases inside Nepal. It was made to cover reliable and more informational data as possible inside a same application. It depends on reliable API (after spending a months for it). This application uses PWA (Progressive Web App) technology, meaning it could be installed inside the browser easily like a mobile application and later could be run like an application. This application also follows **neumorphic** design style for UI & smoother animations for better UX.
+**covidnepal** is just "another try" to look into covidcases inside Nepal. It was made to cover reliable, detailed and more informational data as possible inside a same application. It depends on reliable API (after spending months for it). This application uses PWA (Progressive Web App) technology, meaning it could be installed inside the browser easily like a mobile application and later could be run like an application. This application also follows **neumorphic** design style for UI & smoother animations for better UX.
### Features
@@ -22,9 +22,9 @@
### Links
-Go to website | covidnepal.now.sh
-Go to telegram bot | t.me/covidnepal_bot
-Go to pwa store | progressiveapp.store/mypwa/covidnepal
+website > covidnepal.now.sh
+telegram bot > t.me/covidnepal_bot
+pwa store > progressiveapp.store/mypwa/covidnepal
## Prerequisites
@@ -61,14 +61,13 @@
## Installation
-Go to root folder & install the packages using: `yarn install`
+Go to root folder & install the required packages using: `yarn install`
## Development Setups
- To compiles and hot-reload for every changes: `yarn serve`
+ To compiles & hot-reload for every changes: `yarn serve`
To compiles & minify for production: `yarn build`
-
-### Made with ❤️ in Nepal.
\ No newline at end of file
+#### Contributions are welcome • Made with ❤️ in Nepal.
\ No newline at end of file
diff --git a/package.json b/package.json
index 96b8bb5..898a74a 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "covidnepal",
"description": "yet another look at covid-19 cases in nepal",
"author": "sidbelbase",
- "version": "1.1.9",
+ "version": "1.2.0",
"private": true,
"scripts": {
"start": "vue-cli-service serve",
diff --git a/src/reg-service-worker.js b/src/reg-service-worker.js
index 990aada..8a8c5e3 100644
--- a/src/reg-service-worker.js
+++ b/src/reg-service-worker.js
@@ -3,28 +3,28 @@ import { register } from 'register-service-worker';
if (process.env.NODE_ENV === 'production') {
register(`${process.env.BASE_URL}service-worker.js`, {
ready() {
- console.log('Application is now started downloading...');
+ console.log('covidnepal is registering...');
},
registered(registration) {
- console.log('Service worker has been registered.');
+ console.log('covidnepal has been registered.');
setInterval(() => {
registration.update();
}, 1000 * 60 * 20);
},
cached() {
- console.log('Content has been cached for offline use.');
+ console.log('covidnepal has been cached for offline use.');
},
updatefound() {
console.log('New content is downloading.');
},
updated(registration) {
- console.log('New content is available; please refresh.');
+ console.log('New updates available; please update.');
document.dispatchEvent(
new CustomEvent('swUpdated', { detail: registration })
);
},
offline() {
- console.log('No internet connection found. App is running in offline mode.');
+ console.log('No internet connection found. covidnepal is running in offline mode.');
},
error(error) {
console.error('Error during service worker registration:', error);