From 12bd1c21413936e56b8ee556ad22a15918cfe466 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Fri, 3 Sep 2021 23:49:29 +0100 Subject: [PATCH 01/10] :zap: Removes background in console art --- services/print-message.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/print-message.js b/services/print-message.js index b15d2899..a1017d8c 100644 --- a/services/print-message.js +++ b/services/print-message.js @@ -43,7 +43,7 @@ module.exports = (ip, port, isDocker) => { + `┗${line(75)}┛${chars.BR}${chars.BR}${chars.RESET}`; } // Make some sexy ascii art ;) - const ascii = `\x1b[40m${chars.CYAN}\n\n` + const ascii = `${chars.CYAN}\n\n` + ' ██████╗ █████╗ ███████╗██╗ ██╗██╗ ██╗\n' + ' ██╔══██╗██╔══██╗██╔════╝██║ ██║╚██╗ ██╔╝\n' + ' ██║ ██║███████║███████╗███████║ ╚████╔╝\n' From 51a45f2cc2aaf672ff1792dd49e4211f0432859c Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Fri, 3 Sep 2021 23:52:36 +0100 Subject: [PATCH 02/10] :wrench: Updates auto environmental variables --- .env | 28 +++++++++++++++++++++------- 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/.env b/.env index 10bad36e..034c259b 100644 --- a/.env +++ b/.env @@ -1,9 +1,23 @@ # Store environmental variables here. All variables are optional. +# Lines beginning in '#' are ignored. -# NODE_ENV=production # Can be either development, production or test -# PORT=4000 # The port to expose the running application on -# HOST=localhost # The host that Dashy is running on, domain or IP -# BASE_URL=./ # The default base path for serving up static assets -# VUE_APP_DOMAIN # Usually the same as BASE_URL, but accessible in frontend -# IS_DOCKER=true # Usually already set, should be true if running in container -# VUE_APP_VERSION # Again, set automatically using package.json during build +# Can be either development, production or test +# NODE_ENV=production + +# The port to expose the running application on +# PORT=4000 + +# The host that Dashy is running on, domain or IP +# HOST=localhost + +# The default base path for serving up static assets +# BASE_URL=./ + +# Usually the same as BASE_URL, but accessible in frontend +# VUE_APP_DOMAIN=https://dashy.to + +# Computed automatically on build. Indicates if running in container +# IS_DOCKER=true + +# Again, set automatically using package.json during build time +# VUE_APP_VERSION=1.7.0 From e65d4479eed30f48d17ef69da8903d3387cb0e5d Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 4 Sep 2021 14:02:16 +0100 Subject: [PATCH 03/10] :lipstick: Re: #200 - Icon image assets max height --- src/components/LinkItems/ItemIcon.vue | 18 +++++++++++++----- src/styles/dimensions.scss | 2 +- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/src/components/LinkItems/ItemIcon.vue b/src/components/LinkItems/ItemIcon.vue index b4001824..c4b503ae 100644 --- a/src/components/LinkItems/ItemIcon.vue +++ b/src/components/LinkItems/ItemIcon.vue @@ -167,15 +167,23 @@ export default {