diff options
author | bunnei <bunneidev@gmail.com> | 2021-12-21 06:55:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-21 06:55:43 +0100 |
commit | cf221ca92d82c27bee485a7e597daf98f9697162 (patch) | |
tree | ada0cc28b1428fc83624fd235cc4cbb19343b574 | |
parent | Merge pull request #7597 from bunnei/remove-global-lock (diff) | |
parent | dist/XDG: add more file associations (diff) | |
download | yuzu-cf221ca92d82c27bee485a7e597daf98f9697162.tar yuzu-cf221ca92d82c27bee485a7e597daf98f9697162.tar.gz yuzu-cf221ca92d82c27bee485a7e597daf98f9697162.tar.bz2 yuzu-cf221ca92d82c27bee485a7e597daf98f9697162.tar.lz yuzu-cf221ca92d82c27bee485a7e597daf98f9697162.tar.xz yuzu-cf221ca92d82c27bee485a7e597daf98f9697162.tar.zst yuzu-cf221ca92d82c27bee485a7e597daf98f9697162.zip |
-rw-r--r-- | dist/yuzu.desktop | 2 | ||||
-rw-r--r-- | dist/yuzu.xml | 15 |
2 files changed, 16 insertions, 1 deletions
diff --git a/dist/yuzu.desktop b/dist/yuzu.desktop index 105080c73..6cc0704d2 100644 --- a/dist/yuzu.desktop +++ b/dist/yuzu.desktop @@ -8,5 +8,5 @@ Icon=yuzu TryExec=yuzu Exec=yuzu %f Categories=Game;Emulator;Qt; -MimeType=application/x-nx-nro;application/x-nx-nso; +MimeType=application/x-nx-nro;application/x-nx-nso;application/x-nx-nsp;application/x-nx-xci; Keywords=Switch;Nintendo;
\ No newline at end of file diff --git a/dist/yuzu.xml b/dist/yuzu.xml index f6e408321..dd1e30a6b 100644 --- a/dist/yuzu.xml +++ b/dist/yuzu.xml @@ -15,4 +15,19 @@ <glob pattern="*.nso"/> <magic><match value="NSO" type="string" offset="0"/></magic> </mime-type> + + <mime-type type="application/x-nx-nsp"> + <comment>Nintendo Switch Package</comment> + <acronym>NSP</acronym> + <icon name="yuzu"/> + <glob pattern="*.nsp"/> + <magic><match value="PFS" type="string" offset="0"/></magic> + </mime-type> + + <mime-type type="application/x-nx-xci"> + <comment>Nintendo Switch Card Image</comment> + <acronym>XCI</acronym> + <icon name="yuzu"/> + <glob pattern="*.xci"/> + </mime-type> </mime-info>
\ No newline at end of file |