This repository has been archived by the owner on Sep 25, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
versions.json
2498 lines (2498 loc) · 103 KB
/
versions.json
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
[
{
"version": "1.0.1",
"files": {
"bot/login/login.js": "fixes terminal freeze"
}
},
{
"version": "1.0.2",
"files": {
"bot/login/loadData.js": "fixes terminal freeze"
}
},
{
"version": "1.0.3",
"files": {
"bot/handler/handlerEvents.js": "fixes terminal freeze"
}
},
{
"version": "1.0.4",
"files": {
"bot/login/login.js": "fixes bugs",
"scripts/cmds/badwords.js": "fixes error `Cannot read properties of undefined (reading 'settings')`",
"scripts/cmds/loadconfig.js": "fixes error `Cannot read properties of undefined (reading 'dirConfig')`",
"scripts/cmds/tik.js": "fixes api"
}
},
{
"version": "1.0.5",
"files": {
"bot/login/login.js": "fixes duplicate login"
}
},
{
"version": "1.0.6",
"files": {
"scripts/cmds/ytb.js": "fixes error `AxiosError: unable to verify the first certificate`"
}
},
{
"version": "1.0.7",
"files": {
"scripts/cmds/videofb.js": "fixes error Cannot download video"
}
},
{
"version": "1.0.8",
"files": {
"utils.js": "update system translate",
"scripts/cmds/adduser.js": "update system translate"
}
},
{
"version": "1.0.9",
"files": {
"scripts/cmds/tik.js": "add slide download feature (images)"
}
},
{
"version": "1.0.10",
"files": {
"bot/handler/handlerEvents.js": "",
"scripts/cmds/simsimi.js": "new command"
}
},
{
"version": "1.0.11",
"files": {
"utils.js": "",
"scripts/cmds/anime.js": "new command random anime image",
"scripts/cmds/avatar.js": "new command create avatar anime",
"scripts/cmds/simsimi.js": ""
}
},
{
"version": "1.0.12",
"files": {
"scripts/cmds/anime.js": "fixes error Dissallowed props: `attachent`",
"scripts/cmds/videofb.js": ""
}
},
{
"version": "1.0.13",
"files": {
"bot/handler/handlerEvents.js": "fixes adminOnly not working",
"bot/login/loadScripts.js": "",
"scripts/cmds/cmd.js": "add function `install`: Download and install a script from a url, url is the path to the script (raw)",
"scripts/cmds/event.js": "add function `install`: Download and install a script from a url, url is the path to the script (raw)"
}
},
{
"version": "1.0.14",
"files": {
"bot/login/login.js": "automatically remove duplicate event listeners",
"scripts/cmds/cmd.js": "fixes error: `TypeError: Cannot read property 'indexOf' of undefined`",
"index.js": "added notification feature when new update is available"
}
},
{
"version": "1.0.15",
"files": {
"bot/login/login.js": "fixes bot not working after some time",
"scripts/cmds/admin.js": "new command help you Add, remove, edit admin rights",
"scripts/cmds/cmd.js": "fixes error `TypeError: Cannot read properties of undefined (reading 'toLowerCase')`",
"scripts/cmds/event.js": "fixes error `TypeError: Cannot read properties of undefined (reading 'toLowerCase')``"
}
},
{
"version": "1.0.16",
"files": {
"index.js": "",
"scripts/cmds/moon.js": "fixes error `TypeError: Cannot read property 'slice' of undefined`"
}
},
{
"version": "1.0.17",
"files": {
"database/connectDB/connectMongoDB.js": "fixes can't connect mongodb",
"database/controller/dashBoardData.js": "fixes can't connect mongodb",
"database/controller/index.js": "fixes can't connect mongodb",
"database/controller/threadsData.js": "fixes can't connect mongodb",
"database/controller/usersData.js": "fixes can't connect mongodb",
"index.js": "Update error reporting system",
"utils.js": "Update error reporting system"
}
},
{
"version": "1.0.18",
"files": {
"utils.js": "fixes error `CREDENTIALS: Please provide a valid apiKey in file config.json`"
}
},
{
"version": "1.0.19",
"files": {
"scripts/cmds/tik.js": "fixes `Error: The first argument (url) must be a string`"
}
},
{
"version": "1.0.20",
"files": {
"scripts/cmds/busy.js": "new command",
"scripts/cmds/filteruser.js": "new command",
"scripts/cmds/refresh.js": "new command"
}
},
{
"version": "1.0.21",
"files": {
"scripts/cmds/refresh.js": "edit role 0 (everyone) to 1 (admin only)"
}
},
{
"version": "1.0.22",
"files": {
"index.js": "confusion between variable \"version\" and \"currentVersion\" 🤧",
"scripts/cmds/setleave.js": "fixes can't customize newline text",
"scripts/cmds/setwelcome.js": "fixes can't customize newline text",
"scripts/cmds/shortcut.js": "fixes bug",
"scripts/cmds/simsimi.js": ""
}
},
{
"version": "1.0.23",
"files": {
"dashboard/views/404.eta": "cancel minify and fixes bugs",
"dashboard/views/change-password.eta": "cancel minify and fixes bugs",
"dashboard/views/dashboard-custom-cmd.eta": "cancel minify and fixes bugs",
"dashboard/views/dashboard-leave.eta": "cancel minify and fixes bugs",
"dashboard/views/dashboard-rankup.eta": "cancel minify and fixes bugs",
"dashboard/views/dashboard-thread.eta": "cancel minify and fixes bugs",
"dashboard/views/dashboard-welcome.eta": "cancel minify and fixes bugs",
"dashboard/views/dashboard.eta": "cancel minify and fixes bugs",
"dashboard/views/donate.eta": "cancel minify and fixes bugs",
"dashboard/views/forgot-password-new-password.eta": "cancel minify and fixes bugs",
"dashboard/views/forgot-password-submit-code.eta": "cancel minify and fixes bugs",
"dashboard/views/forgot-password.eta": "cancel minify and fixes bugs",
"dashboard/views/home.eta": "cancel minify and fixes bugs",
"dashboard/views/login.eta": "cancel minify and fixes bugs",
"dashboard/views/profile.eta": "cancel minify and fixes bugs",
"dashboard/views/register-resend-code.eta": "cancel minify and fixes bugs",
"dashboard/views/register-submit-code.eta": "cancel minify and fixes bugs",
"dashboard/views/register.eta": "cancel minify and fixes bugs",
"dashboard/views/stats.eta": "cancel minify and fixes bugs",
"dashboard/views/verifyfbid-submit-code.eta": "cancel minify and fixes bugs",
"dashboard/views/verifyfbid.eta": "cancel minify and fixes bugs",
"bot/autoUptime.js": "add language adjustment function for terminal",
"bot/handler/handlerCheckData.js": "add language adjustment function for terminal",
"languages/vi.lang": "add language adjustment function for terminal",
"languages/en.lang": "add language adjustment function for terminal",
"index.js": "add language adjustment function for terminal",
"database/controller/index.js": "add language adjustment function for terminal",
"dashboard/routes/verifyfbid.js": "add language adjustment function for terminal",
"bot/login/socketIO.js": "add language adjustment function for terminal",
"bot/login/login.js": "add language adjustment function for terminal",
"bot/login/loadScripts.js": "add language adjustment function for terminal",
"bot/login/loadData.js": "add language adjustment function for terminal",
"scripts/cmds/grouptag.js": "add feature to view tag group information",
"database/models/mongodb/userDashBoard.js": "fixes mongodb not working",
"database/models/mongodb/user.js": "fixes mongodb not working",
"database/models/mongodb/thread.js": "fixes mongodb not working",
"database/controller/usersData.js": "fixes mongodb not working",
"database/controller/threadsData.js": "fixes mongodb not working",
"database/controller/dashBoardData.js": "fixes mongodb not working",
"dashboard/routes/api.js": "",
"dashboard/app.js": ""
}
},
{
"version": "1.0.24",
"files": {
"update.js": "update handle update",
"languages/en.lang": ""
}
},
{
"version": "1.0.25",
"files": {
"bot/handler/handlerAction.js": "add globalModel and globalData",
"utils.js": "add globalModel and globalData",
"scripts/cmds/eval.js": "add globalModel and globalData",
"index.js": "add globalModel and globalData",
"database/models/sqlite/global.js": "add globalModel and globalData",
"database/models/mongodb/global.js": "add globalModel and globalData",
"database/controller/index.js": "add globalModel and globalData",
"database/controller/globalData.js": "add globalModel and globalData",
"database/connectDB/connectSqlite.js": "add globalModel and globalData",
"database/connectDB/connectMongoDB.js": "add globalModel and globalData",
"dashboard/connectDB.js": "add globalModel and globalData",
"bot/login/loadData.js": "add globalModel and globalData",
"bot/login/login.js": "add globalModel and globalData",
"bot/handler/handlerEvents.js": "add globalModel and globalData",
"bot/login/checkLiveCookie.js": "Update checkLiveCookie.js",
"dashboard/views/register.eta": "",
"database/controller/dashBoardData.js": "Update many error messages",
"database/controller/threadsData.js": "Update many error messages",
"database/controller/usersData.js": "Update many error messages",
"scripts/cmds/setname.js": "",
"updater.js": "update updater",
"update.js": "update updater"
}
},
{
"version": "1.0.26",
"files": {
"scripts/cmds/setalias.js": "add option -g (applies to the whole system)",
"scripts/cmds/event.js": "add Argument and Parameter `globalModel`, `globalData`",
"scripts/cmds/cmd.js": "add Argument and Parameter `globalModel`, `globalData`",
"bot/login/loadScripts.js": "add Argument and Parameter `globalModel`, `globalData`",
"bot/handler/handlerEvents.js": "add Argument and Parameter `globalModel`, `globalData`",
"bot/login/login.js": "add Argument and Parameter `globalModel`, `globalData`"
}
},
{
"version": "1.0.27",
"files": {
"bot/login/login.js": "fixes console freeze error"
}
},
{
"version": "1.0.28",
"files": {
"scripts/cmds/notification.js": "fixes `Error: parseAndCheckLogin got status code: 404. Bailing out of trying to parse response.`"
},
"deleteFiles": {
"scripts/cmds/instagram.js": "api is no longer working"
}
},
{
"version": "1.0.29",
"files": {
"bot/handler/handlerEvents.js": "fixes `Can't find text: \"handlerEvents..\"`",
"package-lock.json": "update package `fb-chat-api` version 10.4.14",
"package.json": "update package `fb-chat-api` version 10.4.14",
"scripts/cmds/setavt.js": "fixes `TypeError: Cannot read property 'startsWith' of undefined`",
"scripts/cmds/ytb.js": "no need to use youtube api key v3 anymore"
}
},
{
"version": "1.0.30",
"files": {
"scripts/cmds/ytb.js": "fixes `TypeError: Cannot read property 'length' of undefined`",
"scripts/cmds/customrankcard.js": ""
}
},
{
"version": "1.1.0",
"files": {
"config.json": "",
"utils.js": "cancel automatic translation by api",
"dashboard/app.js": "fixes `Error: Login sessions require session support. Did you forget to use 'express-session' middleware`",
"database/controller/usersData.js": "add function `addMoney` and `subtractMoney`",
"bot/autoUptime.js": "fixes error `Cannot read property 'data' of undefined`",
"bot/handler/handlerEvents.js": "optimization",
"bot/login/loadScripts.js": "optimization",
"bot/login/login.js": "optimization",
"languages/en.lang": "add new text",
"languages/vi.lang": "add new text",
"languages/cmds/en.js": "you can customize the language according to this example",
"languages/events/en.js": "you can customize the language according to this example",
"scripts/cmds/cmd.js": "add custom language & optimization",
"scripts/cmds/adboxonly.js": "add custom language",
"scripts/cmds/adduser.js": "add custom language",
"scripts/cmds/admin.js": "add custom language",
"scripts/cmds/adminonly.js": "add custom language",
"scripts/cmds/all.js": "add custom language",
"scripts/cmds/anime.js": "add custom language",
"scripts/cmds/antichangeinfobox.js": "add custom language",
"scripts/cmds/appstore.js": "add custom language",
"scripts/cmds/autosetname.js": "add custom language",
"scripts/cmds/avatar.js": "add custom language",
"scripts/cmds/badwords.js": "add custom language",
"scripts/cmds/balance.js": "add custom language",
"scripts/cmds/batslap.js": "add custom language",
"scripts/cmds/busy.js": "add custom language",
"scripts/cmds/callad.js": "add custom language",
"scripts/cmds/count.js": "add custom language",
"scripts/cmds/customrankcard.js": "add custom language",
"scripts/cmds/dhbc.js": "add custom language",
"scripts/cmds/emojimix.js": "add custom language",
"scripts/cmds/eval.js": "add custom language",
"scripts/cmds/event.js": "add custom language",
"scripts/cmds/filteruser.js": "add custom language",
"scripts/cmds/getfbstate.js": "add custom language",
"scripts/cmds/grouptag.js": "add custom language",
"scripts/cmds/help.js": "add custom language",
"scripts/cmds/kick.js": "add custom language",
"scripts/cmds/loadconfig.js": "add custom language",
"scripts/cmds/moon.js": "add custom language",
"scripts/cmds/notification.js": "add custom language",
"scripts/cmds/prefix.js": "add custom language",
"scripts/cmds/rank.js": "add custom language",
"scripts/cmds/rankup.js": "add custom language",
"scripts/cmds/refresh.js": "add custom language",
"scripts/cmds/rules.js": "add custom language",
"scripts/cmds/sendnoti.js": "add custom language",
"scripts/cmds/setalias.js": "add custom language",
"scripts/cmds/setavt.js": "add custom language",
"scripts/cmds/setlang.js": "add custom language",
"scripts/cmds/setleave.js": "add custom language",
"scripts/cmds/setname.js": "add custom language",
"scripts/cmds/setrole.js": "add custom language",
"scripts/cmds/setwelcome.js": "add custom language",
"scripts/cmds/shortcut.js": "add custom language",
"scripts/cmds/simsimi.js": "add custom language",
"scripts/cmds/sorthelp.js": "add custom language",
"scripts/cmds/thread.js": "add custom language",
"scripts/cmds/tid.js": "add custom language",
"scripts/cmds/tik.js": "add custom language",
"scripts/cmds/trigger.js": "add custom language",
"scripts/cmds/uid.js": "add custom language",
"scripts/cmds/unsend.js": "add custom language",
"scripts/cmds/user.js": "add custom language",
"scripts/cmds/videofb.js": "add custom language",
"scripts/cmds/warn.js": "add custom language",
"scripts/cmds/weather.js": "add custom language",
"scripts/cmds/ytb.js": "add custom language"
}
},
{
"version": "1.1.1",
"files": {
"languages/en.lang": "",
"languages/vi.lang": "",
"scripts/cmds/help.js": "fixes error `TypeError: Cannot read property 'doNotHave' of undefined`",
"scripts/cmds/kick.js": "added languages",
"bot/handler/handlerEvents.js": "optimization function getLang",
"scripts/events/checkwarn.js": "added languages",
"scripts/events/leave.js": "added languages",
"scripts/events/logsbot.js": "added languages",
"scripts/events/welcome.js": "added languages"
}
},
{
"version": "1.1.2",
"files": {
"languages/cmds/en.js": "language update",
"scripts/cmds/help.js": "language update",
"scripts/events/leave.js": "language update",
"scripts/events/welcome.js": "language update"
}
},
{
"version": "1.1.3",
"files": {
"bot/handler/handlerEvents.js": "fixes can't use bot when inbox 1-1",
"scripts/events/logsbot.js": "fixes error `TypeError: checkAndTranslate is not a function`",
"scripts/cmds/customrankcard.js": "language update",
"scripts/cmds/help.js": "language update",
"scripts/cmds/thread.js": "language update",
"languages/cmds/en.js": "language update",
"database/controller/usersData.js": "fixes bugs",
"database/controller/threadsData.js": "fixes bugs",
"database/controller/globalData.js": "fixes bugs",
"database/controller/dashBoardData.js": "fixes bugs",
"languages/en.lang": "language update",
"languages/vi.lang": "language update"
}
},
{
"version": "1.1.4",
"files": {
"scripts/cmds/busy.js": "language update"
}
},
{
"version": "1.1.5",
"files": {
"bot/handler/handlerEvents.js": "language update",
"scripts/cmds/emojimix.js": "language update",
"scripts/cmds/loadconfig.js": "language update",
"scripts/cmds/rules.js": "language update",
"scripts/cmds/setalias.js": "language update",
"scripts/cmds/daily.js": "new command get daily coins and exp",
"scripts/cmds/busy.js": "language update"
}
},
{
"version": "1.1.6",
"files": {
"scripts/cmds/busy.js": "fixes bugs auto activated for all member",
"scripts/cmds/notification.js": "fixes error `TypeError: checkAndTranslate is not a function`",
"scripts/cmds/callad.js": "fixes error `TypeError: checkAndTranslate is not a function`",
"dashboard/routes/verifyfbid.js": "fixes error `TypeError: checkAndTranslate is not a function`",
"languages/vi.lang": "language update",
"languages/en.lang": "language update",
"scripts/events/leave.js": "language update"
}
},
{
"version": "1.1.7",
"files": {
"bot/source/invalid_domain_for_site_key.jpg": "add image",
"bot/source/invalid_grant1.jpg": "add image",
"bot/source/invalid_grant2.jpg": "add image",
"bot/source/redirect_uri_mismatch.jpg": "add image",
"scripts/cmds/assets/guide/customrankcard/guide2.png": "add image",
"bot/login/checkLiveCookie.js": "",
"bot/handler/handlerEvents.js": "language update",
"scripts/cmds/callad.js": "language update",
"scripts/cmds/help.js": "language update",
"scripts/cmds/rankup.js": "support custome message rankup",
"scripts/cmds/setalias.js": "fixes error `TypeError: Cannot read property 'has' of undefined`",
"scripts/cmds/setrankup.js": "a new command to set custom message rankup",
"scripts/cmds/antichangeinfobox.js": "language update",
"languages/en.lang": "language update",
"languages/vi.lang": "language update",
"utils.js": "language update"
}
},
{
"version": "1.1.8",
"files": {
"scripts/cmds/admin.js": "language update",
"scripts/cmds/help.js": "language update",
"scripts/cmds/setrole.js": "language update",
"scripts/cmds/shortcut.js": "language update",
"languages/cmds/en.js": "language update"
}
},
{
"version": "1.1.9",
"files": {
"scripts/cmds/shortcut.js": "fixes with attachment giving error"
}
},
{
"version": "1.1.10",
"files": {
"scripts/cmds/rankup.js": "fixes `TypeError: Cannot read property of undefined (reading 'attachments')`",
"scripts/cmds/shortcut.js": "fixes cannot delete/remove shortcut",
"scripts/cmds/avatar.js": "language udpate"
}
},
{
"version": "1.1.11",
"files": {
"scripts/cmds/setalias.js": "fixes bugs",
"bot/handler/handlerEvents.js": "language update"
}
},
{
"version": "1.1.12",
"files": {
"scripts/cmds/setrole.js": "language update"
},
"deleteFiles": {
"scripts/cmds/simsimi.js": "delete command"
}
},
{
"version": "1.1.13",
"files": {
"bot/handler/handlerEvents.js": "language update",
"scripts/cmds/avatar.js": "language update",
"scripts/cmds/help.js": "language update",
"scripts/cmds/hubble.js": "new command: get image from hubble telescope",
"scripts/cmds/translate.js": "new command: translate text"
}
},
{
"version": "1.1.14",
"files": {
"scripts/cmds/translate.js": "can translate any message by reaction \"🌐\" or custom by you to message",
"scripts/cmds/rules.js": "fixes bugs"
}
},
{
"version": "1.1.15",
"files": {
"scripts/cmds/rank.js": "remove rank card creation with api"
}
},
{
"version": "1.1.16",
"files": {
"scripts/cmds/hubble.js": "update hubble data url",
"scripts/cmds/assets/font/BeVietnamPro-Bold.ttf": "add font"
}
},
{
"version": "1.1.17",
"files": {
"database/models/sqlite/userDashBoard.js": "edit filename",
"database/controller/index.js": "fixes bugs",
"database/connectDB/connectSqlite.js": "",
"bot/login/loadData.js": "you can toggle the feature of refreshing user information, thread",
"config.json": {
"database.type": "sqlite",
"database.autoSyncWhenStart": true,
"database.notes": "type selects 'json' or 'sqlite' or 'mongodb'. If you choose mongodb, enter uri connect mongodb in the uriMongodb section, instructions to get uri connect mongodb at: https://youtu.be/z1f9urHW5xY. I recommend using 'mongodb' or 'sqlite', json is not recommended because it is not stable."
},
"logger/loading.js": "",
"logger/log.js": ""
}
},
{
"version": "1.1.18",
"files": {
"scripts/cmds/ignoreonlyad.js": "add new command",
"scripts/cmds/ignoreonlyadbox.js": "add new command",
"scripts/cmds/jsontomongodb.js": "add new command",
"scripts/cmds/jsontosqlite.js": "add new command",
"bot/handler/handlerEvents.js": "language update",
"languages/en.lang": "language update",
"languages/vi.lang": "language update",
"scripts/cmds/setlang.js": "language update",
"config.json": {
"adminOnly.enable": "DEFAULT_adminOnly",
"adminOnly.ignoreCommand": []
},
"database/controller/threadsData.js": "fixes bugs",
"index.js": "language update",
"scripts/cmds/adminonly.js": ""
}
},
{
"version": "1.1.19",
"files": {
"scripts/cmds/customrankcard.js": "language update",
"scripts/cmds/hubble.js": "language update",
"scripts/cmds/thread.js": "more precise search feature",
"scripts/cmds/user.js": "more precise search feature",
"scripts/cmds/help.js": "fixes not showing description when viewing command info",
"bot/login/login.js": "can enable/disable auto-relogin when account.txt file changes in config.json/autoReloginWhenChangeAccount",
"config.json": {
"autoReloginWhenChangeAccount": false
}
}
},
{
"version": "1.1.20",
"files": {
"scripts/cmds/filteruser.js": "fixes bugs bot listening members reaction message and kick members",
"config.json": {
"language": "en",
"notesLanguage": "change to your language with ISO 639-1 code, available languages: vi (Vietnamese), en (English)"
}
}
},
{
"version": "1.1.21",
"files": {
"configCommands.json": "youtube api key not used",
"database/controller/dashBoardData.js": "Bug fixes & code optimization",
"database/controller/globalData.js": "Bug fixes & code optimization",
"database/controller/threadsData.js": "Bug fixes & code optimization",
"database/controller/usersData.js": "Bug fixes & code optimization",
"scripts/cmds/busy.js": "Bug fixes & code optimization",
"scripts/cmds/help.js": "language update",
"scripts/cmds/setlang.js": "fixes not saving data when changing language of chat group"
}
},
{
"version": "1.1.22",
"files": {
"database/controller/dashBoardData.js": "bug fixes & code optimization",
"database/controller/globalData.js": "bug fixes & code optimization",
"database/controller/threadsData.js": "bug fixes & code optimization",
"database/controller/usersData.js": "bug fixes & code optimization",
"scripts/cmds/busy.js": "bug fixes & code optimization",
"scripts/cmds/rules.js": "respond with the order number to see that rule"
}
},
{
"version": "1.1.23",
"files": {
"scripts/cmds/adduser.js": "bugs fixes & language update",
"scripts/cmds/callad.js": "bugs fixes & language update",
"scripts/cmds/jsontomongodb.js": "bugs fixes & language update",
"scripts/cmds/jsontosqlite.js": "bugs fixes & language update",
"scripts/cmds/notification.js": "bugs fixes & language update",
"scripts/cmds/sendnoti.js": "bugs fixes & language update",
"utils.js": "bugs fixes `findUid` & language update"
}
},
{
"version": "1.1.24",
"files": {
"scripts/cmds/user.js": "code optimization",
"scripts/cmds/thread.js": "code optimization",
"scripts/cmds/moon.js": "the structure of the source web has changed, I fixed it",
"scripts/cmds/help.js": "continue with the next numbering for the next page",
"scripts/cmds/eval.js": "add function `output` & `out`: similar to message.reply() but will automatically convert input data types to strings",
"scripts/cmds/admin.js": "can reply to the message to select the target as the sender of that message",
"bot/handler/handlerEvents.js": "languages update",
"languages/en.lang": "language update",
"languages/vi.lang": "language update"
}
},
{
"version": "1.1.25",
"files": {
"bot/login/login.js": "code optimization",
"bot/login/getFbstate1.js": "code optimization",
"scripts/cmds/jsontosqlite.js": "fixed error: `TypeError: Cannot read property 'globalData' of undefined` when convert global data",
"scripts/cmds/jsontomongodb.js": "fixed error: `TypeError: Cannot read property 'globalData' of undefined` when convert global data"
}
},
{
"version": "1.1.26",
"files": {
"bot/handler/handlerEvents.js": "code optimization & bug fixes & add feature autoRefreshThreadInfoFirstTime: when you set autoRefreshThreadInfoFirstTime to true on config, the bot will automatically refresh the thread information when get first message from the thread since starting the bot",
"config.json": {
"database.autoRefreshThreadInfoFirstTime": false,
"database.notes": "(1) type selects 'json' or 'sqlite' or 'mongodb'. If you choose mongodb, enter uri connect mongodb in the uriMongodb section, instructions to get uri connect mongodb at: https://youtu.be/z1f9urHW5xY. I recommend using 'mongodb' or 'sqlite', json is not recommended because it is not stable. (2) when you set autoSyncWhenStart to true, the bot will automatically synchronize the data in the database when starting the bot, this will make the bot start slower. (3) when you set autoRefreshThreadInfoFirstTime to true, the bot will automatically refresh the thread information when get first message from the thread since starting the bot"
},
"bot/login/loadData.js": "code optimization & bug fixes",
"database/controller/threadsData.js": "code optimization & bug fixes refreshInfo function",
"index.js": "",
"scripts/cmds/notification.js": "language update"
}
},
{
"version": "1.1.27",
"files": {
"languages/cmds/en.js": "language update",
"scripts/cmds/help.js": "language update",
"scripts/cmds/notification.js": "more precise group filtering",
"scripts/cmds/setleave.js": "fixes the error when sending the link",
"scripts/cmds/setrankup.js": "fixes the error when sending the link",
"scripts/cmds/setwelcome.js": "fixes the error when sending the link",
"scripts/cmds/shortcut.js": "fixes the error when sending the link",
"scripts/cmds/thread.js": "can search and filter bot groups that are still participating in the group"
}
},
{
"version": "1.1.28",
"files": {
"database/controller/threadsData.js": "bug fixes refreshInfo function: missing `userID` parameter when refreshing members information leads to huge data generation"
}
},
{
"version": "1.1.29",
"files": {
"Goat.js": "",
"index.js": "",
"bot/handler/handlerEvents.js": "languages update",
"bot/login/login.js": "languages update",
"languages/en.lang": "languages update",
"languages/vi.lang": "languages update",
"scripts/cmds/restart.js": "a new command: restart bot",
"config.json": {
"autoRestart": {
"time": null,
"notes": "you can set time is interval with milisecond or cron time, example: 1000, 10000, 60000, 3600000, 86400000, 0 0 * * *,... docs: https://www.npmjs.com/package/node-cron. If you set time is 0 or false or null, the bot will not auto restart"
}
}
}
},
{
"version": "1.1.30",
"files": {
"Goat.js": "fixed `TypeError: Cannot read property 'match' of null`"
}
},
{
"version": "1.1.31",
"files": {
"scripts/cmds/avatar.js": "fixes error: `TypeError: Cannot read properties of undefined (reading 'data')`",
"scripts/cmds/cmd.js": "",
"scripts/cmds/restart.js": "",
"config.json": {}
}
},
{
"version": "1.1.32",
"files": {
"bot/login/login.js": "fixes facebook login problem",
"bot/login/getFbstate1.js": "fixes facebook login problem",
"config.json": {
"facebookAccount.userAgent": "Mozilla/5.0 (Linux; Android 12; M2102J20SG) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Mobile Safari/537.36"
},
"logger/log.js": "remove the separator character",
"logger/loading.js": "remove the separator character",
"dashboard/views/dashboard-thread.eta": "code optimization",
"dashboard/views/dashboard.eta": "code optimization",
"dashboard/views/partials/footer.eta": "code optimization",
"dashboard/views/partials/header.eta": "code optimization",
"dashboard/views/partials/message.eta": "code optimization",
"dashboard/views/register-submit-code.eta": "code optimization",
"dashboard/views/verifyfbid-submit-code.eta": "code optimization",
"dashboard/views/verifyfbid.eta": "code optimization"
}
},
{
"version": "1.1.33",
"files": {
"bot/handler/handlerEvents.js": "Fixed a error that failed to generate data when adding a bot to a new chat box",
"database/controller/threadsData.js": "Fixed a error that failed to generate data when adding a bot to a new chat box",
"database/controller/dashBoardData.js": "minor bug fixes",
"database/controller/globalData.js": "minor bug fixes",
"database/controller/usersData.js": "minor bug fixes",
"scripts/events/logsbot.js": "fixes bot changing nickname twice when added to new chat box"
}
},
{
"version": "1.1.34",
"files": {
"scripts/cmds/tik.js": "fixes error: `Error: connect ECONNREFUSED 0.0.0.0:443`",
"utils.js": "add `shortenURL` feature"
}
},
{
"version": "1.1.35",
"files": {
"bot/login/getFbstate1.js": "can detect using old password when logging in",
"bot/handler/handlerEvents.js": "language update",
"languages/cmds/en.js": "language update",
"languages/en.lang": "language update",
"scripts/cmds/cmd.js": "language update",
"scripts/cmds/tik.js": "fixes errors cannot download videos/audio",
"scripts/cmds/ytb.js": "Delete the ytdl-core package & fixes error `Cannot Search Video`",
"scripts/cmds/emojimean.js": "New command: Searching for the meaning of Emoji, the data is taken from `https://www.emojiall.com/`"
}
},
{
"version": "1.1.36",
"files": {
"scripts/cmds/emojimean.js": "automatically select the highest resolution image"
}
},
{
"version": "1.1.37",
"files": {
"languages/cmds/en.js": "language update",
"bot/handler/handlerEvents.js": "fixes error `TypeError: Cannot read property 'config' of undefined`",
"bot/login/login.js": "fixes auto restart bot when calling `cmd loadAll`",
"scripts/cmds/cmd.js": "can load multiple commands at once",
"scripts/cmds/customrankcard.js": "Can be customized more",
"scripts/cmds/rank.js": "can be customized more",
"scripts/cmds/help.js": "language update",
"scripts/cmds/tik.js": "fixes error when download slides",
"scripts/cmds/ytb.js": "fixes error `TypeError: Cannot read properties of null (reading '0')`",
"utils.js": "",
"scripts/cmds/assets/guide/customrankcard/guide1.jpg": ""
}
},
{
"version": "1.1.38",
"files": {
"languages/cmds/en.js": "language update and change the image storage address of some commands",
"scripts/cmds/setwelcome.js": "change photo storage address",
"scripts/cmds/setleave.js": "change photo storage address",
"scripts/cmds/setname.js": "change photo storage address"
},
"deleteFiles": {
"scripts/cmds/assets/guide/customrankcard/guide1.jpg": "change photo storage address",
"scripts/cmds/assets/guide/customrankcard/guide2.png": "change photo storage address",
"scripts/cmds/assets/guide/setleave/guide1.png": "change photo storage address",
"scripts/cmds/assets/guide/setname/guide1.png": "change photo storage address",
"scripts/cmds/assets/guide/setname/guide2.png": "change photo storage address",
"scripts/cmds/assets/guide/setwelcome/guide1.png": "change photo storage address"
}
},
{
"version": "1.1.39",
"files": {
"updater.js": "update updater",
"scripts/cmds/help.js": "fix can't automatically create new folder when it doesn't exist"
}
},
{
"version": "1.1.40",
"files": {
"scripts/cmds/customrankcard.js": "fixes can't select photo by replying to message",
"scripts/cmds/rank.js": "fixes not being able to optional alphaSubcolor = 0"
}
},
{
"version": "1.2.0",
"files": {
"bot/login/login.js": "change my server domain",
"scripts/cmds/antichangeinfobox.js": "change my server domain",
"scripts/cmds/avatar.js": "change my server domain",
"scripts/cmds/dhbc.js": "change my server domain",
"scripts/cmds/emojimix.js": "change my server domain",
"scripts/cmds/emojimean.js": "fix bug"
}
},
{
"version": "1.2.1",
"files": {
"bot/login/login.js": "update & code optimization",
"database/controller/dashBoardData.js": "update & code optimization",
"database/controller/globalData.js": "update & code optimization",
"database/controller/threadsData.js": "update & code optimization",
"database/controller/usersData.js": "update & code optimization",
"bot/login/checkLiveCookie.js": "update & code optimization",
"scripts/cmds/art.js": "new command: Convert photos into anime drawings"
}
},
{
"version": "1.2.2",
"files": {
"scripts/cmds/art.js": "fixes error when reply message no pictures attached",
"languages/cmds/en.js": "language update",
"package.json": "add gradient-string package",
"package-lock.json": "add gradient-string package",
"scripts/cmds/antichangeinfobox.js": "",
"scripts/cmds/warn.js": "fixes error `❌ Can't find text on language \"en\" for command \"warn\" with key \"list\"`",
"languages/vi.lang": "language update",
"languages/en.lang": "language update",
"updater.js": "automatically install dependencies after update",
"index.js": "show author information"
}
},
{
"version": "1.2.3",
"files": {
"scripts/cmds/ytb.js": "fixes error `An error occured when executing command \"ytb\"`"
}
},
{
"version": "1.2.4",
"files": {
"scripts/cmds/tik.js": "fixes error `❌ An error occurred, please try again later`"
}
},
{
"version": "1.2.5",
"files": {
"scripts/cmds/ytb.js": "fixes error `An error occurred when executing onReply at command \"ytb\"`"
}
},
{
"version": "1.2.6",
"files": {
"bot/login/login.js": "easy login with terminal and auto-login again when cookie expires (if there is account configuration, password in config.json file)",
"config.json": {
"facebookAccount.intervalGetNewCookie": 1440,
"facebookAccount.notes": "time the system automatically retrieves new cookies from email/password, unit is minute, if you set null, the system will not automatically retrieve new cookies, it saves you from having to manually change your cookie every time it expires. recommended set to 1440 (1day) or 4320 (3day).TO BE ABLE TO USE THIS FEATURE YOU NEED TO ENTER THE ACCOUNT PASSWORD ABOVE"
},
"languages/vi.lang": "language update",
"languages/en.lang": "language update"
}
},
{
"version": "1.2.7",
"files": {
"languages/cmds/en.js": "language update",
"languages/cmds/vi.js": "language update",
"scripts/cmds/warn.js": "language update"
}
},
{
"version": "1.2.8",
"files": {
"scripts/cmds/callad.js": "language update",
"languages/cmds/en.js": "language update"
}
},
{
"version": "1.2.9",
"files": {
".vscode/GoatBot.code-snippets": "add code snippets",
"bot/login/login.js": "languages update",
"languages/cmds/en.js": "languages update",
"scripts/cmds/adduser.js": "language update",
"scripts/cmds/help.js": "language update"
}
},
{
"version": "1.2.10",
"files": {
"utils.js": "update shorten url function"
}
},
{
"version": "1.2.11",
"files": {
"scripts/cmds/shortcut.js": "language update"
}
},
{
"version": "1.2.12",
"files": {
"scripts/cmds/ytb.js": "fixes error can't download video"
}
},
{
"version": "1.2.13",
"files": {
"bot/login/login.js": "language update",
"scripts/cmds/badwords.js": "language update",
"languages/cmds/en.js": "language update",
"scripts/cmds/filteruser.js": "Fixed a bug that could not delete members whose account was locked & language update"
}
},
{
"version": "1.2.14",
"files": {
"bot/login/login.js": "fixed error gban check"
}
},
{
"version": "1.2.15",
"files": {
"config.json": {
"database.autoSyncWhenStart": false
},
"scripts/cmds/shortcut.js": "can overwrite existing shortcut",
"scripts/cmds/sendnoti.js": "fixes admin bot can't send notification",
"languages/cmds/en.js": "language update"
}
},
{
"version": "1.2.16",
"files": {
"scripts/cmds/ytb.js": "fixes error: TypeError: Cannot read property 'accessibilityData' of undefined",
"scripts/cmds/newcommand.eg.js": "template for create new command",
"scripts/events/newcommandevent.eg.js": "template for create new command event",
"README.md": "update readme",
"DOCS.md": "update docs",
"bot/handler/handlerEvents.js": "update",
"bot/login/loadScripts.js": "update",
".vscode/GoatBot.code-snippets": "new snippets: GoatBotEventCreate"
}
},
{
"version": "1.2.17",
"files": {
"package.json": "change package `fb-chat-api` to github repo"
}
},
{
"version": "1.2.18",
"files": {
"package.json": "package `fb-chat-api` no longer exists",
"package-lock.json": "package `fb-chat-api` no longer exists"
}
},
{
"version": "1.2.19",
"files": {
"fb-chat-api/src/addExternalModule.js": "",
"fb-chat-api/src/addUserToGroup.js": "",
"fb-chat-api/src/changeAdminStatus.js": "",
"fb-chat-api/src/changeArchivedStatus.js": "",
"fb-chat-api/src/changeAvatar.js": "",
"fb-chat-api/src/changeBio.js": "",
"fb-chat-api/src/changeBlockedStatus.js": "",
"fb-chat-api/src/changeGroupImage.js": "",
"fb-chat-api/src/changeNickname.js": "",
"fb-chat-api/src/changeThreadColor.js": "",
"fb-chat-api/src/changeThreadEmoji.js": "",
"fb-chat-api/src/createNewGroup.js": "",
"fb-chat-api/src/createPoll.js": "",
"fb-chat-api/src/deleteMessage.js": "",
"fb-chat-api/src/deleteThread.js": "",
"fb-chat-api/src/forwardAttachment.js": "",
"fb-chat-api/src/getCurrentUserID.js": "",
"fb-chat-api/src/getEmojiUrl.js": "",
"fb-chat-api/src/getFriendsList.js": "",
"fb-chat-api/src/getMessage.js": "",
"fb-chat-api/src/getThreadHistory.js": "",
"fb-chat-api/src/getThreadInfo.js": "",
"fb-chat-api/src/getThreadList.js": "",
"fb-chat-api/src/getThreadPictures.js": "",