Releases: tshakalekholoane/bat
Releases · tshakalekholoane/bat
bat 1.1
What's Changed
- Fixes an issue where the application would panic on distributions there the charging threshold variable was not present. Now that absence is communicated by a user-friendly error message.
- Adds manual pages and refreshes the help documentation. This can now be installed system wide using the following commands:
mkdir -p /usr/local/share/man/man1 && cp ./bat.1 /usr/local/share/man/man1/
bat 1.0
What's Changed
- Fixes an issue where the application would panic when it had insufficient permission to reset the charging threshold after restarts.
- The application will also display a helpful message when it encounters a fatal error.
- Bump dependencies.
- Minor code quality improvements.
See the full diff for a complete log of the changes. This also marks the first stable release of the application.
bat 0.14
What's Changed
- Replaced the dependency on Bash with the default POSIX shell on the system by @pepa65.
New Contributors
- @pepa65 made their first contribution.
Full Changelog: 0.13.1...0.14
bat 0.13.1
What's Changed
- Fixes a regression where the persisting the threshold no longer worked on some distributions.
Thank you to @cloudmadeofcandy for reporting the issue and @pepa65 for their help with debugging and suggestions.
Full Changelog: 0.13...0.13.1
bat 0.13
What's Changed
- A new command to check the battery health.
- General performance improvements.
Thank you to @pepa65 and @sravan-s for their help with the former.
Full Changelog: 0.12...0.13
bat 0.12
Minor style changes and code reorganisation.
Full Changelog: 0.11...0.12
bat 0.11
What's Changed
- refactor: minor cleanup and code reorganisation by @tshakalekholoane in #39
Full Changelog: 0.10.1...0.11
bat 0.10.1
bat 0.10
What's Changed
- refactor: minor formatting and style changes by @tshakalekholoane in #29
- refactor: replace flags with subcommands by @tshakalekholoane in #32
bat 0.9.1
refactor: update function that queries Bash path Change the function that queries the location of the Bash shell on the operating system to look inside of the $PATH environment variable instead of defaulting to standard locations such as /bin/ and /usr/bin/ that maybe not be true for all Unix operating systems i.e. NixOS. See https://github.com/tshakalekholoane/bat/issues/26.