diff --git a/NUXT/pages/about.vue b/NUXT/pages/about.vue index 1a990e0..5cf4f33 100644 --- a/NUXT/pages/about.vue +++ b/NUXT/pages/about.vue @@ -6,7 +6,17 @@ mdi-github mdi-discord -

App Version: {{ version.substring(0, 7) }}

+ +

App Information

+
App Version: {{ version.substring(0, 7) }}
+ +

Device Information

+
Platform: {{ deviceInfo.platform }}
+
OS: {{ deviceInfo.operatingSystem }}
+
OS Version: {{ deviceInfo.osVersion }}
+
Model: {{ deviceInfo.model }}
+
Manufacturer: {{ deviceInfo.manufacturer }}
+
Virtual: {{ deviceInfo.isVirtual }}
@@ -18,17 +28,24 @@ diff --git a/package.json b/package.json index 7d271eb..cacc6ce 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "@capacitor/app": "^1.1.1", "@capacitor/browser": "^1.0.7", "@capacitor/cli": "^3.4.0", - "@capacitor/core": "^3.4.0" + "@capacitor/core": "^3.4.0", + "@capacitor/device": "^1.1.2" } }