diff --git a/package.json b/package.json
index db0d6b7..4b9b7c0 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "sqliteviz",
- "version": "0.11.0",
+ "version": "0.13.0",
"license": "Apache-2.0",
"private": true,
"scripts": {
diff --git a/src/views/Main/AppDiagnosticInfo.vue b/src/views/Main/AppDiagnosticInfo.vue
new file mode 100644
index 0000000..01ad76a
--- /dev/null
+++ b/src/views/Main/AppDiagnosticInfo.vue
@@ -0,0 +1,82 @@
+
+
+
![]()
+
+
+
+
+ {{item.name}}
+
+
+ {{opt}}
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/Main/MainMenu.vue b/src/views/Main/MainMenu.vue
index 3d19255..5b65fc0 100644
--- a/src/views/Main/MainMenu.vue
+++ b/src/views/Main/MainMenu.vue
@@ -5,7 +5,7 @@
My queries
Help
-
+
@@ -64,12 +65,14 @@
import TextField from '@/components/TextField'
import CloseIcon from '@/components/svg/close'
import storedQueries from '@/lib/storedQueries'
+import AppDiagnosticInfo from './AppDiagnosticInfo'
export default {
name: 'MainMenu',
components: {
TextField,
- CloseIcon
+ CloseIcon,
+ AppDiagnosticInfo
},
data () {
return {
@@ -213,7 +216,7 @@ nav {
top: 0;
left: 0;
width: 100vw;
- padding: 0 52px;
+ padding: 0 16px 0 52px;
z-index: 999;
}
a {
@@ -238,4 +241,8 @@ button {
#save-note img {
margin: -3px 6px 0 0;
}
+
+#nav-buttons {
+ display: flex;
+}