From 7160ae2f685c9013de1c05362261ca51e46521da Mon Sep 17 00:00:00 2001 From: Madeline <46743919+MaddyUnderStars@users.noreply.github.com> Date: Wed, 21 Dec 2022 16:04:55 +1100 Subject: Fix logo patch and update changelog generator --- scripts/changelog.js | 4 ++-- scripts/client.js | 16 +++------------- 2 files changed, 5 insertions(+), 15 deletions(-) (limited to 'scripts') diff --git a/scripts/changelog.js b/scripts/changelog.js index 4e0936df..e3468b29 100644 --- a/scripts/changelog.js +++ b/scripts/changelog.js @@ -16,7 +16,7 @@ const CACHE_PATH = path.join(__dirname, "..", "assets", "cache"); const CHANGELOG_PATH = path.join(__dirname, "..", "assets", "changelog.txt"); const BASE_URL = "https://discord.com"; -const CHANGELOG_SCRIPT = "9c4b2d313c6e1c864e89.js"; +const CHANGELOG_SCRIPT = "4ec0b5948572d31df88b.js"; (async () => { const res = await fetch(`${BASE_URL}/assets/${CHANGELOG_SCRIPT}`); @@ -28,7 +28,7 @@ const CHANGELOG_SCRIPT = "9c4b2d313c6e1c864e89.js"; .replaceAll("\n", "\\n") .replaceAll("\'", "\\'"); - const index = text.indexOf("e.exports='---changelog---") + 11; + const index = text.indexOf("t.exports='---changelog---") + 11; const endIndex = text.indexOf("'\n", index); // hmm await fs.writeFile( diff --git a/scripts/client.js b/scripts/client.js index 43452a31..f53e7634 100644 --- a/scripts/client.js +++ b/scripts/client.js @@ -86,11 +86,11 @@ const doPatch = (content) => { ['"Servers,"', '"Guilds,"'], [' Servers,"', ' Guilds,"'], [' Servers,', ' Guilds,'], + + ['\nServers', '\nGuilds'], ]; serverVariations.forEach(x => serverVariations.push([x[0].toLowerCase(), x[1].toLowerCase()])); serverVariations.forEach(x => content = content.replaceAll(x[0], x[1])); - // can't match \nServers for some reason - content = content.replaceAll('Servers in the Hub are student-run, but may include non-students."', 'Guilds in the Hub are student-run, but may include non-students."'); // sentry content = content.replaceAll("https://fa97a90475514c03a42f80cd36d147c4@sentry.io/140984", "https://05e8e3d005f34b7d97e920ae5870a5e5@sentry.thearcanebrony.net/6"); @@ -100,17 +100,7 @@ const doPatch = (content) => { "M23.0212 1.67671C21.3107 0.879656 19.5079 0.318797 17.6584 0C17.4062 0.461742 17.1749 0.934541 16.9708 1.4184C15.003 1.12145 12.9974 1.12145 11.0283 1.4184C10.819 0.934541 10.589 0.461744 10.3368 0.00546311C8.48074 0.324393 6.67795 0.885118 4.96746 1.68231C1.56727 6.77853 0.649666 11.7538 1.11108 16.652C3.10102 18.1418 5.3262 19.2743 7.69177 20C8.22338 19.2743 8.69519 18.4993 9.09812 17.691C8.32996 17.3997 7.58522 17.0424 6.87684 16.6135C7.06531 16.4762 7.24726 16.3387 7.42403 16.1847C11.5911 18.1749 16.408 18.1749 20.5763 16.1847C20.7531 16.3332 20.9351 16.4762 21.1171 16.6135C20.41 17.0369 19.6639 17.3997 18.897 17.691C19.3052 18.4993 19.7718 19.2689 20.3021 19.9945C22.6677 19.2689 24.8929 18.1364 26.8828 16.6466H26.8893C27.43 10.9731 25.9665 6.04728 23.0212 1.67671ZM9.68041 13.6383C8.39754 13.6383 7.34085 12.4453 7.34085 10.994C7.34085 9.54272 8.37155 8.34973 9.68041 8.34973C10.9893 8.34973 12.0395 9.54272 12.0187 10.994C12.0187 12.4453 10.9828 13.6383 9.68041 13.6383ZM18.3161 13.6383C17.0332 13.6383 15.9765 12.4453 15.9765 10.994C15.9765 9.54272 17.0124 8.34973 18.3161 8.34973C19.6184 8.34973 20.6751 9.54272 20.6543 10.994C20.6543 12.4453 19.6184 13.6383 18.3161 13.6383Z", "M 0,0 47.999993,2.7036528e-4 C 48.001796,3.3028172 47.663993,6.5968018 46.991821,9.8301938 43.116101,28.454191 28.452575,43.116441 9.8293509,46.992163 6.5960834,47.664163 3.3023222,48.001868 0,47.999992 Z m 9.8293509,28.735114 v 9.248482 C 22.673599,33.047696 32.857154,22.749268 37.63852,9.829938 H 9.8293509 v 8.679899 H 22.931288 c -3.554489,3.93617 -7.735383,7.257633 -12.373436,9.829938 -0.241031,0.133684 -0.483864,0.265492 -0.7285011,0.395339 z" ); - content = content.replaceAll('width:n,height:o,viewBox:"0 0 28 20"', 'width:48,height:48,viewBox:"0 0 48 48"'); - - //save some time on load resolving asset urls... - content = content.replaceAll( - 'e.exports = n.p + "', - 'e.exports = "/assets/', - ); - content = content.replaceAll( - 'e.exports = r.p + "', - 'e.exports = "/assets/', - ); + content = content.replaceAll('width:n,height:c,viewBox:"0 0 28 20"', 'width:50,height:50,viewBox:"0 0 50 50"'); // app download links // content = content.replaceAll( -- cgit 1.4.1