Skip to content
Snippets Groups Projects
Unverified Commit e71021e8 authored by Aaron Raimist's avatar Aaron Raimist
Browse files

Add F-Droid button for FluffyChat


Signed-off-by: default avatarAaron Raimist <aaron@raim.ist>
parent b5b8e9a7
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,7 @@ See the License for the specific language governing permissions and ...@@ -11,7 +11,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import { Maturity, Platform, LinkKind, FlathubLink, AppleStoreLink, PlayStoreLink, WebsiteLink } from "../types.js"; import { Maturity, Platform, LinkKind, FlathubLink, AppleStoreLink, PlayStoreLink, FDroidLink, WebsiteLink } from "../types.js";
/** /**
* Information on how to deep link to a given matrix client. * Information on how to deep link to a given matrix client.
...@@ -44,7 +44,7 @@ export class Fluffychat { ...@@ -44,7 +44,7 @@ export class Fluffychat {
getInstallLinks(platform) { getInstallLinks(platform) {
switch (platform) { switch (platform) {
case Platform.iOS: return [new AppleStoreLink("fluffychat", "id1551469600")]; case Platform.iOS: return [new AppleStoreLink("fluffychat", "id1551469600")];
case Platform.Android: return [new PlayStoreLink("chat.fluffy.fluffychat")]; case Platform.Android: return [new PlayStoreLink("chat.fluffy.fluffychat"), new FDroidLink('chat.fluffy.fluffychat')];
case Platform.Linux: return [new FlathubLink("im.fluffychat.Fluffychat")]; case Platform.Linux: return [new FlathubLink("im.fluffychat.Fluffychat")];
default: return [new WebsiteLink("https://fluffychat.im")]; default: return [new WebsiteLink("https://fluffychat.im")];
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment