forked from mmvanheusden/SteamDepotDownloaderGUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request mmvanheusden#31 from mmvanheusden/predownloadcheck
Rewrite the pre download check and add a empty fields check
- Loading branch information
Showing
3 changed files
with
62 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,20 +4,20 @@ | |
<head> | ||
<meta charset="UTF-8"> | ||
<meta content="width=device-width, initial-scale=1" name="viewport"/> | ||
<link href="https://unpkg.com/@primer/[email protected].5/dist/primer.css" rel="stylesheet"/> | ||
<link href="https://unpkg.com/@primer/[email protected].6/dist/primer.css" rel="stylesheet"/> | ||
<title>SteamDepotDownloaderGUI</title> | ||
</head> | ||
<body> | ||
<script src="downloader.js"></script> | ||
<div class="mx-auto"> | ||
<div hidden id="dotnetwarning"> | ||
<div class="flash flash-error mx-2 mt-2 color-shadow-medium" id="alert"> | ||
<div class="flash flash-error mx-2 mt-2 color-shadow-medium" id="dotnetalert"> | ||
<svg class="octicon" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg"> | ||
<path d="M8 1.5a6.5 6.5 0 100 13 6.5 6.5 0 000-13zM0 8a8 8 0 1116 0A8 8 0 010 8zm6.5-.25A.75.75 0 017.25 7h1a.75.75 0 01.75.75v2.75h.25a.75.75 0 010 1.5h-2a.75.75 0 010-1.5h.25v-2h-.25a.75.75 0 01-.75-.75zM8 6a1 1 0 100-2 1 1 0 000 2z" | ||
fill-rule="evenodd"></path> | ||
</svg> | ||
<code><span class="text-italic">dotnet</span></code> was not found. | ||
<button class="btn btn-sm flash-action" id="alertbtn"> | ||
<button class="btn btn-sm flash-action" id="dotnetalertbtn"> | ||
<svg class="octicon" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg"> | ||
<path d="M7.47 10.78a.75.75 0 001.06 0l3.75-3.75a.75.75 0 00-1.06-1.06L8.75 8.44V1.75a.75.75 0 00-1.5 | ||
0v6.69L4.78 5.97a.75.75 0 00-1.06 1.06l3.75 3.75zM3.75 13a.75.75 0 000 1.5h8.5a.75.75 0 000-1.5h-8.5z" | ||
|
@@ -27,6 +27,15 @@ | |
</button> | ||
</div> | ||
</div> | ||
|
||
<div hidden id="emptywarning"> | ||
<div class="flash flash-warn mx-2 mt-2 color-shadow-medium" id="emptyalert"> | ||
<svg class="octicon" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg"> | ||
<path d="M8 1.5a6.5 6.5 0 100 13 6.5 6.5 0 000-13zM0 8a8 8 0 1116 0A8 8 0 010 8zm6.5-.25A.75.75 0 017.25 7h1a.75.75 0 01.75.75v2.75h.25a.75.75 0 010 1.5h-2a.75.75 0 010-1.5h.25v-2h-.25a.75.75 0 01-.75-.75zM8 6a1 1 0 100-2 1 1 0 000 2z" | ||
fill-rule="evenodd"></path> | ||
</svg>Please fill in all fields. | ||
</div> | ||
</div> | ||
<div class="f0-light text-center">Steam Depot Downloader</div> | ||
|
||
<form id="theform"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters