summaryrefslogtreecommitdiffhomepage
path: root/gui/src
diff options
context:
space:
mode:
Diffstat (limited to 'gui/src')
-rw-r--r--gui/src/main/changelog.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/src/main/changelog.ts b/gui/src/main/changelog.ts
index 4c169b055b..76fead30af 100644
--- a/gui/src/main/changelog.ts
+++ b/gui/src/main/changelog.ts
@@ -6,7 +6,7 @@ import log from '../shared/logging';
// Reads and parses the changelog file.
export function readChangelog(): IChangelog {
try {
- const changelogPath = path.join(__dirname, '..', '..', '..', 'changelog.txt');
+ const changelogPath = path.join(__dirname, '..', '..', '..', 'changes.txt');
const contents = fs.readFileSync(changelogPath).toString();
return parseChangelog(contents);
} catch (e) {