-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.html
39 lines (33 loc) · 1.18 KB
/
help.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Help</title>
<link rel="stylesheet" type="text/css" href="help.css">
</head>
<body>
<header class="title-bar">
<div class="win-option" id="close">✖</div>
<div id="title">Help</div>
</header>
<div class="content">
<video id="video" autoplay loop>
<source src="assets/tutorial_video.mp4" type="video/mp4">
</video>
<p class="text">
Click the folder icon to select one or more folders. Select how strict you want the perceived difference between images to
be. Click Go.
</p>
<p class="text">
You can right click images on the left pane to mark for deletion. Click "Delete marked" to delete them.
</p>
<p class="text">
Adjust the strictness of the algorithm again and click Go again. Repeat at hearts content to find all duplicates.
</p>
</div>
<script type="text/javascript">
const helpWindow = require('./renderer.js').remote.getCurrentWindow()
document.getElementById('close').addEventListener('click', () => { helpWindow.close() });
</script>
</body>
</html>