Bump version and update changelog
This commit is contained in:
parent
ea1820143a
commit
6adc259acc
17
CHANGELOG.md
17
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
|
||||
|
|
|
@ -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": {
|
||||
|
|
|
@ -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."
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue