Skip to content

Releases: tshakalekholoane/bat

bat 1.1

05 Mar 12:30
Compare
Choose a tag to compare

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

11 Jan 13:44
Compare
Choose a tag to compare

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

29 Sep 19:01
b560c8f
Compare
Choose a tag to compare

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

19 Sep 11:04
Compare
Choose a tag to compare

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

05 Sep 09:45
819a4ab
Compare
Choose a tag to compare

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

08 Feb 21:21
Compare
Choose a tag to compare

Minor style changes and code reorganisation.

Full Changelog: 0.11...0.12

bat 0.11

20 Oct 19:39
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.10.1...0.11

bat 0.10.1

08 Oct 10:36
c5871eb
Compare
Choose a tag to compare

What's Changed

Minor stability improvements.

Full Changelog: 0.10...0.10.1

bat 0.10

21 Aug 14:22
Compare
Choose a tag to compare

What's Changed

bat 0.9.1

12 Jun 15:38
Compare
Choose a tag to compare
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.