From f12e3b2b8e8e9393f50e0842dd1a444bf01e5eb9 Mon Sep 17 00:00:00 2001 From: Gabriel Pastori <58153955+gabrielpastori1@users.noreply.github.com> Date: Tue, 14 Nov 2023 13:36:42 -0300 Subject: [PATCH] add about --- package.json | 2 +- src/components/modal/About.vue | 78 +++++++++++++++++++++++++++++++ src/components/modal/Settings.vue | 38 +++++++++------ src/layouts/default/AppBar.vue | 13 ++++-- src/store/app.js | 11 ++++- 5 files changed, 121 insertions(+), 21 deletions(-) create mode 100644 src/components/modal/About.vue diff --git a/package.json b/package.json index 478d596..d80e087 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "evolution-manager", - "version": "0.2.7", + "version": "0.2.8", "main": "dist", "scripts": { "dev": "vite", diff --git a/src/components/modal/About.vue b/src/components/modal/About.vue new file mode 100644 index 0000000..caf2d25 --- /dev/null +++ b/src/components/modal/About.vue @@ -0,0 +1,78 @@ + + + diff --git a/src/components/modal/Settings.vue b/src/components/modal/Settings.vue index 10c97c3..b1071a9 100644 --- a/src/components/modal/Settings.vue +++ b/src/components/modal/Settings.vue @@ -13,11 +13,7 @@ label="URL" required outlined - :rules="[ - // regex to verify is has http or https - (v) => - new RegExp('^(http|https)://', 'i').test(v) || 'URL inválida', - ]" + :rules="hostRules" /> - - Cancel - + Sobre esse Manager + diff --git a/src/layouts/default/AppBar.vue b/src/layouts/default/AppBar.vue index 55472af..08e94eb 100644 --- a/src/layouts/default/AppBar.vue +++ b/src/layouts/default/AppBar.vue @@ -1,15 +1,20 @@