From bb559f1c9fb7cf8d628637825dc8fbcd2cfcc665 Mon Sep 17 00:00:00 2001 From: Rick Bouma Date: Tue, 19 Aug 2025 10:14:25 +0200 Subject: [PATCH 1/3] Update README --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b834627..ddd38a9 100644 --- a/README.md +++ b/README.md @@ -101,4 +101,14 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file --- -**Made with ❤️ by the Docker Giant & Disrex team** +Disrex T-Rex Mascot Waving + +## Sponsored by + + + + Disrex Logo + + + +**Made with ❤️** From 5ec5a3d2d9c7e28865181f14b2ec60227f9b706d Mon Sep 17 00:00:00 2001 From: Rick Bouma Date: Tue, 19 Aug 2025 10:15:24 +0200 Subject: [PATCH 2/3] fix: handle empty projectNetworkList in status.cmd to avoid errors --- commands/status.cmd | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/commands/status.cmd b/commands/status.cmd index 65de9fd..ad420b1 100644 --- a/commands/status.cmd +++ b/commands/status.cmd @@ -23,8 +23,12 @@ fi IFS="$OLDIFS" messageList=() -lastIdx=$(( ${#projectNetworkList[@]} - 1 )) -lastNetwork="${projectNetworkList[$lastIdx]}" +if (( ${#projectNetworkList[@]} > 0 )); then + lastIdx=$(( ${#projectNetworkList[@]} - 1 )) + lastNetwork="${projectNetworkList[$lastIdx]}" +else + lastNetwork="" +fi for projectNetwork in "${projectNetworkList[@]}"; do [[ -z "${projectNetwork}" || "${projectNetwork}" == "${rollNetworkName}" ]] && continue # Skip empty project network names (if any) From d39b4b08125958684e8e9505e85cc6cc7b786951 Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 19 Aug 2025 08:16:17 +0000 Subject: [PATCH 3/3] Tagged 0.4.3 --- version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version b/version index 2b7c5ae..17b2ccd 100644 --- a/version +++ b/version @@ -1 +1 @@ -0.4.2 +0.4.3