Skip to content

v1.6.0

Latest
Compare
Choose a tag to compare
@ktwrd ktwrd released this 30 Sep 12:12
c9ec24d

Breaking Changes

  • musl builds will be dropped since #19 was merged and fltk-sys doesn't have good enough support for musl builds, so beans-rs will be referencing glibc (whatever version that the ubuntu-20.04 runner is using)

Additions

  • fltk will be used for dialogs to remove inconsistencies across systems. (#19 @ktwrd)
    • fltk will never be used when the --no-pause flag is present.
  • Added the ability to uninstall the targeted app (#29 @ktwrd)
    • Game must be closed for this to work, and an error message will show to the user if the game is already open. Checked with; crate::helper::is_game_running(String)
  • Added a progress bar for .tar.zstd extraction (#32 @ktwrd)
    • Note The decompressed size is estimated since you cannot get the decompressed zstd size without actually decompressing it (afaik, please correct me if I'm wrong)
  • Created specification for rustfmt (thx @toastxc for the help!)