Bump to 1.9.1

This commit is contained in:
square 2023-03-25 13:06:04 +01:00 committed by square
parent fbff8e2e52
commit 2fbd3c6090
4 changed files with 19 additions and 10 deletions

View File

@ -2,6 +2,18 @@
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.1
### Added
- SourceURL for the renderer
### Removed
### Changed
### Fixed
- Fixed client crashes
## 1.9.0
### Added

View File

@ -1,6 +1,6 @@
{
"name": "betterdiscord",
"version": "1.9.0",
"version": "1.9.1",
"description": "Enhances Discord by adding functionality and themes.",
"main": "src/index.js",
"scripts": {

View File

@ -1,24 +1,20 @@
// fixed, improved, added, progress
export default {
description: "The first of the performance updates is here!",
description: "Hotfix!",
changes: [
{
title: "What's New?",
type: "improved",
items: [
"**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!"
"Added SourceURL for the renderer. This makes it easier for developers to identify BD in call stacks.",
]
},
{
title: "Bug Fixes",
type: "fixed",
items: [
"Devtools shortcut now correctly uses `cmd` on Mac.",
"Plugin and theme pages now render properly.",
"Fixed immediate crashes.",
]
}
]
};
};

View File

@ -168,7 +168,8 @@ export default class WebpackModules {
if (typeof(exports) === "object" && searchExports && exports[Symbol.toStringTag] !== "DOMTokenList") {
for (const key in exports) {
let foundModule = null, wrappedExport = null;
let foundModule = null;
let wrappedExport = null;
try {wrappedExport = exports[key];} catch {continue;}
if (!wrappedExport) continue;