-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog.html
1121 lines (1115 loc) · 43.2 KB
/
changelog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="images/avatar.ico" />
<title>Changelog | botbadi</title>
<meta name="author" content="bossbadi" />
<meta
name="description"
content="Math calculator, image modification, Minecraft guessing games, Geometry Dash, chatbot, typing races, smart auto mod, and more!"
/>
<meta property="og:image" content="https://botbadi.ml/images/avatar.png" />
<meta content="#ff4d00" data-react-helmet="true" name="theme-color" />
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/main.css" />
<script src="js/navScroll.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg sticky-top">
<div class="container">
<a class="navbar-brand" href="index.html"><img src="images/avatar.ico" height="36" /></a>
<a class="navbar-brand" href="index.html">botbadi</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="invite.html" target="_blank">Invite</a>
</li>
<li class="nav-item">
<a class="nav-link" href="terms.html">Terms</a>
</li>
<li class="nav-item">
<a class="nav-link" href="privacy.html">Privacy</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="changelog.html">Changelog</a>
</li>
</ul>
</div>
</div>
</nav>
<section class="container header">
<h1>Changelog</h1>
</section>
<section class="container text-container">
<h3 id="11-13-2021">11/13/2021</h3>
<p>v4.0.2</p>
<ul>
<li>Update on join intro message</li>
<li>Make user blacklist automod slightly less strict</li>
<li>Color user join/leave embeds to green/red</li>
<li>Add no dm feature to mod commands</li>
<li>Improve member join auto mute and insta-ban</li>
</ul>
<h3 id="8-8-2021">8/8/2021</h3>
<p>v4.0.1</p>
<ul>
<li>Add commands useful for Geometry Dash players<ul>
<li><code>gd level</code> - Get info on a Geometry Dash level</li>
<li><code>gd search</code> - Search Geometry Dash levels</li>
<li><code>gd profile</code> - Get the profile of a Geometry Dash player</li>
</ul>
</li>
</ul>
<h3 id="6-29-2021">6/29/2021</h3>
<p>v4.0.0</p>
<p><em>General info</em></p>
<ul>
<li>Run commands by editing messages or replying to the bot</li>
<li>Most commands now work in DMs</li>
<li>Added detailed documentation to commands</li>
<li>New format for help (%help [category/command])</li>
<li>Disable default prefix "%" in settings</li>
<li>New settings look (use the '-e' argument to switch back the old look)</li>
<li>Merged "General" and "Random" categories into "Fun" category</li>
</ul>
<p><em>Moderation</em></p>
<ul>
<li>New embed colors for moderation actions</li>
<li>Mute command now sets up "Muted" role automatically</li>
<li>Removed 'wipe' command (takes too much time and resources)</li>
<li>Removed 'dm' command (defeats the purpose of the postcard)</li>
</ul>
<p><em>Economy</em></p>
<ul>
<li>Added 'rob' command</li>
<li>Added new item "donut" to shop to assist in robbing</li>
<li>Added passive mode user setting to prevent robbing</li>
<li>Added ability to sell items</li>
<li>Added 'quote' command to type a random quote for coins</li>
<li>Raised the award for 'type' command because it's hard</li>
</ul>
<p><em>Music</em></p>
<ul>
<li>Improved queue pagination and item selection</li>
<li>Added 'seek' command to skip to a certain time in a song</li>
<li>Added 'shuffle' command to shuffle the queue</li>
<li>Added 'move' command to reposition a queued song</li>
<li>Louder volume (limit is now 1000)</li>
<li>Added support for YouTube playlists</li>
<li>Additional support for Bandcamp, Soundcloud, Twitch, Vimeo, and Mixer</li>
<li>Removed Spotify support (It'll be back once the API is properly integrated)</li>
</ul>
<h3 id="5-9-2021">5/9/2021</h3>
<p>v3.2.8:</p>
<ul>
<li>Added role support for <code>%perm</code> command</li>
<li>Improved colors for <code>%perm</code> and <code>%whois</code></li>
</ul>
<p>v3.2.7:</p>
<ul>
<li>Added different image formats to <code>%avatar</code></li>
<li>Added command to deafen the bot (<code>%deaf</code>)</li>
<li>Fixed errors running <code>%graph</code> with bad args</li>
</ul>
<h3 id="5-7-2021">5/7/2021</h3>
<p>v3.2.6:</p>
<ul>
<li>Added 4 new image mods (including <code>%thick</code>)</li>
<li>Changed image to webp for better performance</li>
<li>Redesigned image mod help embeds (4 pages)</li>
</ul>
<h3 id="5-2-2021">5/2/2021</h3>
<p>v3.2.5:</p>
<ul>
<li>Improved <code>%graph</code> by utilizing the API</li>
<li>Support for more file types in image mods</li>
<li>Redesigned <code>%pop</code> command as an embed</li>
<li>Improved <code>%clear</code> command</li>
<li>Added new words to <code>%type</code> (now over 1k)</li>
<li>Added over 50 new facts (%fact)</li>
</ul>
<h3 id="4-27-2021">4/27/2021</h3>
<p>v3.2.4:</p>
<ul>
<li>Revised <code>%h</code> command a bit</li>
<li>Bot now auto deafens in voice channels</li>
</ul>
<h3 id="4-21-2021">4/21/2021</h3>
<p>v3.2.3:</p>
<ul>
<li>Migrated <code>%predict</code> command to API</li>
<li>Fixed error running <code>%ocr</code> with blank image</li>
<li>Removed some redundant commands</li>
<li>New random responses when chatbot is down</li>
<li>Developer command <code>%bedit</code> now supports embeds</li>
</ul>
<h3 id="4-17-2021">4/17/2021</h3>
<p>v3.2.2:</p>
<ul>
<li>Fixed some famous images not showing (%famous)</li>
<li>Added developer privileges to <code>%bal</code> and <code>%inv</code></li>
<li>Fixed silent errors in the <code>%buy</code> command</li>
<li>Updated <code>%embed</code>: supports uploaded image</li>
<li>Added 100 new famous photos (%famous)</li>
</ul>
<h3 id="4-10-2021">4/10/2021</h3>
<p>v3.2.1:</p>
<ul>
<li>Should now support 'youtu.be' and other YT URLs</li>
</ul>
<h3 id="4-7-2021">4/7/2021</h3>
<p>v3.2.0:</p>
<ul>
<li>Improved <code>%predict</code> (added two new models)</li>
</ul>
<h3 id="4-3-2021">4/3/2021</h3>
<p>v3.1.9:</p>
<ul>
<li>Fixed certain songs not showing now playing</li>
<li>Fixed errors when no YouTube results</li>
<li>Added invite info command (%whois [Invite])</li>
<li>Remodeled many bot info embeds</li>
<li>Removed detailed description (%desc) command</li>
<li>Removed <code>%support</code> - merged it with <code>%invite</code></li>
<li>Removed <code>%servers</code> and <code>%uptime</code> - use <code>%about</code></li>
</ul>
<h3 id="3-30-2021">3/30/2021</h3>
<p>v3.1.8:</p>
<ul>
<li>Fixed music crashing when using modified YT link</li>
<li><code>%emojiurl</code> now animates familiar GIF emojis</li>
</ul>
<h3 id="3-28-2021">3/28/2021</h3>
<p>v3.1.7:</p>
<ul>
<li>Added new songs to dev's playlist</li>
<li>Nearly doubled famous pics (%famous)</li>
</ul>
<h3 id="3-24-2021">3/24/2021</h3>
<p>v3.1.6:</p>
<ul>
<li>Added new developer command (%exec)</li>
<li>Added text to speech (%tts)</li>
</ul>
<h3 id="3-21-2021">3/21/2021</h3>
<p>v3.1.5:</p>
<ul>
<li>Fixed error in <code>%talk</code> if user runs <code>%change</code> alone</li>
<li>Fixed deletion from database (users and settings)</li>
</ul>
<h3 id="3-20-2021">3/20/2021</h3>
<p>v3.1.4:</p>
<ul>
<li>Improved speed of image mods on large files</li>
<li>Improved image mod errors on non-image files</li>
</ul>
<h3 id="3-16-2021">3/16/2021</h3>
<p>v3.1.3:</p>
<ul>
<li>Removed some corny roasts</li>
<li>Updated admin info embed (%h.info)</li>
<li>Reduced price of postcard by half (%shop)</li>
</ul>
<h3 id="3-14-2021">3/14/2021</h3>
<p>v3.1.2:</p>
<ul>
<li><code>%bal</code> and <code>%inv</code> should now be faster</li>
<li><code>%set</code> and <code>%uset</code> should now be faster</li>
<li>Fixed <code>%rich</code> crashing if no one in server has account</li>
</ul>
<h3 id="3-13-2021">3/13/2021</h3>
<p>v3.1.1:</p>
<ul>
<li>Added optional '--roast' arg to mod cmds (%h.mod)</li>
<li>Changed "Member" to "Offender" in user mod embed</li>
<li>Possibility of apostrophe screwing up fixed</li>
</ul>
<h3 id="3-12-2021">3/12/2021</h3>
<p>v3.1.0:</p>
<ul>
<li>Fixed richest not showing on leaderboard</li>
<li><code>%predict</code> should now work on non-PNG image files</li>
<li>Added two image mod commands (%floor and %cube)</li>
</ul>
<h3 id="3-11-2021">3/11/2021</h3>
<p>v3.0.9:</p>
<ul>
<li>New and larger Minecraft images (%mc)</li>
<li>Invalid-user showing up on economy cmds fixed</li>
<li>Fixed silent error when deleting generated files</li>
<li>Added new celebrity photos (%famous)</li>
</ul>
<h3 id="3-10-2021">3/10/2021</h3>
<p>v3.0.8:</p>
<ul>
<li>Even smarter digit predictions (using 2 models)</li>
<li>Improved a developer command (%lget)</li>
<li>Fixed vulnerabilities in many error messages</li>
</ul>
<p>v3.0.7:</p>
<ul>
<li>Added colored image generator (%color)</li>
<li>Smarter digit recognition (%predict)</li>
<li>Added 5 new image mod commands (%h.img)</li>
</ul>
<h3 id="3-6-2021">3/6/2021</h3>
<p>v3.0.6:</p>
<ul>
<li>Fixed transparent image bug in <code>%edge</code></li>
<li>Modified a developer command (%lget [-e])</li>
<li>Made <code>%purge</code> an alias to <code>%del</code> command</li>
<li>Added pagination to music queue (%queue)</li>
</ul>
<h3 id="3-5-2021">3/5/2021</h3>
<p>v3.0.5:</p>
<ul>
<li>New music added to dev's playlist (%plugin)</li>
<li>Removed some dev privileges in mod commands</li>
</ul>
<h3 id="3-4-2021">3/4/2021</h3>
<p>v3.0.4:</p>
<ul>
<li>Fixed music error if bot lacks add reactions perm</li>
<li>Added new music to developer's playlist (%plugin)</li>
<li>Restricted slowmode command to channel managers</li>
<li>Restricted settings command to server managers</li>
<li>Redesigned many command help embeds</li>
<li>Removed <code>%bot</code> command, use <code>%invite</code> instead</li>
</ul>
<h3 id="3-2-2021">3/2/2021</h3>
<p>v3.0.3:</p>
<ul>
<li>Error when running <code>%ss</code> command fixed</li>
<li>Error when queueing (%play) YouTube links fixed</li>
<li>Improved YouTube link parsing algorithm</li>
<li>Fixed unrelated videos appearing (%queue YT links)</li>
</ul>
<h3 id="2-27-2021">2/27/2021</h3>
<p>v3.0.2:</p>
<ul>
<li>Added Spotify support (no playlists yet though)</li>
<li>Fixed small error when searching long keywords</li>
</ul>
<p>v3.0.1:</p>
<ul>
<li>Improved <code>%ocr</code> command (should be more accurate)</li>
<li>Added <code>%ascii</code> command (kind of like bubble letters)</li>
<li>Say goodbye to <code>%hi</code> and <code>%bye</code> commands</li>
<li>Removed <code>%users</code> command, use server info instead</li>
</ul>
<h3 id="2-26-2021">2/26/2021</h3>
<p>v3.0.0:</p>
<ul>
<li>Improved <code>%ss</code> command (higher quality images)</li>
</ul>
<h3 id="2-25-2021">2/25/2021</h3>
<p>v2.9.9:</p>
<ul>
<li>Added text recognition from image (%ocr)</li>
<li>Reorganized command help embeds</li>
</ul>
<h3 id="2-24-2021">2/24/2021</h3>
<p>v2.9.8:</p>
<ul>
<li>Added digit recognizer command (%predict)</li>
</ul>
<h3 id="2-21-2021">2/21/2021</h3>
<p>v2.9.7:</p>
<ul>
<li>Fixed error when running <code>%vol</code> when music's stopped</li>
<li>Improved <code>%perm</code> command to get anyone's permissions</li>
<li>Fixed a tiny error when queuing large URLs</li>
</ul>
<h3 id="2-19-2021">2/19/2021</h3>
<p>v2.9.6:</p>
<ul>
<li>Made economy leaderboard much faster (%rich)</li>
<li>Updated muted role to a more gray color</li>
<li>Spam auto mod now ignores slowmode channels</li>
<li>Direct message chatbot is here! DM the bot to see</li>
</ul>
<h3 id="2-18-2021">2/18/2021</h3>
<p>v2.9.5:</p>
<ul>
<li>Added source code compiler (%run)</li>
<li>Check supported languages for compiler (%lang)</li>
</ul>
<h3 id="2-16-2021">2/16/2021</h3>
<p>v2.9.4:</p>
<ul>
<li>Updated credits (%credits)</li>
<li>Fixed delays for other users when using image mods</li>
</ul>
<h3 id="2-14-2021">2/14/2021</h3>
<p>v2.9.3:</p>
<ul>
<li>Bots being auto modded during edits fixed?</li>
<li>Added <code>%bedit</code> and <code>%bdel</code> owner commands</li>
<li>Improved missing permission errors</li>
<li>Remove all reactions from a message (%rmr)</li>
</ul>
<h3 id="2-13-2021">2/13/2021</h3>
<p>v2.9.2:</p>
<ul>
<li>Fixed index out of range error for settings</li>
<li>Improved link parsing algorithm</li>
<li>Added mass ping auto mod (5+ pings in msg)</li>
</ul>
<h3 id="2-12-2021">2/12/2021</h3>
<p>v2.9.1:</p>
<ul>
<li>Randomized embed colors for <code>%dm</code> command</li>
<li><code>%ss</code> now auto completes partial URL</li>
<li>Switched to a smarter chatbot (%credits)</li>
</ul>
<h3 id="2-10-2021">2/10/2021</h3>
<p>v2.9.0:</p>
<ul>
<li>Improved server info command (%serverinfo)</li>
<li>Screenshot a website in an NSFW channel (%ss)</li>
<li>Max music volume limited to 200% (%vol)</li>
<li>Translate command back up (%translate)</li>
<li>Chatbot API down -> giving random responses</li>
<li>Fixed permissions and errors in moderation cmds</li>
<li>Improved <code>%set</code> and <code>%uset</code> (simplified params)</li>
<li>Fixed minor bug playing from dev's playlist</li>
<li>Empty dev's playlist auto refills (%pl --bossbadi)</li>
</ul>
<h3 id="2-9-2021">2/9/2021</h3>
<p>v2.8.9:</p>
<ul>
<li>Randomized colors for snipe and editsnipe</li>
</ul>
<h3 id="2-4-2021">2/4/2021</h3>
<p>v2.8.8:</p>
<ul>
<li>Fixed error when playing "youtu.be" links</li>
<li>Fixed obscured titles in bossbadi's playlist</li>
<li>Improved muted role perms setup (it's faster)</li>
<li>Improved <code>%eval</code> command</li>
</ul>
<p>v2.8.7:</p>
<ul>
<li>Server info command added alias (%si)</li>
<li>Fixed error when playing single results</li>
<li>Fixed error when playing a number keyword</li>
<li>Issue with wrong title to video matchup fixed</li>
</ul>
<h3 id="2-3-2021">2/3/2021</h3>
<p>v2.8.6:</p>
<ul>
<li>Can't queue file upload using <code>%queue</code> fixed</li>
<li>Temporarily fixed slow APIs crashing the bot</li>
<li>More diverse and better pet images (%pet)</li>
<li>Funnier memes? At least they've got captions</li>
</ul>
<h3 id="2-1-2021">2/1/2021</h3>
<p>v2.8.5:</p>
<ul>
<li>Added error messages for queue commands</li>
<li>Added alias to <code>%np</code> command (%nowplaying)</li>
<li>Error when custom playlist empty fixed</li>
<li>Think I fixed the wrong title/thumbnail bug</li>
<li>Multiplayer games also give money now (%h.games)</li>
</ul>
<h3 id="1-31-2021">1/31/2021</h3>
<p>v2.8.4:</p>
<ul>
<li>Fixed bossbadi's playlist not looping bug</li>
<li>Fixed bugs and added help to queue</li>
</ul>
<h3 id="1-30-2021">1/30/2021</h3>
<p>v2.8.3:</p>
<ul>
<li>Fixed encoding bug with <code>%play</code> command</li>
<li>Searches YouTube links rather than play them</li>
<li>The queue system is finally here! (Not 100% bug free)</li>
<li>Skip to the next song in queue with ease (%skip)</li>
<li>New songs added to bossbadi's playlist (%plugin)</li>
</ul>
<h3 id="1-29-2021">1/29/2021</h3>
<p>v2.8.2:</p>
<ul>
<li>Improved calculator command (%calc)</li>
<li>Fixed more possible chatbot bugs</li>
<li>Loop counter resetting bug fixed</li>
<li>Now supports playing file uploads</li>
</ul>
<h3 id="1-26-2021">1/26/2021</h3>
<p>v2.8.1:</p>
<ul>
<li>Fixed minor mention prefix bug</li>
<li>Added auto mod link spamming (%set)</li>
<li>Improved some moderation errors</li>
</ul>
<h3 id="1-25-2021">1/25/2021</h3>
<p>v2.8.0:</p>
<ul>
<li>Fixed minor error in Minecraft checking alg.</li>
<li>New music added to bossbadi's playlist</li>
</ul>
<h3 id="1-16-2021">1/16/2021</h3>
<p>v2.7.8:</p>
<ul>
<li>Fixed bug when running pagination cmds</li>
<li>New owner command <code>%lfind</code> working</li>
<li>Fixed some bugs when DMing the bot</li>
<li>Get URL of custom emoji (%emojiurl)</li>
</ul>
<p>v2.7.7:</p>
<ul>
<li>Improved server icon command (%icon)</li>
<li>Redesigned weather command (%weather)</li>
</ul>
<p>v2.7.6:</p>
<ul>
<li>Removed <code>%vid</code> command</li>
<li>Say goodbye to the confusing Gists</li>
</ul>
<h3 id="1-14-2021">1/14/2021</h3>
<p>v2.7.5:</p>
<ul>
<li>New owner only website screenshot command (%ss)</li>
</ul>
<h3 id="1-13-2021">1/13/2021</h3>
<p>v2.7.4:</p>
<ul>
<li><code>%whois</code> now errors if invalid user</li>
<li>Improved code for some music commands</li>
<li>Improved <code>%postcard</code> error messages</li>
</ul>
<p>v2.7.3:</p>
<ul>
<li>Slightly modified <code>%mc</code> checking alg.</li>
<li>Added ImageMagick buildpack</li>
</ul>
<h3 id="1-12-2021">1/12/2021</h3>
<p>v2.7.2:</p>
<ul>
<li>Bot edits searching message to now playing</li>
<li>Fixed slashes overload error message in chatbot</li>
<li>Better error when DMing bot (%dm and %postcard)</li>
<li>User missing permissions error improved</li>
</ul>
<p>v2.7.1:</p>
<ul>
<li>Combined messages in <code>%hack</code> for fewer edits</li>
<li>Fixed link auto mod in support server</li>
<li>Improved error message in <code>%translate</code></li>
<li>Improved checking alg. for multiplayer games</li>
</ul>
<h3 id="1-9-2021">1/9/2021</h3>
<p>v2.7.0:</p>
<ul>
<li>Improved hack command (%hack)</li>
</ul>
<h3 id="1-8-2021">1/8/2021</h3>
<p>v2.6.9:</p>
<ul>
<li>Updated random command error message</li>
<li>12 new image mod commands (%h.img)</li>
<li>Reaction pagination now in <code>%h</code></li>
<li>Removed some command aliases</li>
</ul>
<h3 id="1-7-2021">1/7/2021</h3>
<p>v2.6.8:</p>
<ul>
<li>Muted role setup command improved (%mute)</li>
<li>Leaderboard naturally slow, so reduced cooldown</li>
<li>Couldn't play links => fixed</li>
<li>Improved error messages in <code>%del</code> command</li>
</ul>
<h3 id="1-5-2021">1/5/2021</h3>
<p>v2.6.7:</p>
<ul>
<li>Bug in <code>%math</code> possibly patched but not fixed</li>
</ul>
<h3 id="1-2-2021">1/2/2021</h3>
<p>v2.6.6:</p>
<ul>
<li>Remodeled user DMs through bot (%dm and %postcard)</li>
<li>"You cannot do that" error message improved</li>
<li>Error DMs from bot seem to have mostly vanished</li>
<li>Patched possible silent cooldown bypasses</li>
<li>Silent cooldown now off during multiplayer games</li>
</ul>
<h3 id="1-1-2021">1/1/2021</h3>
<p>v2.6.5:</p>
<ul>
<li>Fixed support server advertising bypass</li>
<li>Links auto mod improved in support server</li>
<li>Fixed error when skipping song (%skip)</li>
</ul>
<h3 id="12-31-2020">12/31/2020</h3>
<p>v2.6.4:</p>
<ul>
<li>Change volume of the song with <code>%vol</code></li>
</ul>
<p>v2.6.3:</p>
<ul>
<li>Fixed something with a developer command</li>
<li>Fixed some moderation commands</li>
<li>Some more custom stuff</li>
</ul>
<h3 id="12-30-2020">12/30/2020</h3>
<p>v2.6.2:</p>
<ul>
<li>Fixed error if you loop and then run <code>%stop</code></li>
<li>New songs added to custom playlist (%plugin)</li>
</ul>
<h3 id="12-29-2020">12/29/2020</h3>
<p>v2.6.1:</p>
<ul>
<li>Loop the custom playlist or current track (%loop)</li>
<li>The playlist command is now <code>%pl</code></li>
<li>Updated music plugins (%plugin)</li>
</ul>
<p>v2.6.0:</p>
<ul>
<li>Why not, check my permissions with <code>%perm</code></li>
<li>Fixed special playlist reset bug (%plugin)</li>
<li>View the special playlist (%plist --bossbadi)</li>
</ul>
<h3 id="12-28-2020">12/28/2020</h3>
<p>v2.5.9:</p>
<ul>
<li>Get avatar of users not in the server</li>
<li>Image mods can also be used on non-server users</li>
<li><code>%triggered</code> now works on image uploads</li>
<li>New developer's custom music playlist (%plugin)</li>
</ul>
<h3 id="12-25-2020">12/25/2020</h3>
<p>v2.5.8:</p>
<ul>
<li>Improved server info command (%serverinfo)</li>
<li><code>%whois</code> can now fetch non-server accounts</li>
<li>Now you can ban non-server accounts with user ID (known as a hack ban but the command is still <code>%ban</code>)</li>
<li>Unban someone with the user ID (%unban)</li>
<li>Possible ping abuse with chatbot fixed</li>
</ul>
<h3 id="12-24-2020">12/24/2020</h3>
<p>v2.5.7:</p>
<ul>
<li>1 second silent now for all commands</li>
</ul>
<h3 id="12-23-2020">12/23/2020</h3>
<p>v2.5.6:</p>
<ul>
<li>Error with the pytube package, reinstalled</li>
<li>New mute system: run <code>%mute</code> to setup muted perms.</li>
<li>Improved most moderation commands</li>
<li>Spam ping auto mute much faster due to new mute system</li>
</ul>
<h3 id="12-19-2020">12/19/2020</h3>
<p>v2.5.5:</p>
<ul>
<li>Spam ping auto mod now ignores bot pings</li>
<li>Fixed possible multiple spam ping mutes</li>
<li>Can now specify slowmode through minutes</li>
<li>Improved <code>%wipe</code> command and fixed errors</li>
<li>Auto moderation now works on edited messages</li>
<li>Added avatar command (%avatar [User])</li>
<li>If the multiplayer bug isn't fixed now...</li>
</ul>
<h3 id="12-15-2020">12/15/2020</h3>
<p>v2.5.4:</p>
<ul>
<li>Added a 1 second silent cooldown for <code>%bake</code></li>
</ul>
<h3 id="12-12-2020">12/12/2020</h3>
<p>v2.5.3:</p>
<ul>
<li>The index issue with multi. games are soooo-</li>
<li>Fixed possible msg length error with chatbot</li>
</ul>
<h3 id="12-10-2020">12/10/2020</h3>
<p>v2.5.2:</p>
<ul>
<li>Reorganized the general commands help embed (%h.gen)</li>
<li>Now you can snipe channels (%snipe/%editsnipe)</li>
</ul>
<h3 id="12-8-2020">12/8/2020</h3>
<p>v2.5.1:</p>
<ul>
<li>Hack command is back!</li>
</ul>
<p>v2.5.0:</p>
<ul>
<li>Chatbot wasn't working so switched to a new API</li>
<li>Translate text to English with <code>%translate</code></li>
<li>Fixed minor issue with editsnipe and changed layout</li>
<li>Fixed minor issue if calculator response is too long</li>
</ul>
<h3 id="12-6-2020">12/6/2020</h3>
<p>v2.4.9:</p>
<ul>
<li>Image cooldown bug fixed?</li>
<li>Index error for multi. games fixed?</li>
<li>Fixed <code>%np</code> not working for custom songs</li>
<li>Fixed graph overlap with <code>%graph</code> command</li>
<li>Image mods support JPG file uploads for now (%h.img)</li>
<li>Fixed rare bug with <code>%whois</code> if too many roles</li>
</ul>
<h3 id="12-2-2020">12/2/2020</h3>
<p>v2.4.8:</p>
<ul>
<li>A more realistic chatbot with typing trigger</li>
<li>Fixed minor cooldown bug with graph command</li>
</ul>
<p>v2.4.7:</p>
<ul>
<li>Image mods now also work for certain image URLs</li>
<li>Give credit where it's due (%credits)</li>
<li>Check balance and inventory of others (%bal, %inv)</li>
<li>A smarter custom embed with image URL parser (%embed)</li>
</ul>
<h3 id="11-29-2020">11/29/2020</h3>
<p>v2.4.6:</p>
<ul>
<li>Fixed bug with cooldown message (maybe)</li>
<li>Fixed minor error with multiplayer games</li>
<li>Fixed directory error with graph command</li>
<li>%hack temporarily disabled for maintenance</li>
<li>Reorganized command help embeds</li>
<li>Added 10 new image manipulation commands (%h.img)</li>
</ul>
<p>v2.4.5:</p>
<ul>
<li>Fixed bug with cooldown message (maybe)</li>
<li>Fixed minor error with multiplayer games</li>
</ul>
<h3 id="11-28-2020">11/28/2020</h3>
<p>v2.4.4:</p>
<ul>
<li>Fixed possible editsnipe abuse with long msgs</li>
<li>Added triggered gif generator (%triggered)</li>
<li>Fixed bug with <code>%hack</code> command (if wrong ID)</li>
<li>Added invert image command (%invert)</li>
</ul>
<h3 id="11-27-2020">11/27/2020</h3>
<p>v2.4.3:</p>
<ul>
<li>New Minecraft multiplayer game added (%h.games)</li>
<li>Bot errors are now sent in text channels</li>
<li>Added timestamps for certain embedded messages</li>
</ul>
<h3 id="11-26-2020">11/26/2020</h3>
<p>v2.4.2:</p>
<ul>
<li>More diversified foods to bake (%bake)</li>
<li>Added a bit extra to the chatbot feature</li>
<li>Added edit sniping (%editsnipe)</li>
<li>More images for famous games (%famous)</li>
</ul>
<p>v2.4.1:</p>
<ul>
<li>Calc command now accepts 'x' as mult. and others</li>
<li>Changed currency system, added <code>%bake</code> command</li>
</ul>
<h3 id="11-25-2020">11/25/2020</h3>
<p>v2.4.0:</p>
<ul>
<li>Fixed hack command calls help command</li>
<li>Improved link parsing algorithm</li>
<li>'say' and 'change' commands will not accept links</li>
<li>Made help embeds clearer for the foolish</li>
<li>Improved server info embed</li>
<li>Added graph generator. <code>%h</code> for more info</li>
<li>Added embed generator (%embed <Msg>)</li>
</ul>
<h3 id="11-23-2020">11/23/2020</h3>
<p>v2.3.9:</p>
<ul>
<li>Fixed <code>%search</code> didn't paginate if missing permission</li>
<li>Fixed <code>%say</code> didn't work if missing permission</li>
<li>New and stronger links auto moderation (%set to config)</li>
</ul>
<h3 id="11-21-2020">11/21/2020</h3>
<p>v2.3.8:</p>
<ul>
<li>Fixed possible talk, play, and calc abuse</li>
<li>Join/Play now checks for permissions before action</li>
<li>Fixed error messages for kick/ban issues</li>
</ul>
<p>v2.3.7:</p>
<ul>
<li>Fixed error when running <code>%weather</code></li>
<li>Fixed minor bugs with <code>%del</code> command</li>
<li>Improved <code>%whois</code> embed (added ID)</li>
<li>Fixed playing from search error</li>
<li>Auto mod spam pings in beta mode</li>
<li>Fixed mention prefix issues with certain commands</li>
<li>Fixed bot confused <code>%hi</code> with <code>%h</code></li>
<li>Fixed issue when muting the bot (now you can't)</li>
<li>Better looking moderation action embeds</li>
<li>(New) Auto mod spam ping, setup with <code>%set</code></li>
</ul>
<h3 id="11-19-2020">11/19/2020</h3>
<p>v2.3.6:</p>
<ul>
<li>Play and search embeds improved look</li>
<li>Added uptime command (%uptime)</li>
<li>[Unrestricted server] added %verify command</li>
<li>Weather is here! (%weather <Location>)</li>
</ul>
<h3 id="11-17-2020">11/17/2020</h3>
<p>v2.3.5:</p>
<ul>
<li>Fixed <code>%disconnect</code> calls dice roll command</li>
<li>Fixed mention prefix issue in <code>%set</code> and <code>%uset</code></li>
<li><code>%del</code> can delete messages up to 100 at once</li>
<li><code>%wipe</code> now checks last 100 msgs per channel</li>
<li>Anyone can use <code>%whois</code> command now</li>
<li>Added <code>%serverinfo</code> command</li>
<li>Reaction pagination now auto removes reactions</li>
<li>Added now playing command (%np)</li>
<li>No more of those stupid allowed channels!</li>
<li>Better changelog format (simpler the better)</li>
<li>Added extra help to certain commands</li>
<li>Added alias to help command (%h)</li>
</ul>
<h3 id="11-14-2020">11/14/2020</h3>
<p>v2.3.4:</p>
<ul>
<li>Fixed bug with <code>%hack</code> command</li>
<li>Hacking broadened to anyone and anything (%hack)</li>
<li>Fixed bugs with permissions and cooldown</li>
<li>More random stuff (coin flip, die roll, etc.)</li>
<li>Bot responds to mention as well as <code>%&#</code>refix</li>
<li>Added privacy policy (%data). Go read it!</li>
</ul>
<h3 id="11-10-2020">11/10/2020</h3>
<p>v2.3.3:</p>
<ul>
<li><code>%say</code> now cannot be used to ping others</li>
<li>Better error messages if kick/ban failed</li>
<li>Play ANY video with only the url (%play)</li>
</ul>
<p>v2.3.2:</p>
<ul>
<li>Fixed lag for other cmds when using %hack</li>
<li>Added cooldowns for certain commands</li>
<li>Explains commands if parameters left blank</li>
<li>Improved server icon embed (%icon)</li>
<li>Caught error when DMing a user who's blocked bot</li>
<li>Generate an image from text using <code>%png</code></li>
<li>Fixed bug when initializing server settings</li>
</ul>
<h3 id="11-8-2020">11/8/2020</h3>
<p>v2.3.1:</p>
<ul>
<li>Added user info command (%whois <User>)</li>
<li>Fixed some grammar with slowmode command</li>
<li>Better error if playlist gets too long</li>
<li>Turn text into emojis with <code>%emojify</code></li>
<li>Instantly repeat your msg with <code>%say</code></li>
<li>Reorganized help command (%help)</li>
<li>Hack your friends with <code>%hack</code></li>
</ul>
<h3 id="11-5-2020">11/5/2020</h3>
<p>v2.3.0:</p>
<ul>
<li>%s.verify command removed (because why not)</li>
<li>Delete messages from a user is here (%wipe @User)</li>
<li>Snipe recently deleted message with <code>%snipe</code></li>
<li>Sniping messages can be configured (%set)</li>
<li>Added emojis for some commands</li>
</ul>
<h3 id="11-3-2020">11/3/2020</h3>
<p>v2.2.9:</p>
<ul>
<li>New typing images with real words</li>
<li>Cleaned up some embeds</li>
<li>Changed bot presence</li>
</ul>
<h3 id="11-2-2020">11/2/2020</h3>
<p>v2.2.8:</p>
<ul>
<li>Bot got trending on top.gg (not anymore)</li>
<li>Fixed minor error with mute command if @Muted role was higher than bot's role</li>
<li>Error message if failed to stream and download song</li>
<li>More detailed errors with slowmode command</li>
<li>Developer's message command changed to <code>%dev</code></li>
<li>Cleaned up and organized command embeds</li>
<li>Updated allowed channels (%allowed)</li>
<li>Fixed some AI stuff</li>
</ul>
<h3 id="10-31-2020">10/31/2020</h3>
<p>v2.2.7:</p>
<ul>
<li>Bot got approved on top.gg 20:41 EST</li>
<li>Vote for it using <code>%vote</code></li>
<li>Removed spamming commands (for API abuse)</li>
</ul>
<p>v2.2.6:</p>
<ul>
<li>Might have fixed occasional error with %play command</li>
</ul>
<h3 id="10-29-2020">10/29/2020</h3>
<p>v2.2.5:</p>
<ul>
<li>More limitations for spamming commands</li>
<li>Limited deleting messages to max 50 per command</li>
<li>Manage messages perm. can change server settings</li>
<li>Bot now DMs moderated users</li>
<li>Changed some permissions for moderation commands</li>
<li>Added slowmode command for mods (%slow)</li>
<li>New bot status</li>
<li>New spam messages</li>
</ul>
<p>v2.2.4:</p>
<ul>
<li>Made rich leaderboard better</li>
<li>find user from BOTH @mention and user ID</li>
<li>Delete messages limited up to 100 per command</li>
<li>Pagination with YouTube search results (%search)</li>
</ul>
<h3 id="10-27-2020">10/27/2020</h3>
<p>v2.2.3:</p>
<ul>
<li>Improved calculator command with more functions (%calc)</li>
</ul>
<h3 id="10-25-2020">10/25/2020</h3>
<p>v2.2.2:</p>
<ul>
<li>Added user settings (%uset)</li>
</ul>
<h3 id="10-24-2020">10/24/2020</h3>
<p>v2.2.1:</p>
<ul>
<li>Fixed many bugs with YouTube searches</li>
<li>Plays audio at the best bitrate possible</li>
</ul>
<p>v2.2.0:</p>
<ul>
<li>Dedicated YouTube search command (%search)</li>
<li>Previous search history</li>
</ul>
<h3 id="10-23-2020">10/23/2020</h3>
<p>v2.1.9:</p>
<ul>
<li>Fixed so bot cannot mass ping</li>
<li>Bot can now play live streams and unlimited videos</li>
<li>Lower latency for YouTube searches</li>
</ul>
<h3 id="10-22-2020">10/22/2020</h3>
<p>v2.1.8:</p>
<ul>
<li>Added optional reason parameter for kick/ban commands</li>
<li>Reorganized and changed a few commands to make more sense</li>
<li>Might have fixed the high latency issue with voice channel searching command</li>
<li>Combined all bugs in one location (%bugs)</li>
</ul>
<h3 id="10-21-2020">10/21/2020</h3>
<p>v2.1.7:</p>
<ul>
<li>Mute command working better than ever</li>
<li>No need to <code>%join</code> voice channel anymore, just type <code>%play</code> and bot will automatically join!</li>
<li>Reactions to music commands</li>
</ul>
<h3 id="10-19-2020">10/19/2020</h3>
<p>v2.1.6:</p>
<ul>
<li>Made the postcard command more efficient</li>
<li>Fixed the descriptions of some commands</li>
<li>Added a stop spamming command that kind of works (%s.toggle)</li>
</ul>
<h3 id="10-18-2020">10/18/2020</h3>
<p>v2.1.4:</p>
<ul>
<li>Improved voice channel commands and the debug command (%h.voice)</li>
</ul>
<h3 id="10-15-2020">10/15/2020</h3>
<p>v2.0.6:</p>
<ul>
<li>Something totally random and bizarre is here</li>
</ul>
<p>v2.0.3:</p>
<ul>
<li>Fixed bug when searching for youtube video</li>
<li>Changed spam messages (fresh, brand new spam!)</li>
<li>Improved member count command</li>
</ul>
<h3 id="10-14-2020">10/14/2020</h3>
<p>v2.0.2:</p>
<ul>
<li>Fixed bug when joining a voice channel (maybe?)</li>
</ul>
<h3 id="10-13-2020">10/13/2020</h3>
<p>v1.9.5:</p>
<ul>
<li>Fixed major bug when downloading live streams -- just don't download them</li>
<li>Fixed issues with abusing the voice channel commands</li>
<li>Most previous song played is now cached for quicker access!</li>
<li>Fixed bug in mute command</li>
<li>Fixed bug when bot sends custom messages</li>
</ul>
<h3 id="10-12-2020">10/12/2020</h3>
<p>v1.9.0:</p>
<ul>
<li>Added about page (%about)</li>
<li>Added allowed channels page (%allowed)</li>
</ul>
<p>v1.8.8:</p>
<ul>
<li>Fixed minor bug with online queries for voice channel commands</li>
</ul>
<h3 id="10-11-2020">10/11/2020</h3>
<p>v1.8.4:</p>
<ul>
<li>Online queries for voice channels are here (%h.voice)</li>
</ul>
<h3 id="10-10-2020">10/10/2020</h3>
<p>v1.8.2:</p>
<ul>
<li>Added shop and one new purchasable item (%shop)</li>
<li>Added inventory (%inv)</li>
<li>Moderate messages setting default changed to False (%set)</li>
<li><code>%h</code> is now <code>%h</code></li>
<li>New type this images with color (%work)</li>
</ul>
<h3 id="10-7-2020">10/7/2020</h3>
<p>v1.8.1:</p>
<ul>
<li>Mute commands are now available on all servers!</li>
<li>Added dog and cat pictures (<code>%pet</code>)</li>
<li>Reorganized command help embeds</li>
</ul>
<p>v1.7.9:</p>
<ul>