layout |
---|
default |
This list displays the progress of OMEMO integration in various XMPP clients. If you cannot find your favourite client in here, please send a pull request. The last update was {{ 'now' | date: "%Y-%m-%d" }}.
{% for client_hash in site.data.clients %} {% assign client = client_hash[1] %}
<td data-sort="{{ client.status | plus: 0 }}" class="progress">
<progress max="100" value="{{ client.status | plus: 0 }}"></progress>
</td>
Client | Tracking Issue | Bounty | Progress |
---|---|---|---|
{{ client.name }} | {% if client.tracking_issue %} ✪ {% else %}😢{% endif %} | {% if client.bountysource %} {% else %}{% endif %} |
- Anderchat, Spark, Jitsi, Kontalk and Xabber can use Smack #743
- Empathy has a separate upstream issue open at Telepathy: #93090
- Pidgin has an alternative Plugin named lurch.
The source of this website is available on GitHub. If you notice obsolete / inaccurate information, or want to help us work on this site, please send a pull request.
A project by @renevolution and @bascht.
<script src="//cdnjs.cloudflare.com/ajax/libs/tablesort/5.0.0/tablesort.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/tablesort/5.0.0/src/sorts/tablesort.number.js"></script> <script> var table; var tablesorter; var sortCount = 0; var nextSortHeader = document.getElementById('progressHeader'); document.addEventListener("DOMContentLoaded", function(event) { table = document.getElementById('clients'); if (typeof(Tablesort) !== 'undefined') { tablesorter = new Tablesort(table); } /* Start initial sorting by "Status" */ tablesorter.sortTable(nextSortHeader, !0); }); </script>