From 0be194913036735b5bc97d74a37550d2bd099f13 Mon Sep 17 00:00:00 2001 From: Madeline <46743919+MaddyUnderStars@users.noreply.github.com> Date: Mon, 24 Oct 2022 14:35:08 +1100 Subject: Change android and ios client downloads to use /download endpoint, update Release entity to suck less --- scripts/client.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'scripts') diff --git a/scripts/client.js b/scripts/client.js index cba36170..6ec17341 100644 --- a/scripts/client.js +++ b/scripts/client.js @@ -63,6 +63,23 @@ const doPatch = (content) => { 'e.exports = "/assets/', ); + // app download links + content = content.replaceAll( + "https://play.google.com/store/apps/details?id=com.discord", + "https://slowcord.understars.dev/api/download?platform=android", + ); + + content = content.replaceAll( + "https://itunes.apple.com/app/discord/id985746746", + "https://slowcord.understars.dev/api/download?platform=ios" + ) + + // TODO change public test build link + // content = content.replaceAll( + // "https://discord.com/download#ptb-card", + // "" + // ) + return content; }; -- cgit 1.4.1