Releases: unixorn/lima-xbar-plugin
v1.4.0
What's Changed
- Adds black to dev-deps and runs it through poetry by @colindean in #32
- Bump black from 22.3.0 to 24.3.0 by @dependabot in #33
- Custom icons by @exculibar in #34
- Update dependencies and tweak formatting in issue templates by @unixorn in #37
New Contributors
- @colindean made their first contribution in #32
- @dependabot made their first contribution in #33
- @exculibar made their first contribution in #34
Full Changelog: v1.3.3...v1.4.0
v1.3.3
v1.3.1
brew
doesn't always use /usr/local/bin
any more, and macOS doesn't pass the $PATH
from .zshrc
/.bashrc
to GUI applications which caused problems with a brew
-installed version of lima
.
prep_environment_for_lima()
now adds a list of potential directories to $PATH
if they exist and are directories - currently /usr/local/bin
, /opt/homebrew/bin
and /opt/local/bin
.
Closes #24
v1.3.0
v1.2.0
Enjoy the 50x speedup
Rewrite in Python, mainly because the bash
code was starting to get too large to work with comfortably, and Python's way more maintainable.
On top of that, the original bash
version was slow, because there were a lot of cases where it was running lima nerdctl XYZ | jq
to parse out information about containers and images, and it wasn't caching the output.
The python version caches the image and container information, and is much faster - 0.355 seconds on my MBP, the shell version takes 17.332 seconds.