diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fdf7b19..314bcad7 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/package.json b/package.json index bb2a0bde..43a17743 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/renderer/src/data/changelog.js b/renderer/src/data/changelog.js index e0511210..5e063e94 100644 --- a/renderer/src/data/changelog.js +++ b/renderer/src/data/changelog.js @@ -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." ] } ]