From 54f655c2045a662dfea1c6287e6be5fe8ed50520 Mon Sep 17 00:00:00 2001 From: Zack Rauen Date: Thu, 15 Jun 2023 15:38:26 -0400 Subject: [PATCH] Update version and changelog --- package.json | 2 +- renderer/src/data/changelog.js | 23 ++++++++++++++--------- 2 files changed, 15 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index acb3e747..ff9434e5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "betterdiscord", - "version": "1.9.2", + "version": "1.9.3", "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 9838fe59..e0511210 100644 --- a/renderer/src/data/changelog.js +++ b/renderer/src/data/changelog.js @@ -1,19 +1,24 @@ // fixed, improved, added, progress export default { - description: "Hotfix!", + description: "This update has a few important bugfixes but it also contains some important QOL updates for plugin developers!", changes: [ - // { - // title: "What's New?", - // type: "improved", - // items: [ - // "Added SourceURL for the renderer. This makes it easier for developers to identify BD in call stacks.", - // ] - // }, + { + 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!" + ] + }, { title: "Bug Fixes", type: "fixed", items: [ - "Fixed context menu crashes & api", + "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)" ] } ]