Update changelog and version

This commit is contained in:
Zack Rauen 2022-08-16 20:37:03 -04:00
parent 68d8b0dc0e
commit 7e8c114f65
3 changed files with 24 additions and 3 deletions

View File

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

View File

@ -1,6 +1,6 @@
{ {
"name": "betterdiscord", "name": "betterdiscord",
"version": "1.6.2", "version": "1.6.3",
"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,12 +1,20 @@
// fixed, improved, added, progress // fixed, improved, added, progress
export default { 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: [ changes: [
{
title: "Changes",
type: "improved",
items: [
"Plugin startup errors should be more descriptive for developers.",
]
},
{ {
title: "Fixes", title: "Fixes",
type: "fixed", type: "fixed",
items: [ 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.",
] ]
} }
] ]