diff --git a/bootstrap.windows.toml b/bootstrap.windows.toml index 7baf2d8..5558a9e 100644 --- a/bootstrap.windows.toml +++ b/bootstrap.windows.toml @@ -1,2 +1,2 @@ name = "yuzu" -target_url = "https://raw.githubusercontent.com/yuzu-emu/liftinstall/master/config.windows.v1.toml" +target_url = "https://raw.githubusercontent.com/yuzu-emu/liftinstall/master/config.windows.v2.toml" diff --git a/config.linux.v1.toml b/config.linux.v1.toml index c669f44..93ced2e 100644 --- a/config.linux.v1.toml +++ b/config.linux.v1.toml @@ -1,4 +1,5 @@ installing_message = "Reminder: yuzu is an experimental emulator. Stuff will break!" +hide_advanced = true [[packages]] name = "yuzu Nightly" diff --git a/config.windows.v1.toml b/config.windows.v2.toml similarity index 97% rename from config.windows.v1.toml rename to config.windows.v2.toml index c6a7b9a..92cd464 100644 --- a/config.windows.v1.toml +++ b/config.windows.v2.toml @@ -1,4 +1,5 @@ installing_message = "Reminder: yuzu is an experimental emulator. Stuff will break!" +hide_advanced = true [[packages]] name = "yuzu Nightly" diff --git a/src/config.rs b/src/config.rs index 361bdf4..e5ac346 100644 --- a/src/config.rs +++ b/src/config.rs @@ -64,6 +64,8 @@ pub struct Config { #[serde(default)] pub new_tool: Option, pub packages: Vec, + #[serde(default)] + pub hide_advanced: bool, } impl Config { diff --git a/static/js/views.js b/static/js/views.js index 7185c81..70e1323 100644 --- a/static/js/views.js +++ b/static/js/views.js @@ -132,7 +132,7 @@ const SelectPackages = {