Update version and changelog
This commit is contained in:
parent
bee11905dd
commit
68688684a6
32
CHANGELOG.md
32
CHANGELOG.md
|
@ -2,6 +2,38 @@
|
|||
|
||||
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.9.4
|
||||
|
||||
### Added
|
||||
- New css variable `--os-accent-color`
|
||||
- Temporary `Buffer` polyfill
|
||||
|
||||
### Removed
|
||||
|
||||
### Changed
|
||||
- `BdApi.Net.fetch` now has an optional `timeout` parameter
|
||||
|
||||
### Fixed
|
||||
- Fixes not being able to use `http` for `BdApi.Net.fetch`.
|
||||
- Bad URLs and other early errors in `BdApi.Net.fetch` now handled better.
|
||||
|
||||
## 1.9.3
|
||||
|
||||
### Added
|
||||
- Multiple shorthand functions under `BdApi.Webpack`
|
||||
- New `getStore` filter
|
||||
|
||||
### Removed
|
||||
|
||||
### Changed
|
||||
- Updated translations
|
||||
|
||||
### Fixed
|
||||
- Fixed header color in light mode.
|
||||
- Fixed window size retention for users of remove minimum size option.
|
||||
- Fixed a toast saying an addon was loaded when it was unloaded.
|
||||
- Fixed context menu patching API for plugins.
|
||||
|
||||
## 1.9.2
|
||||
|
||||
### Added
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "betterdiscord",
|
||||
"version": "1.9.3",
|
||||
"version": "1.9.4",
|
||||
"description": "Enhances Discord by adding functionality and themes.",
|
||||
"main": "src/index.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -6,19 +6,17 @@ export default {
|
|||
title: "What's New?",
|
||||
type: "improved",
|
||||
items: [
|
||||
"Updated translations for many languages! Thank you to our many contributors!",
|
||||
"New shorthand API methods for developers available under `BdApi.Webpack`. Documentation should be updated soon!",
|
||||
"Also a new `Filter` has been added for internal stores. This includes the `getStore` shorthand!"
|
||||
"There's a new css variable themes can make use of called `--os-accent-color` which is the accent color used by the user's operating system. (Thanks @axolotl)",
|
||||
"`BdApi.Net.fetch` now has an optional `timeout` parameter to help avoid long requests."
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Bug Fixes",
|
||||
type: "fixed",
|
||||
items: [
|
||||
"Fixed header color in light mode. (Thanks @Fede)",
|
||||
"Fixed window size retention for users of remove minimum size option. (Thanks @Neodymium)",
|
||||
"Fixed a toast saying an addon was loaded when it was unloaded. (Thanks @benji78)",
|
||||
"Fixed context menu patching API for plugins. (Thanks @Strencher)"
|
||||
"Adds a temporary `Buffer` polyfill and deprecates the usage of `Buffer`.",
|
||||
"Fixes not being able to use `http` for `BdApi.Net.fetch`.",
|
||||
"Bad URLs and other early errors in `BdApi.Net.fetch` now handled better."
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue