From 9ebfbdc894b13d1f21970819946ce24ba3b61e17 Mon Sep 17 00:00:00 2001 From: Zack Rauen Date: Thu, 26 Oct 2023 15:26:55 -0400 Subject: [PATCH] Update version and changelog --- package.json | 2 +- renderer/src/data/changelog.js | 15 +++++++-------- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/package.json b/package.json index 43a17743..3a59a491 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "betterdiscord", - "version": "1.9.4", + "version": "1.9.5", "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 5e063e94..0c7eb5c0 100644 --- a/renderer/src/data/changelog.js +++ b/renderer/src/data/changelog.js @@ -1,22 +1,21 @@ // fixed, improved, added, progress 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: [ { - title: "What's New?", + title: "What's Fixed?", type: "improved", 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)", - "`BdApi.Net.fetch` now has an optional `timeout` parameter to help avoid long requests." + "Patching webpack modules is now fixed for plugins.", + "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", items: [ - "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." + "Individual plugins and themes will still need to make their own updates.", ] } ]