-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
59 lines (51 loc) · 2.55 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<title>Foxhole Inventory Report</title>
<meta charset="utf-8" />
<meta name="description" content="Processes stockpile screenshots to produce graphical and spreadsheet reports." />
<meta name="referrer" content="same-origin" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="includes/main.css" />
<link rel="modulepreload" href="includes/frontend.mjs" />
<link rel="modulepreload" href="includes/screenshot.mjs" />
<link rel="modulepreload" href="includes/ocr.mjs" />
<script defer crossorigin src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.4.0/html2canvas.min.js" integrity="sha512-UcDEnmFoMh0dYHu0wGsf5SKB7z7i5j3GuXHCnb3i4s44hfctoLihr896bxM0zL7jGkcHQXXrJsFIL62ehtd6yQ=="></script>
<script defer crossorigin src="https://cdnjs.cloudflare.com/ajax/libs/tesseract.js/3.0.2/tesseract.min.js" integrity="sha512-V245eVDwUZJ8QSJmPCsSRJ7btziSNHeGXqjB7e9m3YPTn/pBxPn9YJygW52iBjUe9cHbsGImBnAL7tsAEsUHmQ=="></script>
<script defer crossorigin src="https://cdnjs.cloudflare.com/ajax/libs/tensorflow/4.19.0/tf.min.js" integrity="sha512-igqUV3/dgEwEgy7rlTGkkROXefZSjO/FsffNNQmkcoBm/SSbiVLfJ8paV+/KRx9tqia0eK6V4oxvUlF7lZZwzg=="></script>
<script defer crossorigin src="https://apis.google.com/js/api.js"></script>
<script defer src="https://accounts.google.com/gsi/client"></script>
<script type="module" src="includes/main.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-C3TZNS69Y1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-C3TZNS69Y1');
</script>
</head>
<body>
<h2>Foxhole Inventory Report</h2>
<ol>
<li>Screenshot multiple inventories from the map view in-game. Do this in the order you'd like them to appear in the report.</li>
<li>
<form>
<label>Select map screenshots:
<input accept="image/*" type="file" multiple>
</label>
</form>
</li>
<li>Wait for processing to complete.
<div>Processed: <span>0 of 0</span></div>
</li>
<li>Edit the red titles by clicking on them.</li>
<li><button class="collage">Download Collage</button>
<button class="totals">Download Totals</button>
<button class="tsv">Download TSV</button>
<button class="append-google">Append to Google Spreadsheet (beta)</button></li>
</ol>
<div class="render"></div>
<div class="report"></div>
</body>
</html>