Update changelog and version
This commit is contained in:
parent
68d8b0dc0e
commit
7e8c114f65
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -2,6 +2,19 @@
|
|||
|
||||
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.3
|
||||
|
||||
### Added
|
||||
|
||||
### Removed
|
||||
|
||||
### Changed
|
||||
- Plugin startup errors should be more descriptive for developers.
|
||||
|
||||
### Fixed
|
||||
- Fixed an issue where custom css crashed Discord.
|
||||
- Fixed an issue where `waitForModule` returned a boolean instead of a module.
|
||||
|
||||
## 1.6.2
|
||||
|
||||
### Added
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "betterdiscord",
|
||||
"version": "1.6.2",
|
||||
"version": "1.6.3",
|
||||
"description": "Enhances Discord by adding functionality and themes.",
|
||||
"main": "src/index.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -1,12 +1,20 @@
|
|||
// fixed, improved, added, progress
|
||||
export default {
|
||||
description: "Sorry for all the updates lately, Discord has been making a lot of internal changes!",
|
||||
description: "Discord is _still_ making a lot of internal changes!",
|
||||
changes: [
|
||||
{
|
||||
title: "Changes",
|
||||
type: "improved",
|
||||
items: [
|
||||
"Plugin startup errors should be more descriptive for developers.",
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Fixes",
|
||||
type: "fixed",
|
||||
items: [
|
||||
"Fixed an issue where BD wouldn't load on canary/ptb.",
|
||||
"Fixed an issue where custom css crashed Discord.",
|
||||
"Fixed an issue where `waitForModule` returned a boolean instead of a module.",
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue