diff --git a/CHANGELOG.md b/CHANGELOG.md index 59c5ec29..ba6b2649 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,31 @@ 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.2.2 + +### Added +- Added Czech translation +- Added Spanish translation +- Added Hindi (partial) translation +- Added Italian translation +- Added Dutch translation +- Added Norwegian translation +- Added Portuguese (PT) translation +- Added Romanian translation +- Added Russian translation +- Added Turkish translation + +### Removed + +### Changed +- `window.webpackJsonp` is temporarily polyfilled for Canary but _will_ be disappearing +- Updated French translation +- Updated Germand translation + +### Fixed +- Fixed public servers missing (Thanks [Strencher](https://github.com/Strencher)) +- Fixed guild classes missing (Thanks [Strencher](https://github.com/Strencher)) + ## 1.2.1 ### Added diff --git a/package.json b/package.json index adc36229..0ecc9bf2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "betterdiscord", - "version": "1.2.1", + "version": "1.2.2", "description": "Enhances Discord by adding functionality and themes.", "main": "src/index.js", "scripts": { diff --git a/renderer/src/data/changelog.js b/renderer/src/data/changelog.js index 0af5cfe8..dff6b8b1 100644 --- a/renderer/src/data/changelog.js +++ b/renderer/src/data/changelog.js @@ -1,26 +1,22 @@ export default { - description: "Temporary relief to those on MacOS.", + description: "Many new crowdsourced translations added, shout-out to our contributors on POEditor!", changes: [ + { + title: "New Translations", + type: "added", + items: [ + "Czech, Spanish, Hindi (partial), Italian, Dutch, Norwegian, Portuguese (PT), Romanian, Russian, Turkish" + ] + }, { title: "Fixes", type: "fixed", items: [ - "Fixed open plugin/theme folder on Mac.", - "Fixed screensharing, audio and video on Mac.", - "Fixed dropdowns, and custom css page not opening. Thanks, Strencher. (https://github.com/Strencher)", - "Fixed popout editor not working when custom css was disabled. Thanks, Qb. (https://github.com/QbDesu)", - "Fixed crashing for some users when duplicate files were found. Thanks, Strencher. (https://github.com/Strencher)" - ] - }, - { - title: "Power Users & Developers", - type: "improved", - items: [ - "Plugin data retrieval will now return the correct values instead of `undefined` for falsey values.", - "Plugin data can now be set before being retrieved.", - "The `Patcher` in `BdApi` now has a `getPatchesByCaller` function which will return all the patches corresponding to a caller string.", - "Plugins that fail on initial load will no longer be forever in a broken state. Thanks, Strencher. (https://github.com/Strencher)", - "React DevTools should now work on Linux! Thanks, Qb. (https://github.com/QbDesu)" + "The following were all thanks to Strencher! (https://github.com/Strencher)", + "The public servers button is back!", + "Guild related classes are back too!", + "Fixed webpack module search on Canary.", + "Fixed `window.webpackJsonp` related plugin issues via polyfill. Note: This will be removed in future versions." ] } ]