Skip to content

Commit b270916

Browse files
committed
add Antidote to the website again.
1 parent 3231277 commit b270916

File tree

9 files changed

+108
-2
lines changed

9 files changed

+108
-2
lines changed

themes/website/static/css/style.css

+6
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,12 @@ tbody th:first-child, thead th {
232232
.slider input[type=radio]#atox-images-control1:checked ~ .sliderinner > ul { left: 0 }
233233
.slider input[type=radio]#atox-images-control2:checked ~ .sliderinner > ul { left: -100% }
234234

235+
.slider label[for=antidote-images-control1] { margin-left: -18px }
236+
.slider label[for=antidote-images-control3] { margin-left: 18px }
237+
.slider input[type=radio]#antidote-images-control1:checked ~ .sliderinner > ul { left: 0 }
238+
.slider input[type=radio]#antidote-images-control2:checked ~ .sliderinner > ul { left: -100% }
239+
.slider input[type=radio]#antidote-images-control3:checked ~ .sliderinner > ul { left: -200% }
240+
235241
/* Specific styling */
236242
@media (min-width: 768px) {
237243
#cover {
78.3 KB
Loading
78.3 KB
Loading
56.9 KB
Loading
Loading

themes/website/static/js/osdetect.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,13 @@ if (window.navigator.userAgent.indexOf("iPad") != -1) {
5151
if (window.navigator.userAgent.indexOf("iPhone") != -1) {
5252
OSName = "iOS";
5353

54-
clients = [];
54+
clients = [{
55+
title: "Antidote",
56+
name: "antidote",
57+
icon: "external-link",
58+
desc: true,
59+
dlLink: "https://apps.apple.com/app/antidote-tox-client/id1592895292",
60+
}];
5561
}
5662

5763
if (window.navigator.userAgent.indexOf("FreeBSD") != -1) {
@@ -154,6 +160,11 @@ for (var i = 0; i < clients.length; i++) {
154160
<span class='fa fa-" + client.icon + "'>&nbsp;</span>" + client.title + "\
155161
</a>";
156162

163+
if (client.name == "antidote") {
164+
button = button + '\n<a class="button" href="#antidote-warning" title="Warning">'
165+
+ '<span style="font-size:150%" class="fa fa-exclamation-triangle"></span></a>';
166+
}
167+
157168
var infoButton = "";
158169
if (client.desc) {
159170
infoButton = "\

themes/website/templates/clients.html

+68
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,40 @@ <h2 class="header">aTox</h2>
180180
<p class="lead">The reasonable Tox client for Android.</p>
181181
</div>
182182

183+
<hr>
184+
185+
<div id="antidote" class="row">
186+
<a href="#antidote-images" class="img-container"><img src="theme/img/client/antidote_1.png"></a>
187+
<h2 class="header">Antidote</h2>
188+
189+
<table class="table table-condensed">
190+
<tbody>
191+
<tr>
192+
<th>Repository:</th>
193+
<th><a href="https://github.com/Zoxcore/Antidote">https://github.com/Zoxcore/Antidote</a></th>
194+
</tr>
195+
<tr>
196+
<th>Maintainers:</th>
197+
<th><a href="https://github.com/zoff99">Zoff</a>, <a href="https://github.com/Tha14">Tha_14</a></th>
198+
</tr>
199+
<tr>
200+
<th>Language:</th>
201+
<th>Objective-C</th>
202+
</tr>
203+
<tr>
204+
<th>Graphical Toolkit:</th>
205+
<th>N/A</th>
206+
</tr>
207+
<tr>
208+
<th>Operating Systems:</th>
209+
<th>iOS</th>
210+
</tr>
211+
</tbody>
212+
</table>
213+
214+
<p class="lead">Antidote is an iOS client for Tox. You can download Antidote on <a href="https://apps.apple.com/app/antidote-tox-client/id1592895292">https://apps.apple.com/app/antidote-tox-client/id1592895292</a></p>
215+
</div>
216+
183217
</div>
184218
</section>
185219

@@ -252,6 +286,16 @@ <h1>OS support:</h1>
252286
<th class="danger">No</th>
253287
</tr>
254288

289+
<tr>
290+
<th>Antidote</th>
291+
<th class="danger">No</th>
292+
<th class="danger">No</th>
293+
<th class="danger">No</th>
294+
<th class="danger">No</th>
295+
<th class="danger">No</th>
296+
<th class="success">Yes</th>
297+
</tr>
298+
255299
</tbody>
256300
</table>
257301
</div>
@@ -367,5 +411,29 @@ <h1>OS support:</h1>
367411
</div>
368412
</div>
369413

414+
<div id="antidote-images" class="modalDialog button">
415+
<div>
416+
<a href="#close" class="close-overlay"></a>
417+
<a href="#close" title="Close" class="close"><span class="fa fa-close">&nbsp;</span></a>
418+
419+
<div class="slider">
420+
<input type="radio" id="antidote-images-control1" name="antidote-images-controls" checked="checked">
421+
<label for="antidote-images-control1"></label>
422+
<input type="radio" id="antidote-images-control2" name="antidote-images-controls">
423+
<label for="antidote-images-control2"></label>
424+
<input type="radio" id="antidote-images-control3" name="antidote-images-controls">
425+
<label for="antidote-images-control3"></label>
426+
427+
<div class="sliderinner">
428+
<ul>
429+
<li><div><img src="theme/img/client/antidote_1.png"></div></li>
430+
<li><div><img src="theme/img/client/antidote_2.png"></div></li>
431+
<li><div><img src="theme/img/client/antidote_3.png"></div></li>
432+
</ul>
433+
</div>
434+
</div>
435+
</div>
436+
</div>
437+
370438
</section>
371439
{% endblock %}

themes/website/templates/download.html

+18
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,13 @@ <h2>FreeBSD</h2>
7272
<h2>Android</h2>
7373
<p class="lead">aTox: <a href="https://f-droid.org/en/packages/ltd.evilcorp.atox/">F-Droid</a> / <a href="https://play.google.com/store/apps/details?id=ltd.evilcorp.atox">Google Play</a> / <a href="https://github.com/evilcorpltd/aTox/releases/download/v0.7.2/atox.apk">APK</a></p>
7474
</div>
75+
76+
<div class="col-sm-4 feature">
77+
<img src="theme/img/plat/ios_dark.svg">
78+
<h2>iOS</h2>
79+
<p class="lead" style="margin-top:-15px;">Antidote <a class="button" href="#antidote-warning" title="Warning"><span class="fa fa-exclamation-triangle"></span></a>: <a href="https://apps.apple.com/app/antidote-tox-client/id1592895292">App Store</a></p>
80+
</div>
81+
7582
</div>
7683
</div>
7784
</section>
@@ -182,6 +189,17 @@ <h2>TokTok/c-toxcore</h2>
182189
<p class="lead">TokTok/c-toxcore is a non-hostile fork of the original irungentoo/toxcore. The fork was made by active Toxcore developers due to irungentoo wanting to review and approve any changes submitted into his repository, but being unable to do so as he is unable to find time to work on Toxcore. This is the Toxcore that is being actively developed and this is also the Toxcore that all clients use.</p>
183190
</div>
184191
</div>
192+
193+
<div id="antidote-warning" class="modalDialog button">
194+
<div>
195+
<a href="#close" class="close-overlay"></a>
196+
<a href="#close" title="Close" class="close"><span class="fa fa-close">&nbsp;</span></a>
197+
198+
<h2>Antidote Warning</h2>
199+
200+
<p class="lead">Antidote may connect to centralized servers to trigger push notifications (Google Firebase Cloud Messaging, Apple Push Notification).</p>
201+
</div>
202+
</div>
185203
</section>
186204

187205
<script src="theme/js/osdetect.js"></script>

themes/website/templates/index.html

+4-1
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,15 @@ <h1 class="header">A New Kind of Instant Messaging</h1>
4343
<label for="mobile-images-control1"></label>
4444
<input type="radio" id="mobile-images-control2" name="mobile-images-controls">
4545
<label for="mobile-images-control2"></label>
46+
<input type="radio" id="mobile-images-control3" name="mobile-images-controls">
47+
<label for="mobile-images-control3"></label>
4648

4749
<div class="sliderinner">
4850
<ul>
4951
<li><div><img src="theme/img/client/atox_1.jpg"></div></li>
5052
<li><div><img src="theme/img/client/atox_2.png"></div></li>
51-
</ul>
53+
<li><div><img src="theme/img/client/antidote.png"></div></li>
54+
</ul>
5255
</div>
5356
</div>
5457
</div>

0 commit comments

Comments
 (0)