Skip to content

Commit

Permalink
v8.4.8
Browse files Browse the repository at this point in the history
Fixes #139
  • Loading branch information
programmer2514 committed Sep 6, 2024
1 parent 5adc0c6 commit 2fe1aff
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CollapsibleUI Patch Notes

### v8.4.8:
* Hotfix for newest Discord release (breaks plugin on Discord versions <325120)

### v8.4.7:
* Fixed grey bar at bottom of screen when zooming out in a fullscreen/server call

Expand Down
14 changes: 7 additions & 7 deletions CollapsibleUI.plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author TenorTheHusky
* @authorId 563652755814875146
* @description A feature-rich BetterDiscord plugin that reworks the Discord UI to be significantly more modular
* @version 8.4.7
* @version 8.4.8
* @donate https://ko-fi.com/benjaminpryor
* @patreon https://www.patreon.com/BenjaminPryor
* @website https://github.com/programmer2514/BetterDiscord-CollapsibleUI
Expand All @@ -21,18 +21,18 @@ module.exports = (() => {
github_username: 'programmer2514',
},
],
version: '8.4.7',
version: '8.4.8',
description: 'A feature-rich BetterDiscord plugin that reworks the Discord UI to be significantly more modular',
github: 'https://github.com/programmer2514/BetterDiscord-CollapsibleUI',
github_raw: 'https://raw.githubusercontent.com/programmer2514/BetterDiscord-CollapsibleUI/main/CollapsibleUI.plugin.js',
},
changelog: [{
title: '8.4.7',
title: '8.4.8',
items: [
'Fixed grey bar at bottom of screen when zooming out in a fullscreen/server call',
'Hotfix for newest Discord release (breaks plugin on Discord versions <325120)',
],
}, {
title: '1.0.0 - 8.4.6',
title: '1.0.0 - 8.4.7',
items: [
`See the full changelog here:\
https://programmer2514.github.io/?l=cui-changelog`,
Expand Down Expand Up @@ -490,10 +490,10 @@ module.exports = (() => {
+ this.classProfilePanel);
this.profilePanelInner = document.querySelector('.userPanelInner_c69a7b')
?.firstElementChild;
this.profilePanelFooter = document.querySelector('.footer_ecc60d');
this.profilePanelFooter = document.querySelector('.footer_a823cd');
this.profilePanelWrapper = document.querySelector('.'
+ this.classProfilePanelWrapper);
this.profileBannerSVGWrapper = document.querySelector('.mask_c3e427');
this.profileBannerSVGWrapper = document.querySelector('.mask_d5fdb1');
this.membersList = document.querySelector('.' + this.classMembersList);
this.serverList = document.querySelector('.' + this.classServerList);
this.channelList = document.querySelector('.' + this.classChannelList);
Expand Down

0 comments on commit 2fe1aff

Please sign in to comment.