mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2024-11-22 15:35:38 +01:00
Add yuzu specific configuration files
This commit is contained in:
parent
5647d2cda9
commit
1f317f2d4a
@ -1,2 +1,2 @@
|
|||||||
name = "yuzu"
|
name = "yuzu"
|
||||||
target_url = "https://raw.githubusercontent.com/j-selby/test-installer/master/config.linux.v2.toml"
|
target_url = "https://raw.githubusercontent.com/yuzu-emu/liftinstall/master/config.linux.v1.toml"
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
name = "yuzu"
|
name = "yuzu"
|
||||||
target_url = "https://raw.githubusercontent.com/j-selby/test-installer/master/config.windows.v2.toml"
|
target_url = "https://raw.githubusercontent.com/yuzu-emu/liftinstall/master/config.windows.v1.toml"
|
||||||
|
20
config.linux.v1.toml
Normal file
20
config.linux.v1.toml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
installing_message = "Reminder: yuzu is an <b>experimental</b> 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-linux-[0-9]*-[0-9a-f]*.tar.xz$"
|
||||||
|
[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-linux-[0-9]*-[0-9a-f]*.tar.xz$"
|
||||||
|
[packages.source.config]
|
||||||
|
repo = "yuzu-emu/yuzu-canary"
|
29
config.windows.v1.toml
Normal file
29
config.windows.v1.toml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
installing_message = "Reminder: yuzu is an <b>experimental</b> 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-windows-msvc-[0-9]*-[0-9a-f]*.zip$"
|
||||||
|
[packages.source.config]
|
||||||
|
repo = "yuzu-emu/yuzu-nightly"
|
||||||
|
[[packages.shortcuts]]
|
||||||
|
name = "yuzu Nightly"
|
||||||
|
relative_path = "nightly/yuzu.exe"
|
||||||
|
description = "Launch yuzu (Nightly version)"
|
||||||
|
|
||||||
|
[[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-windows-msvc-[0-9]*-[0-9a-f]*.zip$"
|
||||||
|
[packages.source.config]
|
||||||
|
repo = "yuzu-emu/yuzu-canary"
|
||||||
|
[[packages.shortcuts]]
|
||||||
|
name = "yuzu Canary"
|
||||||
|
relative_path = "canary/yuzu.exe"
|
||||||
|
description = "Launch yuzu (Canary version)"
|
||||||
|
|
@ -35,6 +35,7 @@ pub fn file_from_string(file_path: &str) -> Option<(String, &'static [u8])> {
|
|||||||
"/index.html",
|
"/index.html",
|
||||||
"/favicon.ico",
|
"/favicon.ico",
|
||||||
"/logo.png",
|
"/logo.png",
|
||||||
|
"/how-to-open.png",
|
||||||
"/css/bulma.min.css",
|
"/css/bulma.min.css",
|
||||||
"/css/main.css",
|
"/css/main.css",
|
||||||
"/fonts/roboto-v18-latin-regular.eot",
|
"/fonts/roboto-v18-latin-regular.eot",
|
||||||
|
BIN
static/how-to-open.png
Normal file
BIN
static/how-to-open.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 47 KiB |
@ -313,6 +313,8 @@ const CompleteView = {
|
|||||||
<h4 class="subtitle">Thanks for installing {{ $root.$data.attrs.name }}!</h4>
|
<h4 class="subtitle">Thanks for installing {{ $root.$data.attrs.name }}!</h4>
|
||||||
|
|
||||||
<p>You can find your installed applications in your start menu.</p>
|
<p>You can find your installed applications in your start menu.</p>
|
||||||
|
|
||||||
|
<img src="/how-to-open.png" />
|
||||||
</div>
|
</div>
|
||||||
<div v-else>
|
<div v-else>
|
||||||
<h4 class="subtitle">{{ $root.$data.attrs.name }} has been uninstalled.</h4>
|
<h4 class="subtitle">{{ $root.$data.attrs.name }} has been uninstalled.</h4>
|
||||||
|
Loading…
Reference in New Issue
Block a user