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

29 lines
939 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 {
2022-10-15 07:00:14 +02:00
description: "Several new translations have been added thanks to our wonderful volunteers!",
2020-02-28 01:00:12 +01:00
changes: [
2022-08-17 02:37:03 +02:00
{
2022-10-15 07:00:14 +02:00
title: "New or Updated Translations",
2022-08-17 02:37:03 +02:00
type: "improved",
items: [
2022-10-15 07:00:14 +02:00
"Finnish",
"Hungarian",
"Italian",
"Japanese",
"Korean",
"Russian",
"Ukrainian"
2022-08-17 02:37:03 +02:00
]
},
2020-02-28 01:00:12 +01:00
{
2022-10-10 21:00:37 +02:00
title: "Bug Fixes",
2022-08-09 19:28:50 +02:00
type: "fixed",
2020-02-28 01:00:12 +01:00
items: [
2022-10-15 07:00:14 +02:00
"Fixed a few issues with our context menu api.",
"Fixed an issue in our API that could lead to styles not being removed correctly.",
2022-10-16 00:15:03 +02:00
"Fixed an issue where `getOwnerInstance` would cause an error.",
"Fixed an issue with the core updater not updating on click."
2020-02-28 01:00:12 +01:00
]
}
]
};