Update version and changelog

This commit is contained in:
Zack Rauen 2023-10-26 15:26:55 -04:00
parent 19e622e455
commit 9ebfbdc894
2 changed files with 8 additions and 9 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "betterdiscord", "name": "betterdiscord",
"version": "1.9.4", "version": "1.9.5",
"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,22 +1,21 @@
// fixed, improved, added, progress // fixed, improved, added, progress
export default { export default {
description: "This update has a few important bugfixes but it also contains some important QOL updates for plugin developers!", description: "This update is just a hotfix for the recent Discord update!",
changes: [ changes: [
{ {
title: "What's New?", title: "What's Fixed?",
type: "improved", type: "improved",
items: [ items: [
"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)", "Patching webpack modules is now fixed for plugins.",
"`BdApi.Net.fetch` now has an optional `timeout` parameter to help avoid long requests." "Themes are placed later in the DOM than Discord's CSS giving them priority.",
"BetterDiscord's modals should all be working."
] ]
}, },
{ {
title: "Bug Fixes", title: "What's not fixed?",
type: "fixed", type: "fixed",
items: [ items: [
"Adds a temporary `Buffer` polyfill and deprecates the usage of `Buffer`.", "Individual plugins and themes will still need to make their own updates.",
"Fixes not being able to use `http` for `BdApi.Net.fetch`.",
"Bad URLs and other early errors in `BdApi.Net.fetch` now handled better."
] ]
} }
] ]