Update version and changelog for release

This commit is contained in:
Zack Rauen 2021-10-22 14:20:33 -04:00
parent 4b04a6d149
commit f8894703c1
3 changed files with 39 additions and 18 deletions

View File

@ -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. 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 ## 1.2.1
### Added ### Added

View File

@ -1,6 +1,6 @@
{ {
"name": "betterdiscord", "name": "betterdiscord",
"version": "1.2.1", "version": "1.2.2",
"description": "Enhances Discord by adding functionality and themes.", "description": "Enhances Discord by adding functionality and themes.",
"main": "src/index.js", "main": "src/index.js",
"scripts": { "scripts": {

View File

@ -1,26 +1,22 @@
export default { export default {
description: "Temporary relief to those on MacOS.", description: "Many new crowdsourced translations added, shout-out to our contributors on POEditor!",
changes: [ changes: [
{
title: "New Translations",
type: "added",
items: [
"Czech, Spanish, Hindi (partial), Italian, Dutch, Norwegian, Portuguese (PT), Romanian, Russian, Turkish"
]
},
{ {
title: "Fixes", title: "Fixes",
type: "fixed", type: "fixed",
items: [ items: [
"Fixed open plugin/theme folder on Mac.", "The following were all thanks to Strencher! (https://github.com/Strencher)",
"Fixed screensharing, audio and video on Mac.", "The public servers button is back!",
"Fixed dropdowns, and custom css page not opening. Thanks, Strencher. (https://github.com/Strencher)", "Guild related classes are back too!",
"Fixed popout editor not working when custom css was disabled. Thanks, Qb. (https://github.com/QbDesu)", "Fixed webpack module search on Canary.",
"Fixed crashing for some users when duplicate files were found. Thanks, Strencher. (https://github.com/Strencher)" "Fixed `window.webpackJsonp` related plugin issues via polyfill. Note: This will be removed in future versions."
]
},
{
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)"
] ]
} }
] ]