From 1eebd2959d2be18380a51b2ad37b274187849b89 Mon Sep 17 00:00:00 2001 From: Philip Kristoffersen Date: Sat, 29 Oct 2022 07:46:54 +0200 Subject: [PATCH] Save blacklisted shortcuts on import (#267) --- Cargo.lock | 2 +- Cargo.toml | 2 +- flatpak/io.github.philipk.boilr.appdata.xml | 7 +++++++ src/ui/uiapp.rs | 1 + 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f808700..a124f5c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -192,7 +192,7 @@ dependencies = [ [[package]] name = "boilr" -version = "1.7.5" +version = "1.7.6" dependencies = [ "base64", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 99a7ae7..0fac2b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "boilr" -version = "1.7.5" +version = "1.7.6" [dependencies] base64 = "^0.13.0" diff --git a/flatpak/io.github.philipk.boilr.appdata.xml b/flatpak/io.github.philipk.boilr.appdata.xml index 4123d80..30a25b4 100644 --- a/flatpak/io.github.philipk.boilr.appdata.xml +++ b/flatpak/io.github.philipk.boilr.appdata.xml @@ -25,6 +25,13 @@ https://hughsie.github.io/oars/index.html --> + + +
    +
  • Fixed a bug where selecting which games to import would not be saved when importing games
  • +
+
+
    diff --git a/src/ui/uiapp.rs b/src/ui/uiapp.rs index 54086b6..0b340c9 100644 --- a/src/ui/uiapp.rs +++ b/src/ui/uiapp.rs @@ -241,6 +241,7 @@ impl App for MyEguiApp { .clicked() && !syncing { + save_settings(&self.settings, &self.platforms); self.run_sync(false); } });