BetterDiscordApp-rauenzi/renderer/src/data/changelog.js

23 lines
722 B
JavaScript
Raw Normal View History

2022-08-08 02:50:34 +02:00
// fixed, improved, added, progress
2020-02-28 01:00:12 +01:00
export default {
2023-10-26 21:26:55 +02:00
description: "This update is just a hotfix for the recent Discord update!",
2020-02-28 01:00:12 +01:00
changes: [
2023-06-15 21:38:26 +02:00
{
2023-10-26 21:26:55 +02:00
title: "What's Fixed?",
2023-06-15 21:38:26 +02:00
type: "improved",
items: [
2023-10-26 21:26:55 +02:00
"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."
2023-06-15 21:38:26 +02:00
]
},
2020-02-28 01:00:12 +01:00
{
2023-10-26 21:26:55 +02:00
title: "What's not fixed?",
2022-08-09 19:28:50 +02:00
type: "fixed",
2020-02-28 01:00:12 +01:00
items: [
2023-10-26 21:26:55 +02:00
"Individual plugins and themes will still need to make their own updates.",
2020-02-28 01:00:12 +01:00
]
}
]
2023-03-25 13:06:04 +01:00
};