Skip to content

Commit

Permalink
[landing] address matrix comparison touch ups
Browse files Browse the repository at this point in the history
Summary:
resolves the following matrix comparison copy touch up:

https://linear.app/comm/issue/ENG-4628/matrix-comparison

Depends on D8793

Test Plan:
Please see screenshots:

{F684857}

{F684855}

{F684856}

Reviewers: atul, kamil, ashoat

Reviewed By: ashoat

Subscribers: ashoat, tomek

Differential Revision: https://phab.comm.dev/D8794
  • Loading branch information
ginsueddy committed Aug 15, 2023
1 parent c824654 commit 128e058
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions landing/competitor-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ const competitorData: { [key: string]: Competitor } = Object.freeze({
commDescriptionLong: [
'Comm uses Matrix’s implementation of Signal’s Double Ratchet algorithm for both two-person and group chats. However, we don’t use Megolm due to concerns over privacy implications.',
'Instead of using a group ratchet, Comm arranges group chats in a “pairwise” way. When a user sends a message to a group chat, Comm handles that by sending that message individually to all users in the group chat.',
'The downside is that group chats don’t scale as well. Comm’s solution for large group chats is keyserver-hosted communities, which avoid sacrificing security/privacy guarantees by using a federated version of a classic client/server paradigm.',
'The downside is that group chats don’t scale as well. Comm’s solution for large group chats is keyserver-hosted communities, which avoid sacrificing security/privacy guarantees by leveraging keyservers to federate the classic client/server paradigm.',
],
furtherReadingLinks: ['https://nebuchadnezzar-megolm.github.io/'],
},
Expand Down Expand Up @@ -247,18 +247,15 @@ const competitorData: { [key: string]: Competitor } = Object.freeze({
competitorDescriptionShort:
'Matrix relies on individual implementations and homeservers to handle backup.',
commDescriptionShort:
'Comm backs up all of your user data, encrypted with either a password or an ETH wallet.',
'Comm backs up all of your user data, encrypted with either a password or an Ethereum wallet.',
competitorDescriptionLong: [
'Matrix relies on homeservers to handle backup of unencrypted chats. Backup of encrypted chats is handled differently depending on which implementations of Matrix you’re using.',
'Matrix relies on homeservers to handle backup of unencrypted chats. Backup of encrypted chats is handled differently depending on which implementation of Matrix you’re using.',
'The most popular implementation of Matrix is Element. Element backs up a group chat’s messages just once for the group, encrypted with the chat keys. Meanwhile, a given user’s chat keys are backed up separately, and encrypted with the user’s Security Phrase/Key.',
],
commDescriptionLong: [
'Comm backs up all of your user data via our backup service. The backup is encrypted so that Comm is not able to access the data.',
'Since Comm doesn’t use a group ratchet due to privacy concerns (see “Encryption” section), group chat backups are not shared between users.',
],
furtherReadingLinks: [
'https://twitter.com/CommDotApp/status/1539397765536444416',
],
},
],
},
Expand Down

0 comments on commit 128e058

Please sign in to comment.