Skip to content

Commit

Permalink
v8.4.7
Browse files Browse the repository at this point in the history
Fixes #138
  • Loading branch information
programmer2514 committed Sep 5, 2024
1 parent d5eea22 commit 5adc0c6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 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.7:
* Fixed grey bar at bottom of screen when zooming out in a fullscreen/server call

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

Expand Down
18 changes: 9 additions & 9 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.6
* @version 8.4.7
* @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.6',
version: '8.4.7',
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.6',
title: '8.4.7',
items: [
'Hotfix for newest Discord release (breaks plugin on Discord versions <322979)',
'Fixed grey bar at bottom of screen when zooming out in a fullscreen/server call',
],
}, {
title: '1.0.0 - 8.4.5',
title: '1.0.0 - 8.4.6',
items: [
`See the full changelog here:\
https://programmer2514.github.io/?l=cui-changelog`,
Expand Down Expand Up @@ -372,7 +372,7 @@ module.exports = (() => {
if (document.querySelector('.' + this.classCallContainer)) {
if (document.querySelector('.' + this.classNoChat))
document.querySelector('.' + this.classCallContainer)
.style.maxHeight = window.outerHeight + 'px';
.style.maxHeight = (window.outerHeight * 2) + 'px';
else
document.querySelector('.' + this.classCallContainer)
.style.maxHeight = (window.outerHeight - 222) + 'px';
Expand Down Expand Up @@ -4575,7 +4575,7 @@ module.exports = (() => {
if (document.querySelector('.' + cui.classCallContainer)
.style.maxHeight != '0px') {
document.querySelector('.' + cui.classCallContainer)
.style.maxHeight = window.outerHeight + 'px';
.style.maxHeight = (window.outerHeight * 2) + 'px';
}
}
catch {}
Expand Down Expand Up @@ -4962,7 +4962,7 @@ module.exports = (() => {
this.callDUDelay = setTimeout(() => {
if (document.querySelector('.' + cui.classNoChat))
document.querySelector('.' + cui.classCallContainer)
.style.maxHeight = window.outerHeight + 'px';
.style.maxHeight = (window.outerHeight * 2) + 'px';
else
document.querySelector('.' + cui.classCallContainer)
.style.maxHeight = (window.outerHeight - 222) + 'px';
Expand Down Expand Up @@ -5230,7 +5230,7 @@ module.exports = (() => {
else {
if (document.querySelector('.' + this.classNoChat))
document.querySelector('.' + this.classCallContainer)
.style.maxHeight = window.outerHeight + 'px';
.style.maxHeight = (window.outerHeight * 2) + 'px';
else
document.querySelector('.' + this.classCallContainer)
.style.maxHeight = (window.outerHeight - 222) + 'px';
Expand Down

0 comments on commit 5adc0c6

Please sign in to comment.