stuff
This commit is contained in:
parent
4174005df9
commit
c7fc9d1194
|
@ -487,3 +487,5 @@ var ChatFilter = (_ => {
|
|||
}
|
||||
}
|
||||
})();
|
||||
|
||||
module.exports = ChatFilter;
|
|
@ -768,3 +768,5 @@ var EditChannels = (_ => {
|
|||
}
|
||||
}
|
||||
})();
|
||||
|
||||
module.exports = EditChannels;
|
|
@ -1077,3 +1077,5 @@ var EditServers = (_ => {
|
|||
}
|
||||
}
|
||||
})();
|
||||
|
||||
module.exports = EditServers;
|
|
@ -1752,3 +1752,5 @@ var EditUsers = (_ => {
|
|||
}
|
||||
}
|
||||
})();
|
||||
|
||||
module.exports = EditUsers;
|
|
@ -674,3 +674,5 @@ var FriendNotifications = (_ => {
|
|||
}
|
||||
}
|
||||
})();
|
||||
|
||||
module.exports = FriendNotifications;
|
|
@ -1089,3 +1089,5 @@ var GoogleTranslateOption = (_ => {
|
|||
}
|
||||
}
|
||||
})();
|
||||
|
||||
module.exports = GoogleTranslateOption;
|
|
@ -612,3 +612,5 @@ var NotificationSounds = (_ => {
|
|||
}
|
||||
}
|
||||
})();
|
||||
|
||||
module.exports = NotificationSounds;
|
|
@ -890,3 +890,5 @@ var PersonalPins = (_ => {
|
|||
}
|
||||
}
|
||||
})();
|
||||
|
||||
module.exports = PersonalPins;
|
|
@ -1144,3 +1144,5 @@ var PinDMs = (_ => {
|
|||
}
|
||||
}
|
||||
})();
|
||||
|
||||
module.exports = PinDMs;
|
|
@ -1685,3 +1685,5 @@ var ServerFolders = (_ => {
|
|||
}
|
||||
}
|
||||
})();
|
||||
|
||||
module.exports = ServerFolders;
|
|
@ -632,3 +632,5 @@ var ShowHiddenChannels = (_ => {
|
|||
}
|
||||
}
|
||||
})();
|
||||
|
||||
module.exports = ShowHiddenChannels;
|
|
@ -233,5 +233,4 @@ var ShowImageDetails = (_ => {
|
|||
}
|
||||
})();
|
||||
|
||||
|
||||
module.exports = ShowImageDetails;
|
|
@ -590,3 +590,5 @@ var SpellCheck = (_ => {
|
|||
}
|
||||
}
|
||||
})();
|
||||
|
||||
module.exports = SpellCheck;
|
|
@ -645,3 +645,5 @@ var SpotifyControls = (_ => {
|
|||
}
|
||||
}
|
||||
})();
|
||||
|
||||
module.exports = SpotifyControls;
|
|
@ -1048,3 +1048,5 @@ var ThemeRepo = (_ => {
|
|||
}
|
||||
}
|
||||
})();
|
||||
|
||||
module.exports = ThemeRepo;
|
|
@ -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;
|
Loading…
Reference in New Issue