forked from ellite/Wallos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
143 lines (136 loc) · 5.9 KB
/
about.php
File metadata and controls
143 lines (136 loc) · 5.9 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<?php
require_once 'includes/header.php';
$wallosIsUpToDate = true;
if (!is_null($settings['latest_version'])) {
$latestVersion = $settings['latest_version'];
if (version_compare($version, $latestVersion) == -1) {
$wallosIsUpToDate = false;
}
}
?>
<section class="contain">
<section class="account-section">
<header>
<h2><?= translate('about', $i18n) ?></h2>
</header>
<div class="credits-list">
<div>
<h3>
Wallos <?= $version ?> <?= $demoMode ? "Demo" : "" ?>
</h3>
<span>
<?= translate('release_notes', $i18n) ?>
<a href="https://github.com/ellite/Wallos/releases/tag/<?= $version ?>" target="_blank"
title="<?= translate('external_url', $i18n) ?>" rel="noreferrer">
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</span>
</div>
<?php if (!$wallosIsUpToDate): ?>
<div class="update-available">
<h3>
<i class="fa-solid fa-info-circle"></i>
<?= translate('update_available', $i18n) ?> <?= $latestVersion ?>
</h3>
<span>
<?= translate('release_notes', $i18n) ?>
<a href="https://github.com/ellite/Wallos/releases/tag/<?= $latestVersion ?>" target="_blank"
title="<?= translate('external_url', $i18n) ?>" rel="noreferrer">
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</span>
</div>
<?php endif; ?>
<div>
<h3><?= translate('license', $i18n) ?></h3>
<span>
GPLv3
<a href="https://www.gnu.org/licenses/gpl-3.0.en.html" target="_blank"
title="<?= translate('external_url', $i18n) ?>" rel="noreferrer">
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</span>
</div>
<div>
<h3><?= translate('issues_and_requests', $i18n) ?></h3>
<span>
GitHub
<a href="https://github.com/ellite/Wallos/issues" target="_blank"
title="<?= translate('external_url', $i18n) ?>" rel="noreferrer">
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</span>
</div>
<div>
<h3><?= translate('the_author', $i18n) ?></h3>
<span>
https://henrique.pt
<a href="https://henrique.pt/" target="_blank" title="<?= translate('external_url', $i18n) ?>"
rel="noreferrer">
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</span>
</div>
</div>
</section>
<section class="account-section">
<header>
<h2><?= translate("credits", $i18n) ?></h2>
</header>
<div class="credits-list">
<div>
<h3><?= translate('icons', $i18n) ?></h3>
<span>
https://www.streamlinehq.com/freebies/plump-flat-free
<a href="https://www.streamlinehq.com/freebies/plump-flat-free" target="_blank"
title="<?= translate('external_url', $i18n) ?>" rel="noreferrer">
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</span>
</div>
<div>
<h3><?= translate('payment_icons', $i18n) ?></h3>
<span>
https://www.figma.com/file/5IMW8JfoXfB5GRlPNdTyeg/Credit-Cards-and-Payment-Methods-Icons-(Community)
<a href="https://www.figma.com/file/5IMW8JfoXfB5GRlPNdTyeg/Credit-Cards-and-Payment-Methods-Icons-(Community)"
target="_blank" title="<?= translate('external_url', $i18n) ?>" rel="noreferrer">
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</span>
</div>
<div>
<h3>Chart.js</h3>
<span>
https://www.chartjs.org/
<a href="https://www.chartjs.org/" target="_blank" title="<?= translate('external_url', $i18n) ?>"
rel="noreferrer">
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</span>
</div>
<div>
<h3>QRCode.js</h3>
<span>
https://github.com/davidshimjs/qrcodejs
<a href="https://github.com/davidshimjs/qrcodejs" target="_blank"
title="<?= translate('external_url', $i18n) ?>" rel="noreferrer">
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</span>
</div>
<div>
<h3>Icons by icons8</h3>
<span>
https://icons8.com/
<a href="https://icons8.com/" target="_blank" title="<?= translate('external_url', $i18n) ?>"
rel="noreferrer">
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</span>
</div>
</div>
</section>
</section>
<?php
require_once 'includes/footer.php';
?>