Skip to content

Latest commit

 

History

History
82 lines (63 loc) · 3.07 KB

index.md

File metadata and controls

82 lines (63 loc) · 3.07 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] %} {% include client_row.html %} {% endfor %}

Client Tracking Issue Progress

Client Details

{% for client_hash in site.data.clients %} {% assign client = client_hash[1] %} {% include client_detail.html %} {% endfor %}

Alternative OMEMO Plugins

Libraries

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, @Echolon 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>