-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathabout.html
88 lines (83 loc) · 4.28 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>About wnr</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimal-ui" />
<!-- solve the electron-jquery conflict, style changed due to a vscode problem -->
<script>
window.$ = require("jquery/dist/jquery.slim.min.js");
</script>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="res/fonts/iconfont.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<script src="supporter.js"></script>
<script src="updater.js"></script>
<div class="d-flex mx-auto text-dark" id="about">
<div id="controller">
<a href="javascript:window.close()" class="small rest"><i class="iconfont icon-close"
id="close"></i></a>
<script>
$('#close').attr('title', i18n.__('close'));
if (process.platform === "darwin") $("#controller").css("display", "none");
</script>
</div>
<div class="container-fluid align-self-center">
<div class="row justify-content-center">
<div class="col-2 align-self-start">
<img src="res/icons/wnrIcon.png" width="100%" />
</div>
<div class="col-8" id="about-content">
<h1>wnr</h1>
<p class="small text-muted">
<script>document.write(i18n.__('version') + require("./package.json").version);</script>
|
<a href="javascript:updateChecker(2)" class="rest underlined">
<span id="manually">
<script>document.write(i18n.__('manually-check-for-update'));</script>
</span>
</a>
</p>
<h3>
<script>document.write(i18n.__('info'));</script>
</h3>
<p class="small text-muted"> (c) <a class="rest"
href="javascript:require('electron').shell.openExternal('https://r-q.name')">Roderick
Qiu</a> and
Contributors.
</p>
<p class="small text-muted">
<a class="rest"
href="javascript:require('electron').shell.openExternal(require('./package.json').homepage)">
<script>document.write(i18n.__('homepage'));</script>
</a> |
<a class="rest"
href="javascript:require('electron').shell.openExternal('https://github.com/RoderickQiu/wnr/')">
<script>document.write(i18n.__('on-github'));</script>
</a>
| <a class="rest" href="mailto:[email protected]">
<script>document.write(i18n.__('email-to'));</script>
</a>
</p>
<h3>
<script>document.write(i18n.__('license-info'));</script>
</h3>
<ul>
<li class="small text-muted">This software follows <a class="rest"
href="javascript:require('electron').shell.openExternal('https://github.com/RoderickQiu/wnr/blob/master/LICENSE')">MPL2.0</a>
License.
</li>
<li class="small text-muted">To see dependencies' licenses, go to <a class="rest"
href="javascript:require('electron').shell.openExternal('https://github.com/RoderickQiu/wnr/blob/master/NOTICE.md')">NOTICE.md</a>.
</li>
</ul>
</div>
</div>
</div>
</div>
<script src="renderer.js"></script>
</body>
</html>