This commit is contained in:
Mirco Wittrien 2020-07-26 17:02:25 +02:00
parent 4174005df9
commit c7fc9d1194
18 changed files with 108 additions and 77 deletions

View File

@ -487,3 +487,5 @@ var ChatFilter = (_ => {
}
}
})();
module.exports = ChatFilter;

View File

@ -768,3 +768,5 @@ var EditChannels = (_ => {
}
}
})();
module.exports = EditChannels;

View File

@ -1077,3 +1077,5 @@ var EditServers = (_ => {
}
}
})();
module.exports = EditServers;

View File

@ -1752,3 +1752,5 @@ var EditUsers = (_ => {
}
}
})();
module.exports = EditUsers;

View File

@ -674,3 +674,5 @@ var FriendNotifications = (_ => {
}
}
})();
module.exports = FriendNotifications;

View File

@ -1089,3 +1089,5 @@ var GoogleTranslateOption = (_ => {
}
}
})();
module.exports = GoogleTranslateOption;

View File

@ -612,3 +612,5 @@ var NotificationSounds = (_ => {
}
}
})();
module.exports = NotificationSounds;

View File

@ -890,3 +890,5 @@ var PersonalPins = (_ => {
}
}
})();
module.exports = PersonalPins;

View File

@ -1144,3 +1144,5 @@ var PinDMs = (_ => {
}
}
})();
module.exports = PinDMs;

View File

@ -1685,3 +1685,5 @@ var ServerFolders = (_ => {
}
}
})();
module.exports = ServerFolders;

View File

@ -632,3 +632,5 @@ var ShowHiddenChannels = (_ => {
}
}
})();
module.exports = ShowHiddenChannels;

View File

@ -233,5 +233,4 @@ var ShowImageDetails = (_ => {
}
})();
module.exports = ShowImageDetails;

View File

@ -590,3 +590,5 @@ var SpellCheck = (_ => {
}
}
})();
module.exports = SpellCheck;

View File

@ -645,3 +645,5 @@ var SpotifyControls = (_ => {
}
}
})();
module.exports = SpotifyControls;

View File

@ -1048,3 +1048,5 @@ var ThemeRepo = (_ => {
}
}
})();
module.exports = ThemeRepo;

View File

@ -1,6 +1,7 @@
//META{"name":"WriteUpperCase","authorId":"278543574059057154","invite":"Jx3TjNS","donate":"https://www.paypal.me/MircoWittrien","patreon":"https://www.patreon.com/MircoWittrien","website":"https://github.com/mwittrien/BetterDiscordAddons/tree/master/Plugins/WriteUpperCase","source":"https://raw.githubusercontent.com/mwittrien/BetterDiscordAddons/master/Plugins/WriteUpperCase/WriteUpperCase.plugin.js"}*//
class WriteUpperCase {
var WriteUpperCase = (_ => {
return class WriteUpperCase {
getName () {return "WriteUpperCase";}
getVersion () {return "1.2.5";}
@ -82,3 +83,6 @@ class WriteUpperCase {
}
}
}
})();
module.exports = WriteUpperCase;