summary refs log tree commit diff
path: root/scripts/changelog.js
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-12-17 17:14:49 +1100
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-12-17 17:14:49 +1100
commit118a30ca1ef3bb7cfbf13eb0ae8820dc1feb1f59 (patch)
treeac45cbcdac7dad5b27901a4f765074558afe06bf /scripts/changelog.js
parentUpdate readme (diff)
downloadserver-118a30ca1ef3bb7cfbf13eb0ae8820dc1feb1f59.tar.xz
First pass of removing Slowcord mentions
Diffstat (limited to 'scripts/changelog.js')
-rw-r--r--scripts/changelog.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/changelog.js b/scripts/changelog.js

index 412e6e0c..4e0936df 100644 --- a/scripts/changelog.js +++ b/scripts/changelog.js
@@ -1,3 +1,13 @@ +/* + Changelogs are baked inside the discord.com web client. + To change them, we simply need to update the changelog in a specific file of the client. + For v134842, thats 9c4b2d313c6e1c864e89.js, but it'll be different for every version. + To find which file the changelog is stored in your client, simply grep for the changelog text given by the client, + and update the `CHANGELOG_SCRIPT` variable to use that instead. + + This grabs the new changelog from `fosscord-server/assets/changelog.txt` +*/ + const fetch = require("node-fetch"); const fs = require("fs/promises"); const path = require("path");