From c662666c423f73e4086a39376b09fc5356c0a6e9 Mon Sep 17 00:00:00 2001 From: Zack Rauen Date: Sun, 14 Nov 2021 00:57:45 -0500 Subject: [PATCH] Update changelog and version --- CHANGELOG.md | 12 ++++++++++++ package.json | 2 +- renderer/src/data/changelog.js | 9 ++++++++- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55e84909..58bb0fb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,18 @@ This changelog starts with the restructured 1.0.0 release that happened after context isolation changes. The changelogs here should more-or-less mirror the ones that get shown in the client but probably with less formatting and pizzazz. +## 1.3.0 + +### Added + +### Removed + +### Changed +- Startup now waits for current user to be populated or for CONNECTION_OPEN event + +### Fixed +- Fixed emote menu causing crashes + ## 1.2.4 ### Added diff --git a/package.json b/package.json index 94f6d487..29aa8304 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "betterdiscord", - "version": "1.2.4", + "version": "1.3.0", "description": "Enhances Discord by adding functionality and themes.", "main": "src/index.js", "scripts": { diff --git a/renderer/src/data/changelog.js b/renderer/src/data/changelog.js index 0413b06f..0e123d74 100644 --- a/renderer/src/data/changelog.js +++ b/renderer/src/data/changelog.js @@ -1,11 +1,18 @@ export default { description: "Expect more soon!", changes: [ + { + title: "Changes", + type: "improved", + items: [ + "Startup no longer relies on Guild classes so it should be more stable." + ] + }, { title: "Fixes", type: "fixed", items: [ - "BetterDiscord loads against after Discord's useless updates." + "Emote menu no longer crashes Discord." ] } ]