diff --git a/CHANGELOG.md b/CHANGELOG.md index c2aa991..207d4a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,15 @@ -## v0.08 (dev) -* Added SECRET field to register page as a simple security measure. -* dashCard links now use server IP. -* Added option to hide containers. -* Added 'Reset View' option. -* Removed the VPN, Firewall, and VNC placeholders. +## v0.08 (Dec 15th 2023) +* Updates to compose file and instructions from [steveiliop56](https://github.com/steveiliop56) +* Added SECRET field to compose file as a basic security measure. +* Visibility button to hide containers or reset view. +* Container link now uses server IP address. +* More compact container card, with style options planned. +* Improved log view. +* Removed VPN, Firewall, and VNC buttons. +* Updated dependencies (Sequelize 6.35.2) +* Fixed web pages not using the "public" static folder. +* Small tweaks to router. +* Replaced the default icon shown for missing icons (docker.png). ## v0.07 (Dec 8th 2023) * View container logs. diff --git a/README.md b/README.md index 1152a9c..7ba807c 100644 --- a/README.md +++ b/README.md @@ -4,13 +4,12 @@ DweebUI is a simple Docker web interface created using Javascript, Node.JS, and Pre-Pre-Pre-Pre-Pre Alpha v0.08 ( :fire: Experimental. Don't install on any servers you care about :fire: ) [](https://github.com/lllllllillllllillll) -[](https://github.com/lllllllillllllillll/DweebUI/blob/main/LICENSE) [](https://github.com/lllllllillllllillll) [](https://hub.docker.com/repository/docker/lllllllillllllillll/dweebui) +[](https://github.com/lllllllillllllillll/DweebUI/blob/main/LICENSE) -* This is a personal project that I decided to share. -* This is the first project I've ever released and I'm sure it's full of plenty of bugs and mistakes. +* This is a personal project that I decided to share. I'm sure it has plenty of bugs and mistakes. * I haven't used Github very much and I'm still new to Javascript. * I probably should have waited a lot longer to share this :| @@ -34,7 +33,7 @@ Pre-Pre-Pre-Pre-Pre Alpha v0.08 ( :fire: Experimental. Don't install on any serv * [x] Templates.json maintains compatability with Portainer, allowing you to use the template without needing to use DweebUI. * [x] Automatically persists data in docker volumes if bind mount isn't used. * [ ] Preset variables (planned). -* [ ] Offline/Local Only (planned). +* [ ] Offline/Local Icons (planned). ## Setup @@ -46,7 +45,7 @@ services: dweebui: container_name: dweebui - image: lllllllillllllillll/dweebui:v0.08-dev + image: lllllllillllllillll/dweebui:v0.08 # build: # context: . environment: diff --git a/components/dashCard.js b/components/dashCard.js index 041164d..2afbc14 100644 --- a/components/dashCard.js +++ b/components/dashCard.js @@ -6,8 +6,8 @@ module.exports.dashCard = function dashCard(data) { if (style == "Large") { iconSize = 'width="150px"' - } else if (style == "Compact") { - iconSize = 'width="110px"' + } else if ((style == "Compact") || (style == undefined)) { + iconSize = 'width="100px"' margin = 'style="margin-bottom: 0;"' } else if (style == "Row") { iconSize = 'width="50px"' @@ -128,7 +128,7 @@ module.exports.dashCard = function dashCard(data) {