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

27 lines
1.2 KiB
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 {
2022-08-08 02:50:34 +02:00
description: "Big things are coming soon, this is just the tip of the iceberg!",
2020-02-28 01:00:12 +01:00
changes: [
{
2022-08-08 02:50:34 +02:00
title: "What's New?",
type: "added",
2020-02-28 01:00:12 +01:00
items: [
2022-08-08 02:50:34 +02:00
"Better handling and fallback when the editor fails to load. (Thanks Qb)",
"Now able to sort addons by whether they're enabled. (Thanks TheGreenPig)",
"New `Webpack` API added for plugin developers to take advantage of. Please see the docs for details!",
"New developer docs (still work-in-progress) available at https://docs.betterdiscord.app"
]
},
{
title: "Improvements",
type: "improved",
items: [
"Addons should now load faster, use less memory, and be a bit more consistent!",
"Addon error modal should work a little better. (Thanks Qb)",
"Plugin and startup errors should make more sense now.",
"The crash dialog has more information and more buttons.",
"Minor speed and memory improvements."
2020-02-28 01:00:12 +01:00
]
}
]
};