From 6adc259acc005afce01ed4b8c6102530a56d95dd Mon Sep 17 00:00:00 2001 From: Zack Rauen Date: Sun, 7 Aug 2022 20:50:34 -0400 Subject: [PATCH] Bump version and update changelog --- CHANGELOG.md | 17 +++++++++++++++++ package.json | 2 +- renderer/src/data/changelog.js | 23 +++++++++++++++++++---- 3 files changed, 37 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1352d9d..6f4ded9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ 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.6.0 + +### Added +- Better handling and fallback when the editor fails to load. (Thanks Qb) +- Now able to sort addons by whether they're enabled. (Thanks TheGreenPig) +- New `Webpack` API added for plugin developers to take advantage of. + +### Removed + +### Changed +- Addon loading no longer uses `require` +- Addon error modal updated (Thanks Qb) +- Fixed plugin error display on the modal + +### Fixed +- Fixed dispatcher changes by Discord + ## 1.5.3 ### Added diff --git a/package.json b/package.json index 57770b99..0dae6b0b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "betterdiscord", - "version": "1.5.3", + "version": "1.6.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 674c3de4..e50e74da 100644 --- a/renderer/src/data/changelog.js +++ b/renderer/src/data/changelog.js @@ -1,11 +1,26 @@ +// fixed, improved, added, progress export default { - description: "Improvements coming soon!", + description: "Big things are coming soon, this is just the tip of the iceberg!", changes: [ { - title: "Fixes", - type: "fixed", + title: "What's New?", + type: "added", items: [ - "Injection on Canary is fixed!" + "Better handling and fallback when the editor fails to load. (Thanks Qb)", + "Now able to sort addons by whether they're enabled. (Thanks TheGreenPig)", + "New `Webpack` API added for plugin developers to take advantage of. Please see the docs for details!", + "New developer docs (still work-in-progress) available at https://docs.betterdiscord.app" + ] + }, + { + title: "Improvements", + type: "improved", + items: [ + "Addons should now load faster, use less memory, and be a bit more consistent!", + "Addon error modal should work a little better. (Thanks Qb)", + "Plugin and startup errors should make more sense now.", + "The crash dialog has more information and more buttons.", + "Minor speed and memory improvements." ] } ]