diff --git a/REMEMBER.txt b/REMEMBER.txt new file mode 100644 index 0000000..578886a --- /dev/null +++ b/REMEMBER.txt @@ -0,0 +1,2 @@ +npm install @capacitor/assets --save-dev +npx capacitor-assets generate \ No newline at end of file diff --git a/icons/icon-128.webp b/icons/icon-128.webp new file mode 100644 index 0000000..a8aa789 Binary files /dev/null and b/icons/icon-128.webp differ diff --git a/icons/icon-192.webp b/icons/icon-192.webp new file mode 100644 index 0000000..9896b8c Binary files /dev/null and b/icons/icon-192.webp differ diff --git a/icons/icon-256.webp b/icons/icon-256.webp new file mode 100644 index 0000000..eac713e Binary files /dev/null and b/icons/icon-256.webp differ diff --git a/icons/icon-48.webp b/icons/icon-48.webp new file mode 100644 index 0000000..35c2fe1 Binary files /dev/null and b/icons/icon-48.webp differ diff --git a/icons/icon-512.webp b/icons/icon-512.webp new file mode 100644 index 0000000..e6b9713 Binary files /dev/null and b/icons/icon-512.webp differ diff --git a/icons/icon-72.webp b/icons/icon-72.webp new file mode 100644 index 0000000..ca9ab0a Binary files /dev/null and b/icons/icon-72.webp differ diff --git a/icons/icon-96.webp b/icons/icon-96.webp new file mode 100644 index 0000000..820a1f0 Binary files /dev/null and b/icons/icon-96.webp differ diff --git a/package.json b/package.json index e3ce09c..c82467f 100644 --- a/package.json +++ b/package.json @@ -41,6 +41,7 @@ "@angular/compiler": "^14.0.0", "@angular/compiler-cli": "^14.0.0", "@angular/language-service": "^14.0.0", + "@capacitor/assets": "^2.0.4", "@capacitor/cli": "^5.0.0", "@ionic/angular-toolkit": "^6.0.0", "@types/jasmine": "~3.6.0", diff --git a/src/app/pages/inbox/inbox.page.ts b/src/app/pages/inbox/inbox.page.ts index 0eabd9d..665e645 100644 --- a/src/app/pages/inbox/inbox.page.ts +++ b/src/app/pages/inbox/inbox.page.ts @@ -10,7 +10,7 @@ import {SessionDataProviderService} from "../../store/session-data-provider.serv }) export class InboxPage implements OnInit { - tabs: any = 'chat'; + tabs: any = 'tasks'; constructor( private router: Router, diff --git a/src/app/pages/login/login.page.ts b/src/app/pages/login/login.page.ts index 2e1308d..eb2eb35 100644 --- a/src/app/pages/login/login.page.ts +++ b/src/app/pages/login/login.page.ts @@ -41,7 +41,7 @@ getBlogData(){ username: string, password: string, sessionid: string }; startLogin() { - this.username='ses66181+1@gmail.com'; + this.username='ses66181+6018@gmail.com'; this.password='may12002'; if (this.username == null || this.username == '' || this.validateEmail(this.username) == false || this.password == null || this.password == '') { this.showAlert('Invalid Login', 'Enter username(email) and password to login'); diff --git a/src/manifest.webmanifest b/src/manifest.webmanifest new file mode 100644 index 0000000..37dcbb3 --- /dev/null +++ b/src/manifest.webmanifest @@ -0,0 +1,46 @@ +{ + "icons": [ + { + "src": "../../icons/icon-48.webp", + "type": "image/png", + "sizes": "48x48", + "purpose": "any maskable" + }, + { + "src": "../../icons/icon-72.webp", + "type": "image/png", + "sizes": "72x72", + "purpose": "any maskable" + }, + { + "src": "../../icons/icon-96.webp", + "type": "image/png", + "sizes": "96x96", + "purpose": "any maskable" + }, + { + "src": "../../icons/icon-128.webp", + "type": "image/png", + "sizes": "128x128", + "purpose": "any maskable" + }, + { + "src": "../../icons/icon-192.webp", + "type": "image/png", + "sizes": "192x192", + "purpose": "any maskable" + }, + { + "src": "../../icons/icon-256.webp", + "type": "image/png", + "sizes": "256x256", + "purpose": "any maskable" + }, + { + "src": "../../icons/icon-512.webp", + "type": "image/png", + "sizes": "512x512", + "purpose": "any maskable" + } + ] +}