Change android and ios client downloads to use /download endpoint, update Release entity to suck less

This commit is contained in:
Madeline
2022-10-24 14:35:08 +11:00
parent 67a8c0d445
commit fc2ccc0b25
6 changed files with 68 additions and 32 deletions

View File

@@ -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;
};