Update changelog and version
This commit is contained in:
parent
f47c35a29e
commit
c662666c42
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -3,6 +3,18 @@
|
||||||
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.3.0
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Startup now waits for current user to be populated or for CONNECTION_OPEN event
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Fixed emote menu causing crashes
|
||||||
|
|
||||||
## 1.2.4
|
## 1.2.4
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "betterdiscord",
|
"name": "betterdiscord",
|
||||||
"version": "1.2.4",
|
"version": "1.3.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": {
|
||||||
|
|
|
@ -1,11 +1,18 @@
|
||||||
export default {
|
export default {
|
||||||
description: "Expect more soon!",
|
description: "Expect more soon!",
|
||||||
changes: [
|
changes: [
|
||||||
|
{
|
||||||
|
title: "Changes",
|
||||||
|
type: "improved",
|
||||||
|
items: [
|
||||||
|
"Startup no longer relies on Guild classes so it should be more stable."
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: "Fixes",
|
title: "Fixes",
|
||||||
type: "fixed",
|
type: "fixed",
|
||||||
items: [
|
items: [
|
||||||
"BetterDiscord loads against after Discord's useless updates."
|
"Emote menu no longer crashes Discord."
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue