From 1cd86f699a5b04b4931eb6591623b32e3e713fc2 Mon Sep 17 00:00:00 2001 From: Yash Maheshwari Date: Fri, 19 Jan 2024 22:19:34 +0530 Subject: [PATCH 1/2] Implemented: app version info support on settings page(#32) --- package-lock.json | 6 ++++++ package.json | 1 + vue.config.js | 2 ++ 3 files changed, 9 insertions(+) diff --git a/package-lock.json b/package-lock.json index 059f1f8..9fc7827 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,6 +10,7 @@ "dependencies": { "@capacitor/android": "^2.4.7", "@capacitor/core": "^2.4.7", + "@hotwax/app-version-info": "^1.0.0", "@hotwax/apps-theme": "^1.2.6", "@ionic/core": "^7.6.0", "@ionic/vue": "^7.6.0", @@ -2064,6 +2065,11 @@ "@hapi/hoek": "^9.0.0" } }, + "node_modules/@hotwax/app-version-info": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@hotwax/app-version-info/-/app-version-info-1.0.0.tgz", + "integrity": "sha512-PnJTqTbFvvl9N23yi1DjL4aNmTkpYFrayyoJyfH1qDJXADFbQ9kB7gJmKcfiPpyYMGR86Yf3Is5ct0+wReUJGQ==" + }, "node_modules/@hotwax/apps-theme": { "version": "1.2.6", "resolved": "https://registry.npmjs.org/@hotwax/apps-theme/-/apps-theme-1.2.6.tgz", diff --git a/package.json b/package.json index 0321130..a1cb765 100644 --- a/package.json +++ b/package.json @@ -14,6 +14,7 @@ "dependencies": { "@capacitor/android": "^2.4.7", "@capacitor/core": "^2.4.7", + "@hotwax/app-version-info": "^1.0.0", "@hotwax/apps-theme": "^1.2.6", "@ionic/core": "^7.6.0", "@ionic/vue": "^7.6.0", diff --git a/vue.config.js b/vue.config.js index 86a8782..6d6b94c 100644 --- a/vue.config.js +++ b/vue.config.js @@ -1,3 +1,5 @@ +require("@hotwax/app-version-info") + module.exports = { pluginOptions: { i18n: { From e6f17b3c936cd7be9952d62d09d8df0956bd3d28 Mon Sep 17 00:00:00 2001 From: Yash Maheshwari Date: Fri, 19 Jan 2024 22:20:46 +0530 Subject: [PATCH 2/2] Improved: styling for overline and imported apps-theme package(#32) --- src/main.ts | 1 + src/theme/variables.css | 9 --------- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/src/main.ts b/src/main.ts index aa19bf8..8b6dc1b 100644 --- a/src/main.ts +++ b/src/main.ts @@ -23,6 +23,7 @@ import "@ionic/vue/css/display.css"; /* Theme variables */ import "./theme/variables.css"; +import "@hotwax/apps-theme"; import i18n from "./i18n" import store from "./store" diff --git a/src/theme/variables.css b/src/theme/variables.css index b41b219..b149d27 100644 --- a/src/theme/variables.css +++ b/src/theme/variables.css @@ -243,15 +243,6 @@ http://ionicframework.com/docs/theming/ */ --ion-card-background: #1e1e1e; } - - .overline { - font-weight: 500 !important; - font-size: 10px !important; - line-height: 16px !important; - letter-spacing: 1.5px; - color: #666; - text-transform: uppercase !important; - } } .empty-state {