mirror of
https://github.com/mag37/dockcheck.git
synced 2026-04-21 11:50:43 +00:00
Compare commits
5 Commits
v0.7.2
..
8970ee3f20
| Author | SHA1 | Date | |
|---|---|---|---|
| 8970ee3f20 | |||
| 12a51d8e83 | |||
| 24cae63b61 | |||
| 05e5b23e7b | |||
| be58805824 |
@@ -22,7 +22,7 @@
|
||||
___
|
||||
## Changelog
|
||||
|
||||
|
||||
- **v0.7.3**: Bugfix - unquoted variable in printf list caused occasional issues.
|
||||
- **v0.7.2**:
|
||||
- Label rework:
|
||||
- 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
|
||||
|
||||
- [avegy](https://github.com/avegy)
|
||||
- [eichhorn](https://github.com/eichhorn)
|
||||
- [stepdg](https://github.com/stepdg)
|
||||
- [acer2220](https://github.com/acer2220)
|
||||
- [shgew](https://github.com/shgew)
|
||||
:small_orange_diamond: [avegy](https://github.com/avegy)
|
||||
:small_orange_diamond: [eichhorn](https://github.com/eichhorn)
|
||||
:small_orange_diamond: [stepdg](https://github.com/stepdg)
|
||||
:small_orange_diamond: [acer2220](https://github.com/acer2220)
|
||||
: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.
|
||||
|
||||
+3
-3
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
VERSION="v0.7.2"
|
||||
# ChangeNotes: Reformatted updates list, rewrote label logic to work globally when used with `-l`.
|
||||
VERSION="v0.7.3"
|
||||
# ChangeNotes: Bugfix - unquoted variable in list. Also: Please consider donating.
|
||||
Github="https://github.com/mag37/dockcheck"
|
||||
RawUrl="https://raw.githubusercontent.com/mag37/dockcheck/main/dockcheck.sh"
|
||||
|
||||
@@ -348,7 +348,7 @@ list_options() {
|
||||
[[ ${#total} < 2 ]] && local pads=2 || local pads="${#total}"
|
||||
local num=1
|
||||
for update in "${Updates[@]}"; do
|
||||
printf "%0*d - %s\n" $pads $num $update
|
||||
printf "%0*d - %s\n" "$pads" "$num" "$update"
|
||||
((num++))
|
||||
done
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user