1 files changed, 5 insertions, 3 deletions
diff --git a/scripts/changelog.js b/scripts/changelog.js
index 9f564bcd..f6329a46 100644
--- a/scripts/changelog.js
+++ b/scripts/changelog.js
@@ -1,6 +1,6 @@
/*
- Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
- Copyright (C) 2023 Fosscord and Fosscord Contributors
+ Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
+ Copyright (C) 2023 Spacebar and Spacebar Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
@@ -23,9 +23,11 @@
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`
+ This grabs the new changelog from `spacebarchat/server/assets/changelog.txt`
*/
+/* eslint-env node */
+
const fetch = require("node-fetch");
const fs = require("fs/promises");
const path = require("path");
|