Skip to content
This repository has been archived by the owner on Jul 27, 2022. It is now read-only.

Commit

Permalink
Merge pull request #129 from CapitaineJSparrow/fix/yuzu-without-fs
Browse files Browse the repository at this point in the history
Fix/yuzu without fs
  • Loading branch information
CapitaineJSparrow authored Oct 10, 2021
2 parents b73f875 + 3f5f1e8 commit 9442d65
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "emusak",
"productName": "emusak",
"version": "1.0.103",
"version": "1.0.104",
"description": "Saves, shaders, firmwares and keys manager for switch emulators",
"main": ".webpack/main",
"repository": "https://github.com/stromcon/emusak-ui.git",
Expand Down
1 change: 1 addition & 0 deletions src/components/ChangelogComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ const ChangelogComponent = () => {
<li><b><u>Never</u> ask for emusak support in official Ryujinx or Yuzu channels (discord, reddit, ...)</b></li>
<li>Improve backend reliability</li>
<li>Fix github actions to push emusak updates to AUR (archlinux packages repository). Thanks <code>LiveLM</code> !</li>
<li>Fix an issue preventing users to display "Download keys" or "firmware" buttons when they have never launched any game in yuzu.</li>
</ul>
<br/>
<p>
Expand Down
2 changes: 1 addition & 1 deletion src/containers/YuzuContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const YuzuContainer = ({threshold, firmwareVersion, emusakSaves, emusakMods}: IR
/**
* Yuzu an be installed globally unlike ryujinx, so we need to display on top of portable config the global config
*/
if ((g || []).length > 0) {
if (g) {
yuzuConfigs.unshift({
path: 'AppData\\Roaming\\yuzu',
isPortable: false,
Expand Down

0 comments on commit 9442d65

Please sign in to comment.