-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
110 lines (110 loc) · 4.04 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./css/bulma.css">
<title>FFXIV Retainer Maintainer</title>
</head>
<body>
<nav class="navbar is-dark" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="/retainermaintainer">
<img src="./img/retainermaintainer-light.svg" alt="RetainerMaintainer" height="28">
</a>
</div>
</nav>
<section class="section">
<div class="container">
<h1 class="title">
Retainer Maintainer alpha
</h1>
<p class="subtitle">
Discover ways to save yourself space and better organize your items.
</p>
<p>Retainer Maintainer takes all of your retainers and searches through their inventories to find split stacks of
stackable items or armoire-enabled gear.</p>
</div>
<div class="container">
<form method="post" action="process.py" enctype="multipart/form-data">
<div class="field">
<div class="file">
<label class="file-label">
<input class="file-input" type="file" name="file" accept=".log">
<span class="file-cta">
<span class="file-label">
Select your logfile. (max size 5mb!)
</span>
</span>
</label>
</div>
</div>
<div class="field">
<div class="control">
<label class="label">Item name language</label>
<label class="radio">
<input type="radio" name="language" value="en" checked>
English
</label>
<label class="radio">
<input type="radio" name="language" value="ja">
Japanese
</label>
<label class="radio">
<input type="radio" name="language" value="de">
German
</label>
<label class="radio">
<input type="radio" name="language" value="fr">
French
</label>
</div>
</div>
<div class="field">
<p class="control">
<button class="button is-success">
Upload!
</button>
</p>
</div>
</form>
<hr>
</div>
<div class="container">
<h2 class="title is-4">How to use RetainerMaintainer</h2>
<h3 class="title is-5">Prerequisites</h3>
<div class="content">
<ul>
<li><a href="http://advancedcombattracker.com/">
Advanced Combat Tracker</a></li>
<li><a href="https://github.com/ravahn/FFXIV_ACT_Plugin">FFXIV ACT plugin</a></li>
</ul>
</div>
Use of these tools, and by extension RetainerMaintainer, may be considered a violation of the FFXIV Terms of
Service. Use at your own risk - no warranty, express or implied, is given.
<h3 class="title is-5">Step-by-step</h3>
<p><b>Step 1:</b> Open FFXIV and position yourself near your favourite retainer <br>
<b>Step 2:</b> Open ACT and ensure your FFXIV plugin is set to capture network data, and that capturing network
data is functional. (Typically, this means running as admin)<br>
<b>Step 2a:</b> If you've already been running ACT today, delete or rename the current logfile.
Having existing data in a logfile can create problems or generate a too-big-to-process log!<br>
<b>Step 3:</b> Under Plugins > FFXIV Settings, turn on (DEBUG) Dump all Network Data to logfile<br>
<b>Step 4:</b> For each of your retainers, ding the bell and view all 'pages' of their inventory.<br>
<b>Step 5:</b> Turn off (DEBUG) Dump all Network Data<br>
<b>Step 6:</b> Upload the most recent log file from the log file location (click "Open FFXIV Log Folder" to bring
it up)<br>
</p>
<hr>
<p>
Thanks to xivdb and their API for item name and armoire info.<br>
We don't store your logfiles, or use them for anything beyond what's stated on this page. We also don't use
cookies, display advertisements, or use any analytic tools.<br>
Feel free to check out the <a href="https://github.com/nivomi/RetainerMaintainer">project on github</a>, where you
can also submit issues and pull requests.<br>
I can be reached at <a href="mailto:[email protected]">[email protected]</a>
if you find bugs, have questions, or anything else.
</p>
</div>
</section>
</body>
</html>