Full Changelog: v7.4.12...v7.4.13
- fix(shell_functions): isalnum() used "[[ =~ ]]", which dash doesn't have
at all, always rejecting valid input; fixed to expr match (9d81cfd). - fix(shell_functions): iseven() used "[ ... == ... ]", invalid under dash,
always rejecting even numbers; fixed to "=" (9d81cfd). - fix(shell_functions): printargs() used "$((count++))", unsupported by
dash's arithmetic expansion, crashing outright; fixed to a separate
increment statement (9d81cfd). - fix(init.sh): wait up to netwait seconds (default 10) for a network
interface to appear before enumerating it, fixing USB NICs (e.g.
RTL8153) that enumerate a few seconds after udev settle returns
(#167, f98fb1a). - fix(linbo-torrent): don't refuse stop/restart from a plain, non-tmux
shell - a regression from the #166 fix that made restart a silent
no-op whenever only one torrent session was running (#168, a46ac8c).