Update version and changelog
- Fixes #854 - Fixes #1104 - Fixes #1102 - Fixes #1087
This commit is contained in:
parent
b4b7a158e3
commit
a244863157
16
CHANGELOG.md
16
CHANGELOG.md
|
@ -3,6 +3,22 @@
|
|||
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.4.0
|
||||
|
||||
### Added
|
||||
- Notices API (Thanks [Strencher](https://github.com/Strencher))
|
||||
|
||||
### Removed
|
||||
|
||||
### Changed
|
||||
|
||||
### Fixed
|
||||
- Fixed outdates styles and classnames (Thanks [Strencher](https://github.com/Strencher))
|
||||
- Fixed guild list classes being overwritten causing the public server button to not show
|
||||
- Fixed finding the wrong module for `ActionTypes` in custom css module
|
||||
- Fixed not removing customcss upon disable
|
||||
- Fixed media keys commandline switch not being applied
|
||||
|
||||
## 1.3.0
|
||||
|
||||
### Added
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "betterdiscord",
|
||||
"version": "1.3.0",
|
||||
"version": "1.4.0",
|
||||
"description": "Enhances Discord by adding functionality and themes.",
|
||||
"main": "src/index.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -2,17 +2,21 @@ export default {
|
|||
description: "Expect more soon!",
|
||||
changes: [
|
||||
{
|
||||
title: "Changes",
|
||||
type: "improved",
|
||||
title: "What's new?",
|
||||
type: "added",
|
||||
items: [
|
||||
"Startup no longer relies on Guild classes so it should be more stable."
|
||||
"New notices API for developers available via `BdApi.showNotice`! Docs coming soon."
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Fixes",
|
||||
type: "fixed",
|
||||
items: [
|
||||
"Emote menu no longer crashes Discord."
|
||||
"Outdated styles and classnames have been fixed.",
|
||||
"Public servers button shows again.",
|
||||
"Disable Media Keys option actually prevents Discord from hijacking media keys again.",
|
||||
"CustomCSS is removed if you disable the system.",
|
||||
"CSS editor popout no longer turns the screen gray."
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
|
@ -127,8 +127,8 @@ export default new class Core {
|
|||
if (!hasUpdate) return;
|
||||
|
||||
// TODO: move to strings file when updater is complete.
|
||||
Modals.showConfirmationModal("Update Available", `BetterDiscord (${Config.version}) has an available update available (${remoteVersion}). Would you like to update now?`, {
|
||||
confirmText: "Update",
|
||||
Modals.showConfirmationModal("Update Available", `BetterDiscord (v${Config.version}) has an update available (v${remoteVersion}). Would you like to update now?`, {
|
||||
confirmText: "Update Now!",
|
||||
cancelText: "Skip",
|
||||
onConfirm: () => this.update(data)
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue