diff --git a/.gitignore b/.gitignore index ce3b2dd..ae68cd7 100644 --- a/.gitignore +++ b/.gitignore @@ -5,5 +5,4 @@ **/*.rs.bk # User configuration files -config.toml run.bat diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..5d8c9fb --- /dev/null +++ b/config.toml @@ -0,0 +1,22 @@ +[general] +name = "yuzu" +installing_message = "Reminder: yuzu is an experimental emulator. Stuff will break!" + +[[packages]] +name = "yuzu Nightly" +description = "The nightly build of yuzu contains already reviewed and tested features." +default = true + [packages.source] + name = "github" + match = "^yuzu-#PLATFORM#(-mingw)?-[0-9]*-[0-9a-f]*.zip$" + [packages.source.config] + repo = "yuzu-emu/yuzu-nightly" + +[[packages]] +name = "yuzu Canary" +description = "The canary build of yuzu has additional features that are still waiting on review." + [packages.source] + name = "github" + match = "^yuzu-#PLATFORM#(-mingw)?-[0-9]*-[0-9a-f]*.zip$" + [packages.source.config] + repo = "yuzu-emu/yuzu-canary"