Save blacklisted shortcuts on import (#267)

This commit is contained in:
Philip Kristoffersen
2022-10-29 07:46:54 +02:00
committed by GitHub
parent 43c1539700
commit 1eebd2959d
4 changed files with 10 additions and 2 deletions
Generated
+1 -1
View File
@@ -192,7 +192,7 @@ dependencies = [
[[package]]
name = "boilr"
version = "1.7.5"
version = "1.7.6"
dependencies = [
"base64",
"chrono",
+1 -1
View File
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "boilr"
version = "1.7.5"
version = "1.7.6"
[dependencies]
base64 = "^0.13.0"
@@ -25,6 +25,13 @@ https://hughsie.github.io/oars/index.html
-->
<content_rating type="oars-1.1" />
<releases>
<release version="1.7.6" date="2022-10-29">
<description>
<ul>
<li>Fixed a bug where selecting which games to import would not be saved when importing games</li>
</ul>
</description>
</release>
<release version="1.7.5" date="2022-10-26">
<description>
<ul>
+1
View File
@@ -241,6 +241,7 @@ impl App for MyEguiApp {
.clicked()
&& !syncing
{
save_settings(&self.settings, &self.platforms);
self.run_sync(false);
}
});