do copy change in other pr if needed

This commit is contained in:
Bruno Windels 2020-11-24 12:21:39 +01:00
parent d484a9a423
commit f8c16f520e

View File

@ -22,7 +22,7 @@ import {
Platform, Platform,
AppleStoreLink, AppleStoreLink,
PlayStoreLink, PlayStoreLink,
FDroidLink FDroidLink,
} from './types'; } from './types';
import { LinkKind } from '../parser/types'; import { LinkKind } from '../parser/types';
import logo from '../imgs/element.svg'; import logo from '../imgs/element.svg';
@ -34,7 +34,7 @@ export const Element: LinkedClient = {
logo: logo, logo: logo,
homepage: 'https://element.io', homepage: 'https://element.io',
maturity: Maturity.STABLE, maturity: Maturity.STABLE,
description: 'Cross platfom fully-featured Matrix client', description: 'Fully-featured Matrix client',
platforms: [Platform.Desktop, Platform.Android, Platform.iOS], platforms: [Platform.Desktop, Platform.Android, Platform.iOS],
experimental: false, experimental: false,
clientId: ClientId.Element, clientId: ClientId.Element,
@ -63,9 +63,9 @@ export const Element: LinkedClient = {
}, },
linkSupport: () => true, linkSupport: () => true,
installLinks: [ installLinks: [
new AppleStoreLink("vector", "id1083446067"), new AppleStoreLink('vector', 'id1083446067'),
new PlayStoreLink("im.vector.app"), new PlayStoreLink('im.vector.app'),
new FDroidLink("im.vector.app"), new FDroidLink('im.vector.app'),
], ],
}; };