diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index d320c7b4..f0ffa193 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## ⚡️ 1.6.8 - Improved Loading Experience [PR #183](https://github.com/Lissy93/dashy/pull/183) +- During app initialization, show the build progress and status message +- While requests are being made, show loader at top of screen +- Also adds some UI improvements to Workspace view + ## ⚡️ 1.6.7 - Option for non-SSL status checks plus minor things [PR #182](https://github.com/Lissy93/dashy/pull/182) - Adds an option for user to use status checks with non-HTTPS services, Re: #181 - Updates the .env template, plus the variables used in the server diff --git a/package.json b/package.json index de8b201b..2eca2612 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "Dashy", - "version": "1.6.7", + "version": "1.6.8", "license": "MIT", "main": "server", "scripts": { @@ -27,6 +27,7 @@ "keycloak-js": "^15.0.2", "register-service-worker": "^1.6.2", "remedial": "^1.0.8", + "rsup-progress": "^2.0.4", "serve-static": "^1.14.1", "v-jsoneditor": "^1.4.2", "v-tooltip": "^2.1.3", diff --git a/public/default.html b/public/default.html index b42dba7a..aaedff4f 100644 --- a/public/default.html +++ b/public/default.html @@ -1,6 +1,7 @@ + + - Dashy @@ -12,6 +13,7 @@ + @@ -29,9 +31,16 @@ Dashy Dashy + + +
+
+
+ +
-

Initializing

- +

Initializing

+ @@ -39,7 +48,10 @@
+

This may take a minute or two

+ diff --git a/src/assets/locales/en.json b/src/assets/locales/en.json index 058ed69c..2fd79825 100644 --- a/src/assets/locales/en.json +++ b/src/assets/locales/en.json @@ -60,6 +60,11 @@ "css-note-l2": "Styles overrides are only stored locally, so it is recommended to make a copy of your CSS.", "css-note-l3": "To remove all custom styles, delete the contents and hit Save Changes" }, + "alternate-views": { + "default": "Default", + "workspace": "Workspace", + "minimal": "Minimal" + }, "settings": { "theme-label": "Theme", "layout-label": "Layout", diff --git a/src/components/Configuration/AppVersion.vue b/src/components/Configuration/AppVersion.vue index 68941361..973cbb4f 100644 --- a/src/components/Configuration/AppVersion.vue +++ b/src/components/Configuration/AppVersion.vue @@ -31,6 +31,7 @@