From 2ae84ab73e84260218aa0d59aa5d3ccd9a3da6a2 Mon Sep 17 00:00:00 2001 From: Max G Date: Fri, 3 Jul 2020 03:25:38 +0000 Subject: [PATCH] Update * Added more version icons * Added working sign to notes when archived or tagged * Big sexy marketing update * Clicking Tags now opens them in their tag category --- client/src/components/GlobalSiteMenu.vue | 2 +- .../src/components/NoteTitleDisplayCard.vue | 17 +- client/src/pages/HomePage.vue | 280 ++++++++++++------ client/src/pages/NotesPage.vue | 1 + server/models/Note.js | 2 +- 5 files changed, 204 insertions(+), 98 deletions(-) diff --git a/client/src/components/GlobalSiteMenu.vue b/client/src/components/GlobalSiteMenu.vue index d699082..1f2ff4e 100644 --- a/client/src/components/GlobalSiteMenu.vue +++ b/client/src/components/GlobalSiteMenu.vue @@ -385,7 +385,7 @@ location.reload(true) }, getVersionIcon(){ - const icons = ['cat','crow','dog','dove','dragon','fish','frog','hippo','horse','kiwi bird','otter','spider', 'smile', 'robot', 'hat wizard', 'microchip', 'atom', 'grin tongue squint', 'radiation'] + const icons = ['cat','crow','dog','dove','dragon','fish','frog','hippo','horse','kiwi bird','otter','spider', 'smile', 'robot', 'hat wizard', 'microchip', 'atom', 'grin tongue squint', 'radiation', 'ghost', 'dna', 'burn', 'brain', 'moon', 'torii gate'] const index = ( parseInt(this.version.replace(/\./g,'')) % (icons.length)) return icons[index] diff --git a/client/src/components/NoteTitleDisplayCard.vue b/client/src/components/NoteTitleDisplayCard.vue index a011c0d..a527bdb 100644 --- a/client/src/components/NoteTitleDisplayCard.vue +++ b/client/src/components/NoteTitleDisplayCard.vue @@ -1,7 +1,7 @@