diff --git a/CHANGELOG.md b/CHANGELOG.md index 98acfad0..3ea1415a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ 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.0 + +### Added +- Remove minimum window size now remembers desired size +- Basic semver comparison + +### Removed +- Public Servers +- Old DataStore functions that are no longer used + +### Changed +- All main react components are now functional with hooks +- Mac now uses cmd instead of ctrl + +### Fixed +- Fixed dropdowns +- Fixed markdown parser + ## 1.8.5 ### Added diff --git a/package.json b/package.json index ffcffd48..9b834fe3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "betterdiscord", - "version": "1.8.5", + "version": "1.9.0", "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 67ceffb9..911ffabb 100644 --- a/renderer/src/data/changelog.js +++ b/renderer/src/data/changelog.js @@ -1,24 +1,23 @@ // fixed, improved, added, progress export default { - description: "Discord changed a lot of things internally once again! Please have patience while plugins and even themes catch up!", + description: "The first of the performance updates is here!", changes: [ { title: "What's New?", type: "improved", items: [ - "Added support for a custom version of React DevTools. (Thanks @Zerthox)", - "We are now using a custom header component in settings to prevent future crashes.", - "Plugins now have a new experimental API for component access, `BdApi.Components`. Currently only `Tooltip` exists." + "**The entire BetterDiscord UI got a rewrite.** Things may _look_ mostly the same, but underneath they were completely redone with speed in mind.", + "Better version comparisons when checking for updates! You should no longer end up in update loops.", + "After polls on both Discord and Twitter, the __Public Servers module was removed__. For those that liked it, stay tuned for the official plugin!", + "For those using the **Remove Minimum Size** option, BetterDiscord will now remember your desired window size!" ] }, { title: "Bug Fixes", type: "fixed", items: [ - "Fixed crashing when opening settings.", - "Fixed modals either not opening and/or crashing.", - "Fixed context menus not working and/or crashing.", - "Fixed coloring for `danger` context menus. (Thanks @samfundev)" + "Devtools shortcut now correctly uses `cmd` on Mac.", + "Plugin and theme pages now render properly.", ] } ]