Bump version and update changelog

This commit is contained in:
Zack Rauen 2022-08-07 20:50:34 -04:00
parent ea1820143a
commit 6adc259acc
3 changed files with 37 additions and 5 deletions

View File

@ -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. 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 ## 1.5.3
### Added ### Added

View File

@ -1,6 +1,6 @@
{ {
"name": "betterdiscord", "name": "betterdiscord",
"version": "1.5.3", "version": "1.6.0",
"description": "Enhances Discord by adding functionality and themes.", "description": "Enhances Discord by adding functionality and themes.",
"main": "src/index.js", "main": "src/index.js",
"scripts": { "scripts": {

View File

@ -1,11 +1,26 @@
// fixed, improved, added, progress
export default { export default {
description: "Improvements coming soon!", description: "Big things are coming soon, this is just the tip of the iceberg!",
changes: [ changes: [
{ {
title: "Fixes", title: "What's New?",
type: "fixed", type: "added",
items: [ 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."
] ]
} }
] ]