Skip to content

Latest commit

 

History

History
86 lines (69 loc) · 2.93 KB

index.md

File metadata and controls

86 lines (69 loc) · 2.93 KB
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" }}.

Client Progress

{% 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>
{% endfor %}
Client Tracking Issue Bounty Progress
{{ client.name }} {% if client.tracking_issue %} {% else %}😢{% endif %} {% if client.bountysource %} {% else %}{% endif %}

Alternative OMEMO Plugins

  • 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.

Have something to add / update?

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>