Skip to content

Commit

Permalink
Update version and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
zerebos committed Jan 24, 2022
1 parent b4b7a15 commit a244863
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 7 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
12 changes: 8 additions & 4 deletions renderer/src/data/changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -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."
]
}
]
Expand Down
4 changes: 2 additions & 2 deletions renderer/src/modules/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
});
Expand Down

0 comments on commit a244863

Please sign in to comment.