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

22 lines
719 B
JavaScript
Raw Normal View History

2020-02-28 01:00:12 +01:00
export default {
description: "This version is a hotfix mainly to fix the settings issue.",
2020-02-28 01:00:12 +01:00
changes: [
{
title: "Fixes",
type: "fixed",
2020-02-28 01:00:12 +01:00
items: [
"Fixed an issue with the settings patch failing",
"Fixed an issue with hiding GIF and Gift buttons",
"Fixed certain plugin patches not returning values",
"Updated links to new website"
2020-02-28 01:00:12 +01:00
]
},
{
2021-04-19 03:48:41 +02:00
title: "Power Users & Developers",
type: "improved",
2020-02-28 01:00:12 +01:00
items: [
"Certain patches done using `monkeyPatch` instead of `Patcher` now properly return values."
2020-02-28 01:00:12 +01:00
]
}
]
};