MLv2 v1.7.58

This commit is contained in:
1Lighty 2020-10-08 20:32:32 +02:00
parent 7609594aef
commit 1005f43dd7
2 changed files with 14 additions and 6 deletions

View File

@ -1,4 +1,10 @@
# [MessageLoggerV2](https://1lighty.github.io/BetterDiscordStuff/?plugin=MessageLoggerV2 "MessageLoggerV2") Changelog # [MessageLoggerV2](https://1lighty.github.io/BetterDiscordStuff/?plugin=MessageLoggerV2 "MessageLoggerV2") Changelog
### 1.7.58
- Fixed not working on canary
### 1.7.57
- Fixed not working
### 1.7.56 ### 1.7.56
- Fixed not working on canary - Fixed not working on canary

View File

@ -29,7 +29,7 @@ module.exports = class MessageLoggerV2 {
return 'MessageLoggerV2'; return 'MessageLoggerV2';
} }
getVersion() { getVersion() {
return '1.7.57'; return '1.7.58';
} }
getAuthor() { getAuthor() {
return 'Lighty'; return 'Lighty';
@ -164,7 +164,7 @@ module.exports = class MessageLoggerV2 {
{ {
title: 'fixed', title: 'fixed',
type: 'fixed', type: 'fixed',
items: ['Fixed not working'] items: ['Fixed not working on canary']
} }
]; ];
} }
@ -581,11 +581,13 @@ module.exports = class MessageLoggerV2 {
questionMarkSingle: XenoLib.getSingleClass('questionMark') questionMarkSingle: XenoLib.getSingleClass('questionMark')
}; };
const TabBarStuffs = ZeresPluginLibrary.WebpackModules.getByProps('tabBarItem');
this.createHeader.classes = { this.createHeader.classes = {
itemTabBarItem: ZeresPluginLibrary.DiscordClassModules.UserModal.tabBarItem + ' ' + ZeresPluginLibrary.WebpackModules.find(m => m.item && m.selected && m.topPill).item, itemTabBarItem: TabBarStuffs.tabBarItem + ' ' + ZeresPluginLibrary.WebpackModules.find(m => m.item && m.selected && m.topPill).item,
tabBarContainer: ZeresPluginLibrary.DiscordClassModules.UserModal.tabBarContainer, tabBarContainer: TabBarStuffs.tabBarContainer,
tabBar: ZeresPluginLibrary.DiscordClassModules.UserModal.tabBar, tabBar: TabBarStuffs.tabBar,
tabBarSingle: ZeresPluginLibrary.DiscordClassModules.UserModal.tabBar.split(/ /g)[0] tabBarSingle: TabBarStuffs.tabBar.split(/ /g)[0]
}; };
const Modals = ZeresPluginLibrary.WebpackModules.getByProps('ModalRoot'); const Modals = ZeresPluginLibrary.WebpackModules.getByProps('ModalRoot');