Skip to content

Commit

Permalink
Merge branch 'early' into dev
Browse files Browse the repository at this point in the history
# Conflicts:
#	src/renderer/components
  • Loading branch information
dragoonDorise committed Oct 22, 2023
2 parents a249db6 + 76488a5 commit 4b09db0
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/renderer/components
26 changes: 25 additions & 1 deletion src/renderer/pages/CheckDependenciesPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ function CheckDependenciesPage() {
<div style={{ height: '100vh' }} ref={domElementsRef}>
{dom !== undefined && <GamePad elements={dom} />}
<Wrapper>
<Header title="Installing dependencies..." />
<Header title="Checking dependencies..." />

<ul>
<li>
Expand Down Expand Up @@ -200,6 +200,30 @@ function CheckDependenciesPage() {
Install Steam
</a>
)}
<hr />
</li>
<li>
<p className="h6">
If you can't go past this screen copy these commands in a
Powershell window.
</p>
<p className="h6">
If you are using Windows 10 Home you'll need to manually enable
Developer Mode in your Windows Settings
</p>
<code>
winget install -e --id Git.Git --accept-package-agreements
--accept-source-agreements;
<br />
winget install -e --id 7zip.7zip --accept-package-agreements
--accept-source-agreements;
<br />
winget install Microsoft.VCRedist.2015+.x64
--accept-package-agreements --accept-source-agreements;
<br />
winget install Microsoft.VCRedist.2015+.x86
--accept-package-agreements --accept-source-agreements
</code>
</li>
</ul>
</Wrapper>
Expand Down

0 comments on commit 4b09db0

Please sign in to comment.