Compare commits

...

5 Commits

Author SHA1 Message Date
mag37 8970ee3f20 added to the sponsorlist 2025-10-21 20:47:10 +02:00
mag37 12a51d8e83 added new sponsors 2025-10-08 19:00:29 +02:00
mag37 24cae63b61 bugfix - unquoted var in list
Versionbump.
2025-10-07 08:25:44 +02:00
mag37 05e5b23e7b bugfix - unquoted var in list
Versionbump.
2025-10-07 08:24:31 +02:00
mag37 be58805824 hot-patch unquoted variable in updates list 2025-10-06 10:18:38 +02:00
2 changed files with 15 additions and 9 deletions
+12 -6
View File
@@ -22,7 +22,7 @@
___ ___
## Changelog ## Changelog
- **v0.7.3**: Bugfix - unquoted variable in printf list caused occasional issues.
- **v0.7.2**: - **v0.7.2**:
- Label rework: - Label rework:
- Moved up label logic to work globally on the current run. - Moved up label logic to work globally on the current run.
@@ -344,11 +344,17 @@ dockcheck is created and released under the [GNU GPL v3.0](https://www.gnu.org/l
## Sponsorlist ## Sponsorlist
- [avegy](https://github.com/avegy) :small_orange_diamond: [avegy](https://github.com/avegy)
- [eichhorn](https://github.com/eichhorn) :small_orange_diamond: [eichhorn](https://github.com/eichhorn)
- [stepdg](https://github.com/stepdg) :small_orange_diamond: [stepdg](https://github.com/stepdg)
- [acer2220](https://github.com/acer2220) :small_orange_diamond: [acer2220](https://github.com/acer2220)
- [shgew](https://github.com/shgew) :small_orange_diamond: [shgew](https://github.com/shgew)
:small_orange_diamond: [jonas3456](https://github.com/jonas3456)
:small_orange_diamond: [4ndreasH](https://github.com/4ndreasH)
:small_orange_diamond: [markoe01](https://github.com/markoe01)
:small_orange_diamond: [mushrowan](https://github.com/mushrowan)
:small_orange_diamond:
___ ___
### The [story](https://mag37.org/posts/project_dockcheck/) behind it. 1 year in retrospect. ### The [story](https://mag37.org/posts/project_dockcheck/) behind it. 1 year in retrospect.
+3 -3
View File
@@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
VERSION="v0.7.2" VERSION="v0.7.3"
# ChangeNotes: Reformatted updates list, rewrote label logic to work globally when used with `-l`. # ChangeNotes: Bugfix - unquoted variable in list. Also: Please consider donating.
Github="https://github.com/mag37/dockcheck" Github="https://github.com/mag37/dockcheck"
RawUrl="https://raw.githubusercontent.com/mag37/dockcheck/main/dockcheck.sh" RawUrl="https://raw.githubusercontent.com/mag37/dockcheck/main/dockcheck.sh"
@@ -348,7 +348,7 @@ list_options() {
[[ ${#total} < 2 ]] && local pads=2 || local pads="${#total}" [[ ${#total} < 2 ]] && local pads=2 || local pads="${#total}"
local num=1 local num=1
for update in "${Updates[@]}"; do for update in "${Updates[@]}"; do
printf "%0*d - %s\n" $pads $num $update printf "%0*d - %s\n" "$pads" "$num" "$update"
((num++)) ((num++))
done done
} }