-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGELOG.txt
1736 lines (1606 loc) · 72.4 KB
/
CHANGELOG.txt
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
#== v3.13 == ( 30-09-2024 )
- [Updated] Documentation
- [Updated] System Security
- [Updated] System Optimization
- [Updated] Delus PHP Dependencies
- [Updated] Delus JS Dependencies
- [Added] Reels Module
- [Added] Disable Friends System
- [Added] Push Notifications For Android App
- [Added] Push Notifications For IOS App
- [Added] Chat Push Notifications
- [Added] Chat Privacy (Everyone, Friends, No One)
- [Added] Admin Ability To Disable Chat Module Completely
- [Added] Switching Camera in Live Streaming
- [Added] Show Camera Preview Before Live Streaming
- [Added] Enhanced Live Streaming Resolution To 720p+
- [Added] New Mobile UI
- [Added] Changed The Video Player To Plyr Instead Of Video.JS
- [Added] Abbreviated Counters
- [Added] Changed Posts With Map To Interactive Map Instead of Images
- [Added] Subscription Button In Profile
- [Added] Subscription Button In Page
- [Added] Subscription Button In Group
- [Added] Create Post To Quick Add Menu
- [Added] Create Live To Quick Add Menu
- [Added] Wallet Recharge Option Directly With Error Of No Funds Available
- [Added] Share to Timeline, Pages, Groups Or Events in Share Plugin
- [Added] Replaced PRO Badge With Icon
- [Added] Users Approval System
- [Added] Email Notifications For Users Approval System
- [Added] Watch Module Showing All Videos
- [Added] Detect Visitor Country Automatically For Watch Module
- [Added] Create Products In Pages
- [Added] Create Products In Groups
- [Added] Create Products In Events
- [Added] Search Profile Posts
- [Added] Search Page Posts
- [Added] Search Group Posts
- [Added] Search Event Posts
- [Added] Country Filter For Pages
- [Added] Country Filter For Groups
- [Added] Country Filter For Events
- [Added] Country Filter For Jobs
- [Added] Country Filter For Offers
- [Added] Country Filter For Courses
- [Added] Country Filter For Blogs
- [Added] Country Filter For Funding
- [Added] Yandex Cloud Storage Support
- [Added] Flutterwave Payment Gateway
- [Added] NyFatoorah Payment Gateway
- [Added] Epayco Payment Gateway
- [Added] Verotel Payment Gateway
- [Added] Stripe Payment Element
- [Added] PayPal Payouts Integration
- [Added] Updated Cashfree APIs To Latest Version
- [Added] Marketplace Accept Payments Instead Of Wallet Credit
- [Added] Donate Using Wallet Balance
- [Added] Admin Ability To Turn Donate Using Wallet Balance On/Off
- [Added] Static Pages With Redirect URLs
- [Added] Static Pages Added to Sidebar Menu
- [Added] Widgets Langauges
- [Added] Widgets Audience
- [Added] Points Transactions Log In User Settings
- [Added] Points/Comment For Post Author
- [Added] Points/Reaction For Post Author
- [Added] Admin Ability To Disable Points Monetization
- [Added] Custom Points System For Each Permissions Groups
- [Added] Watermark Using Username
- [Added] Monetization Earnigns In User Settings Page
- [Added] Paid Post Blurred Preview Image
- [Added] Subscriptions Post Blurred Preview Image
- [Added] Paid Post Will Paid Post For Subscribers Too
- [Added] Admin Ability To Maximum Total Upload Size
- [Added] Admin Ability To Set Default Privacy For New Users
- [Added] Admin Ability To Turn Username Changes Off
- [Added] Admin Ability To Disable Profile Updates Posts (Profile Pictures & Covers)
- [Added] Admin Ability To Set Maximum Paid Post Price
- [Added] Admin Ability To Set Maximum Monetization Plan Price
- [Added] Admin Ability To Disable Download Images
- [Added] Admin Ability To Disable Mouse Right Click
- [Added] Admin Ability To Resend Activation Emails
- [Added] User Can Select Custom User Group While Sign Up
- [Added] Admin Ability To Turn User Can Select Custom User Group On/Off
- [Added] Admin Ability To Turn Show Custom User Group Badge On/Off
- [Added] Manage Auto Connected Nodes In Getting Started
- [Added] Detect Visitor Langauge Automatically
- [Added] Admin Ability To Disable Auto Langauge Automatically
- [Added] Courses Module
- [Added] Event Sponsor For System Admins
- [Added] Pages Business ID
- [Added] Admin Ability To Turn Pages Business ID On/Off
- [Fixed] Minor Bugs
- [Fixed] Group Invitation System
- [Fixed] Stripe Recurring Payments Issue
- [Fixed] Blog Views Counter
- [Fixed] Hide Market Withdrawal Requests If Cart Disabled
- [Fixed] Page Info With Reviews Notifcations
- [Fixed] Login As with Demo Account Bug
- [Fixed] Settings Page Access With Packages Set As Subscriptions Only
- [Fixed] LinkedIn Social Login
- [Fixed] Close Button In Dark Mode
- [Fixed] MSG91 SMS Issue
- [Fixed] Video Player In Fullscreen Mode
- [Fixed] Reset reCAPTCHA after form submission
- [Fixed] Find People Will Find All Users Now
- [Fixed] Responsive Images Inside Blogs
#== v3.12 == ( 31-03-2024 )
- [Updated] Documentation
- [Updated] System Security
- [Updated] System Optimization
- [Updated] Delus PHP Dependencies
- [Updated] Delus JS Dependencies
- [Added] Selling Digital Products
- [Added] Groups Reviews
- [Added] Admin Ability To Turn Groups Reviews On/Off [Admin Panel]
- [Added] Events Reviews
- [Added] Admin Ability To Turn Events Reviews On/Off [Admin Panel]
- [Added] Posts Reviews
- [Added] Admin Ability To Turn Posts Reviews On/Off [Admin Panel]
- [Added] Paid Chat Messages For Monetizations
- [Added] Paid Audio/Video Calls For Monetizations
- [Added] Publish Posts Permission To Permissions Groups
- [Added] Create Jobs Permission To Permissions Groups
- [Added] Create Offers Permission To Permissions Groups
- [Added] Users Ability To Publish Jobs
- [Added] Users Ability To Publish Offers
- [Added] Post Approval System
- [Added] Email Notifications For Post Approval System
- [Added] Email Notifications For Verification Requests
- [Added] Adult Content Mode
- [Added] Verification Required For Publishing Posts
- [Added] Verification Required For Monetization
- [Added] Verification Required For Adult Content
- [Added] Payments VAT System
- [Added] Payments VAT System By User Country
- [Added] Payments Fees System
- [Added] Watermark Videos
- [Added] Combo Post
- [Added] Affiliates System Working With Bank Transfers
- [Added] Affiliates Working Recursively With Pro Packages
- [Added] Original Price To Offers
- [Added] Multiple Images To Offers
- [Added] Offers Expire Date Now Optional
- [Added] CV Attachment To Job Application
- [Added] Pages Events
- [Added] Admin Ability To Turn Pages Events On/Off [Admin Panel]
- [Added] List Non-Activated Users in Admin Panel [Admin Panel]
- [Added] List Users Stats In Admin Panel [Admin Panel]
- [Added] Export To CSV For Users Module [Admin Panel]
- [Added] Clear Compiled Templates From Garbage Collector [Admin Panel]
- [Added] Admin Ability To Turn Market Shopping Cart On/Off [Admin Panel]
- [Added] Unique Post Views System [Admin Panel]
- [Added] Login As for Admins Only [Admin Panel]
- [Added] Earnings Dashboard [Admin Panel]
- [Added] Visitors Insights [Admin Panel]
- [Added] New Landing Page
- [Added] Updated All Social Media Icons
- [Added] DigitalOcean Spaces S3 Compatibility
- [Fixed] Paid Posts Images Viewable While Slide Right/Left
- [Fixed] Paid Posts OG Tags Issue
- [Fixed] Fluid Videos Aspect Ration
- [Fixed] Update lightbox image download link
- [Fixed] Remove Top Friends From Other Places Than Profile Friends
- [Fixed] Delete Blog Cover Image Issue
- [Fixed] 2FA When System Turned Off
- [Fixed] Minor Bugs
#== v3.11.1 == ( 25-12-2023 )
- [Fixed] Paid Posts Issues
- [Fixed] Single Photo Comments Count Issue
- [Fixed] Blocked Recipients In Chatbox
- [Fixed] Minor Bugs
#== v3.11 == ( 05-12-2023 )
- [Updated] Documentation
- [Updated] System Security
- [Updated] System Optimization
- [Updated] Delus PHP Dependencies
- [Updated] Delus JS Dependencies
- [Added] PayPal Recurring Payments
- [Added] Stripe Recurring Payments
- [Added] Paid Posts
- [Added] Allow Paid Post for Blogs
- [Added] Posts For Subscribers Only
- [Added] Allow Subscribers Only for Blogs
- [Added] Allow Subscribers Only for Live Stream
- [Added] Subscribers Only On/Off from Edit Post Menu
- [Added] Free Trial Monetization Plans
- [Added] Minutes & Hours Monetization Plans
- [Added] Share Screen Live Streaming
- [Added] Quick Tips Buttons in Live Posts
- [Added] Chat Box for Groups
- [Added] Chat Box for Events
- [Added] Pages Reviews Module
- [Added] Earnings Dashboard for Paid Movies System [Admin Panel]
- [Added] Update Factory Reset To Reset System Options [Admin Panel]
- [Added] Garbage Collector for Orphaned Posts Data [Admin Panel]
- [Added] FFmpeg Video Resolutions [Admin Panel]
- [Added] Videos Fluid Mode [Admin Panel]
- [Added] Disable Genders [Admin Panel]
- [Added] Unsubscribe Pro Package From User's Settings
- [Added] Manage Subscriptions From Profile
- [Added] Manage User's Subscriptions Privacy From Privacy Settings
- [Added] User Ability to Share Profile
- [Added] User Ability to Share Page
- [Added] User Ability to Share Group
- [Added] User Ability to Share Event
- [Added] Hide Videos Tab from Profile if Videos Upload Disabled
- [Added] Hide Videos Tab from Page if Videos Upload Disabled
- [Added] Hide Videos Tab from Group if Videos Upload Disabled
- [Added] Hide Videos Tab from Event if Videos Upload Disabled
- [Added] Seller Info in the Invoice
- [Added] Search Option in Mobile View If Enabled
- [Fixed] Minor Bugs
- [Fixed] Emojis Insertion at End of Textarea
- [Fixed] Buy Now Shows Login Modal for Visitor
- [Fixed] Permissions Group Delete
- [Fixed] Delete User Posts When Delete User Account
- [Fixed] Marketplace Total Price
- [Fixed] Remove Select Currency From Products
- [Fixed] Paid Movies For Public Issue
- [Fixed] Paid Movies Price Issue
- [Fixed] Muted Videos When Auto-Play Off
- [Fixed] Scraper m3u8 files Issue
- [Fixed] Zoom In Mobile Browser While Publish Post|Comment
- [Fixed] Exclude Banned Users from Newsfeed
- [Fixed] Stoies Issue
#== v3.10 == ( 07-09-2023 )
- [Updated] Documentation
- [Updated] System Security
- [Updated] System Optimization
- [Updated] Delus PHP Dependencies
- [Updated] Delus JS Dependencies
- [Added] Market Purchase Module
- [Added] Tips To Blogs
- [Added] Admin ability to turn Switch Accounts On/Off [Admin Panel]
- [Added] Delus Login as Social Login
- [Added] Enable/Disable Reactions [Admin Panel]
- [Added] SMS Limit/Hour
- [Added] Wallet Transfer Maximum [Admin Panel]
- [Added] Send Tips in Profiles
- [Added] User ability to turn Send Tips in his profile On/Off [User Settings]
- [Added] Tips Button in Pages
- [Added] Page's Admin ability to turn Send Tips in his page On/Off [Page Settings]
- [Added] Products Limits Per Package
- [Added] Business Tax Info, Address, Website with Pages Verification Requests
- [Added] Change Profile Cover from Old Photos
- [Added] Change Page Cover from Old Photos
- [Added] Change Group Cover from Old Photos
- [Added] Change Event Cover from Old Photos
- [Added] Hide Permissions For Disabled Modules in Packages
- [Added] Enhanced The Search System
- [Added] Products Tab in Profile Page
- [Added] Manage Profile Top Photos
- [Added] Manage Profile Top Friends
- [Added] Photo Link Copy When Sharing Single Photo
- [Added] Create Funding from Publisher
- [Added] Page Description Supports Multiple Lines
- [Added] Group Description Supports Multiple Lines
- [Added] Event Description Supports Multiple Lines
- [Added] Show User's Marketplace Balance in Admin Panel
- [Added] Show User's Funding Balance in Admin Panel
- [Added] Show User's Monetization Balance in Admin Panel
- [Added] Enhanced Blogs Tags System
- [Added] More Zones for Wasabi Settings
- [Added] Upgrade FontAwesome to v6+
- [Added] Upgrade Installer Wizard to v5+
- [Added] Upgrade Updater Wizard to v5+
- [Fixed] Minor Bugs
- [Fixed] Change OG-Image with Video Thumbnail
- [Fixed] Exclude None-Activated Users From New People
- [Fixed] Exclude Super Admin From New People
- [Fixed] Ads for Pages & Groups
- [Fixed] Noty Notification not Clickable
- [Fixed] Pro Packages Price Format
- [Fixed] Profiles/Pages/Groups/Events UI make info first
- [Fixed] Stories ADS Last More Than 24 Hours
- [Fixed] Funding Post's Title Open New Window
- [Fixed] Change People UI Make Search At Bottom
- [Fixed] Hide Boosted Pages if Pages Disabled From Sidebar Menu
- [Fixed] Super Admin Can Change His User Group
- [Fixed] OneSignal Icon Position Issue
#== v3.9.1 == ( 17-06-2023 )
- [Fixed] Minor Bugs
- [Fixed] Cover image position issue
- [Fixed] DataTables alert issue when edit user in admin panel
- [Fixed] Critical Security Issues & Thanks to @IlyasMakari (https://twitter.com/IlyasMakari)
- [Fixed] Profile picture when start chat from profile, market, popover ...etc
- [Fixed] Replaced CDN for "Bootstrap" & "tinymce-i18n" with local files (JsDeliver CDN has some issues with some countries)
- [Fixed] Fixed "Forget Password" link position
- [Fixed] Admin panel badge text white colors in day mode
- [Fixed] Stories Issue
- [Fixed] Funding Permission
#== v3.9 == ( 05-06-2023 )
- [Updated] Documentation
- [Updated] System Security
- [Updated] System Optimization
- [Updated] Delus PHP Dependencies
- [Updated] Delus JS Dependencies
- [Added] Migrate to Bootstrap v5+
- [Added] New Default Theme
- [Added] Fluid Design Option
- [Added] Admin ability to turn Fluid Design Option On/Off [Admin Panel]
- [Added] Change Icons Colors [Admin Panel]
- [Added] New Social Login via WordPress
- [Added] New System Ads Slot For Specific Pages
- [Added] New System Ads Slot For Specific Groups
- [Added] Emojis Menu Lazy Loading
- [Added] MoneyPoolsCash Automatic Withdrawal Payments
- [Added] Movies Pay Per View Module
- [Added] Switch Accounts
- [Added] Share Stories As Ads
- [Added] Videos Categories
- [Added] Manage Videos Categories [Admin Panel]
- [Added] Manage Custom Users Groups [Admin Panel]
- [Added] Manage Permissions Groups [Admin Panel]
- [Added] Pro Packages With Permissions Groups [Admin Panel]
- [Added] Pro Packages With Picked Videos Categories Access [Admin Panel]
- [Added] Pro Packages With Picked Blogs Categories Access [Admin Panel]
- [Added] Admin ability to turn Verification Docs On/Off [Admin Panel]
- [Added] Make “Boosted” Posts Visible To Website Visitors
- [Added] Uploads Permission for Non-Logged In Users
- [Added] Change Profile Picture from Old Photos
- [Added] Change Page Picture from Old Photos
- [Added] Change Group Picture from Old Photos
- [Fixed] Minor Bugs
- [Fixed] Games Genres Issue
- [Fixed] Publisher Privacy Dropdown Menu in Mobile
- [Fixed] Video Player Aspect Ratio
- [Fixed] Stripe with JPY currency
- [Fixed] Backup contains content\backups folder
- [Fixed] Facebook Embed Responsive Issue
#== v3.8 == ( 31-03-2023 )
- [Updated] Documentation
- [Updated] System Security
- [Updated] System Optimization
- [Updated] Delus PHP Dependencies
- [Updated] Delus JS Dependencies
- [Added] New Landing Page Design
- [Added] Watch Module
- [Added] Tips Module
- [Added] Content Monetization Custom Plans Module
- [Added] Reactions Order [Admin Panel]
- [Added] Allow Animated Images for Avatars/Covers
- [Added] Admin ability to turn Animated Images On/Off [Admin Panel]
- [Added] Games Genres
- [Added] Discover Pages by Categories
- [Added] Discover Groups by Categories
- [Added] Discover Events by Categories
- [Added] Discover Games By Genres
- [Added] Edit Pages Description SEO [Admin Panel]
- [Added] Edit Groups Description SEO [Admin Panel]
- [Added] Edit Events Description SEO [Admin Panel]
- [Added] Edit Games Description SEO [Admin Panel]
- [Added] Manage DayTime Messages [Admin Panel]
- [Added] List Marketplace Posts [Admin Panel]
- [Added] Backbalze New Location [Admin Panel]
- [Added] Moneypoolscash Payment Gateway
- [Added] Show Ads Campaigns for Non-logged-in Members
- [Fixed] Pages Fake Generator
- [Fixed] Bank Transfers Accept [Admin Panel]
- [Fixed] Highcharts.js Translation [Admin Panel]
- [Fixed] Group Cover Image Position Issue
- [Fixed] Post Title With Feelings Issue
- [Fixed] Super Admin Can't Be Demo Account
- [Fixed] Dark Logo If Not Uploaded
- [Fixed] Advanced Search With Empty Query Links Issue
- [Fixed] Friends Count To Exclude Banned Users
- [Fixed] Posts limit/hours for blogs
- [Fixed] Fullname in Forums if Usernames Only Enabled
- [Fixed] Deleting Comments When Post Deleted
- [Fixed] Deleting Blog Cover Image When Blog Deleted
- [Fixed] Pinned Post Twice Views
- [Fixed] Promoted Jobs Not Open
- [Fixed] Images & Videos Aspect Ratio
#== v3.7 == ( 01-01-2023 )
- [Updated] Documentation
- [Updated] System Security
- [Updated] System Optimization
- [Updated] Delus PHP Dependencies
- [Updated] Delus JS Dependencies
- [Added] Content Monetization for [Profiles|Pages|Groups]
- [Added] Manage Reactions [Admin Panel]
- [Added] Add Follower/Followings Privacy Settings
- [Added] Ads Free System for Pro Accounts
- [Added] Admin ability to turn Ads Free System On/Off [Admin Panel]
- [Added] Posts Count in [Profile|Page|Group|Event]
- [Added] Photos Count in [Profile|Page|Group|Event]
- [Added] Videos Count in [Profile|Page|Group|Event]
- [Added] Who can Send Gifts [Everyone|Verified|Pro|Admins]
- [Added] Who can Upload Videos [Everyone|Verified|Pro|Admins]
- [Added] Who can Upload Audios [Everyone|Verified|Pro|Admins]
- [Added] Who can Upload Files [Everyone|Verified|Pro|Admins]
- [Added] Who can Add Colored Posts [Everyone|Verified|Pro|Admins]
- [Added] Who can Add Feelings/Activity Posts [Everyone|Verified|Pro|Admins]
- [Added] Who can Add Poll Posts [Everyone|Verified|Pro|Admins]
- [Added] Who can Add Geolocation Posts [Everyone|Verified|Pro|Admins]
- [Added] Who can Add GIF Posts [Everyone|Verified|Pro|Admins]
- [Added] Who can Post As Anonymous [Everyone|Verified|Pro|Admins]
- [Added] Stripe New Checkout APIs
- [Added] Dark|Light Logo [Admin Panel]
- [Added] Mixcloud Support
- [Added] Backblaze Bucket Region "eu-central-003" [Admin Panel]
- [Fixed] FastCGI Issue
- [Fixed] Pro System Charts in Admin Panel
- [Fixed] Pro Earning of Current Month
- [Fixed] Disabled Currencies in Admin Panel
- [Fixed] Auto Followings Check
- [Fixed] Quick Search Log Check
- [Fixed] Delete Original Video After FFmpeg Convert
- [Fixed] Backups Function
- [Fixed] Campaign Potential Reach
- [Fixed] RazorPay Issue
- [Fixed] Stories Preview Issue with Videos
- [Fixed] Mass Notifications Extrenal Link Open New Tab
- [Fixed] Minor Bugs
#== v3.6.3 == ( 12-10-2022 )
- [Fixed] Categories Translation
- [Fixed] FFmpeg issue with Cloud Saving
- [Fixed] Minor Bugs
#== v3.6.2 == ( 20-09-2022 )
- [Updated] Delus Default Theme Colors
- [Added] New Post Reactions Images
- [Fixed] Minor Bugs
#== v3.6.1 == ( 12-09-2022 )
- [Fixed] Newsfeed Countries Issue
- [Fixed] @mentions Issue
- [Fixed] Save To Cloud Storage Issue
- [Fixed] Vkontakte Adaptor Issue
- [Fixed] Tinymce Uploading Images Issue
- [Fixed] Custom CSS Colors Issue
- [Fixed] Minor Bugs
#== v3.6 == ( 01-09-2022 )
- [Updated] Documentation
- [Updated] System Security
- [Updated] System Optimization
- [Updated] Delus PHP Dependencies
- [Updated] Delus JS Dependencies
- [Added] Move Delus JS Dependencies to NPM
- [Added] FFMPEG Support
- [Added] Admin ability to turn FFMPEG On/Off [Admin Panel]
- [Added] All Comments Sorting in Comments
- [Added] Backblaze Cloud Storage
- [Added] Manage Reserved Usernames [Admin Panel]
- [Added] Profile Image Required While Sign Up On/Off [Admin Panel]
- [Added] Location Data Required While Sign Up On/Off [Admin Panel]
- [Added] Education Data Required While Sign Up On/Off [Admin Panel]
- [Added] Work Data Required While Sign Up On/Off [Admin Panel]
- [Added] Allow Special Characters in Names [Admin Panel]
- [Added] Share the post to Event
- [Added] Publish Blogs Inside Pages
- [Added] Publish Blogs Inside Groups
- [Added] Publish Blogs Inside Events
- [Added] Posts Views System
- [Added] Admin ability to turn Posts Views System On/Off [Admin Panel]
- [Added] Points/Post View in Points System
- [Added] Custom Countries for Auto-Friend Feature
- [Added] Custom Countries for Auto-Follow Feature
- [Added] Custom Countries for Auto-Like Feature
- [Added] Custom Countries for Auto-Join Feature
- [Added] Native Emojis Support
- [Added] Newsfeed Location Filter
- [Added] Admin ability to Enable/Disable Any Currency [Admin Panel]
- [Added] Pro Package Badge with Comments
- [Added] Video.js Langauges
- [Added] New Ads Positions Under The Post & Blog
- [Added] Stories Preview
- [Fixed] Agora Cloud Recording
- [Fixed] Wasabi Files Delete After Deleting The Post
- [Fixed] Update Pages, Groups & Events Counters When Delete User
- [Fixed] Default Website Description Translation
- [Fixed] Odysee.com Scraper Bug
- [Fixed] Dark Mode Pagination Colors
- [Fixed] Live Video Screenshot
- [Fixed] Video Calls UI
- [Fixed] User Online Bug
- [Fixed] Offers Date Format Match System Date Format
- [Fixed] Delete Album Photos After Load More
- [Fixed] Minor Bugs
#== v3.5 == ( 05-06-2022 )
- [Updated] Documentation
- [Updated] System Security
- [Updated] System Optimization
- [Updated] Delus Libs
- [Updated] Delus JS Dependencies
- [Added] Move libs to Composer
- [Added] Razorpay Payment Method
- [Added] Cashfree Payment Method
- [Added] Coinbase Payment Method
- [Added] SecurionPay Payment Method
- [Added] Live Streaming on Pages
- [Added] Live Streaming on Groups
- [Added] Live Streaming on Events
- [Added] Copy Post Link to Clipboard
- [Added] Account Activation Required
- [Added] Admin ability to turn Activation Required On/Off [Admin Panel]
- [Added] @mentions Now Support Any Language
- [Added] Translate Site Title To User Language
- [Added] Google Cloud Storage
- [Added] Admin ability to turn Google Cloud Storage On/Off [Admin Panel]
- [Added] Category Name with Product Details
- [Added] Report Categories and Report Reason
- [Added] Admin ability to Manage Report Categories [Admin Panel]
- [Added] Admin ability to Manage HTML support in Rich Text Editor [Admin Panel]
- [Added] Search Box in Blogs Module
- [Added] Different Currencies per Product
- [Added] Remove Upload Limits for Admins/Mods
- [Fixed] Re-Share Public Group Post
- [Fixed] Blog Comments For Visitors
- [Fixed] Delete Reports If Content Already Deleted
- [Fixed] Translation [Select All|Deselect All|Nothing Selected] in Ads Manager
- [Fixed] Multiple Select Custom Field Value
- [Fixed] Lightbox Arrows Directions in RTL Languages
- [Fixed] Video loaded with "View X New Posts" Not Playing
- [Fixed] Edit Comment reflected on Replies Bug
- [Fixed] Adblock Detector
- [Fixed] Rumble.com Videos
- [Fixed] Banned.Video Videos
- [Fixed] Brighteon Videos
- [Fixed] Mutual Friends Loader
- [Fixed] User Name on Video/Audio Calls
- [Fixed] Disabled Countries Issue
- [Fixed] Minor Bugs
#== v3.4 == ( 10-02-2022 )
- [Updated] Documentation
- [Updated] System Security
- [Updated] System Optimization
- [Updated] Delus Libs [AWS|HTMLPurifier|PHPMailer|SimpleImage|Stripe|Twilio]
- [Updated] Delus JS Dependencies [tagify]
- [Added] Wasabi Cloud Storage
- [Added] Free Trial Pro Packages
- [Added] Sorting in Jobs
- [Added] Filter by location in Jobs
- [Added] Sorting in Offers
- [Added] Filter by location in Offers
- [Added] Filter by location in Marketplace
- [Added] Pro Packages Order
- [Added] Newsfeed Module Publicly Accessible
- [Added] Admin ability to turn Newsfeed Public On/Off [Admin Panel]
- [Added] Pages Module Publicly Accessible
- [Added] Groups Module Publicly Accessible
- [Added] Events Module Publicly Accessible
- [Added] Games Module Publicly Accessible
- [Added] Developers Module Publicly Accessible
- [Added] Photos in Lightbox Mode Publicly Accessible
- [Added] Allow Uploading .webp Images
- [Added] Max Results for Marketplace [Admin Panel]
- [Added] Max Results for Offers [Admin Panel]
- [Added] Max Results for Jobs [Admin Panel]
- [Added] Max Results for Games [Admin Panel]
- [Added] Max Results for Search [Admin Panel]
- [Added] Advanced Search System (Load More Results)
- [Added] Auto-Play Videos
- [Added] Admin ability to turn Auto-Play Videos On/Off [Admin Panel]
- [Added] Copy Affiliates Link to Clipboard
- [Added] Languages Order
- [Added] Countries Module [Admin Panel]
- [Added] Default System Country
- [Added] Multiple Select Custom Field
- [Added] Custom Fields for Products
- [Added] Custom Fields for Jobs
- [Added] Custom Fields for Offers
- [Added] Search With Custom Fields
- [Added] Twitch Profile URL
- [Added] Save Button on Edit Post
- [Added] Save Button on Edit Comment
- [Added] Login Modal for User Actions (Add Friend, Like Page ... etc)
- [Added] Validations on all admin -> categories add/edit modules
- [Fixed] Post/Photo Privacy Check Error
- [Fixed] Censored Words Bug
- [Fixed] Voice Notes Bug
- [Fixed] Directory Orphan Data Bug
- [Fixed] Album Title Translation
- [Fixed] Blog Category Name Translation
- [Fixed] Forums Names Translation
- [Fixed] Custom Pro Package Message Translation
- [Fixed] Custom Field Label Translation
- [Fixed] Ban Super Admin
- [Fixed] Long Vertical Images
- [Fixed] Long Vertical Videos
- [Fixed] Lightbox Close Button
- [Fixed] Add/Edit System Ads Dropdown Menu
- [Fixed] Remove user from all joined groups/events when delete user
- [Fixed] Minor Bugs
#== v3.3 == ( 25-11-2021 )
- [Updated] Documentation
- [Updated] System Security
- [Updated] System Optimization
- [Updated] Delus Libs [AWS|GettextTranslator|PHPMailer|Smarty|Stripe|Twilio]
- [Updated] Delus JS Dependencies [easytimer|tagify|tinymce]
- [Added] View X New Posts in Newsfeed
- [Added] Multi-Level Affiliates System
- [Added] ADS Approval System
- [Added] Position of the Currency Symbol (Left|Right)
- [Added] Voice Note Encoding (MP3|OGG|WAV)
- [Added] Voice Note Duration
- [Added] Uploads CDN
- [Added] Custom Ban Message
- [Added] Custom Pro Package Message
- [Added] Upgraded Page after Buying Pro Package
- [Added] Fake Pages Generator
- [Added] Fake Groups Generator
- [Added] Points/Follower in Points System
- [Added] Points/Referred in Points System
- [Added] Max Results for Newsfeed Posts [Admin Panel]
- [Added] Max Results for Pages [Admin Panel]
- [Added] Max Results for Groups [Admin Panel]
- [Added] Max Results for Events [Admin Panel]
- [Added] Phone Code in Signup Form
- [Added] Lightbox Download Button
- [Added] Translate Countries Names
- [Added] Translate Package Name in Packages Page
- [Added] Translate Blog Categories in Blog Page
- [Added] Show Stories From All Users
- [Fixed] Max Posts Limit for Pages
- [Fixed] Header/Footer Ads
- [Fixed] Donate Permission
- [Fixed] Header Menu Scroll
- [Fixed] Forum Thread/Reply Username Bug
- [Fixed] Languages Menu CSS
- [Fixed] Recorded Audio in IOS
- [Fixed] Lightbox UI
- [Fixed] Odysee.com Scraper Bug
- [Fixed] Back Home After Deleting Post
- [Fixed] User Biography Mutiple Lines
- [Fixed] Minor Bugs
#== v3.2.1 == ( 25-08-2021 )
- [Fixed] Edit user bug
- [Fixed] Audio/Video Calls & Live Streaming on IOS
- [Fixed] Agora Live Stream Recording
- [Fixed] PayStack 404 Error
- [Fixed] Minor Bugs
#== v3.2 == ( 15-08-2021 )
- [Updated] Documentation
- [Updated] System Security
- [Updated] System Optimization
- [Updated] Delus Libs [Agora|AWS|Embed|FtpClient|GettextTranslator|GoogleAuthenticator|PHPMailer|Stripe|Twilio]
- [Updated] Delus JS Dependencies [jQuery|Agora|autosize|bootstrap.colorpicker|codemirror|easytimer|tagify|tinymce]
- [Updated] Delus CSS Dependencies [Font-Awesome]
- [Added] UI Enhancements
- [Added] Invitations System
- [Added] Factory Reset [Admin Panel]
- [Added] Demo Account Mode
- [Added] Sub-Categories (Infinite Levels) for Pages
- [Added] Sub-Categories (Infinite Levels) for Groups
- [Added] Sub-Categories (Infinite Levels) for Events
- [Added] Sub-Categories (Infinite Levels) for Blogs
- [Added] Sub-Categories (Infinite Levels) for Marketplace
- [Added] Sub-Categories (Infinite Levels) for Offers
- [Added] Sub-Categories (Infinite Levels) for Jobs
- [Added] Sub-Categories (Infinite Levels) for Developers Apps
- [Added] Google Play Store Badge on Landing Page
- [Added] Huawei AppGallery Badge on Landing Page
- [Added] Apple App Store Badge on Landing Page
- [Added] "Subscription is Required" Message if Subscription is enabled
- [Added] Remove Relationship from Find People if disabled from admin panel
- [Added] Remove Relationship from Ads Campaigns if disabled from admin panel
- [Added] Remove Relationship from Privacy Settings if disabled from admin panel
- [Added] Remove Work Info from Privacy Settings if disabled from admin panel
- [Added] Remove Location Info from Privacy Settings if disabled from admin panel
- [Added] Remove Education Info from Privacy Settings if disabled from admin panel
- [Added] Twemoji-amazing instead of outdated twemoji-awesome with 3500+ emojis
- [Added] Super Admin Account can't be edited/deleted
- [Added] Delete Button in Edit Page Edit [Admin Panel]
- [Added] Delete Button in Edit Group Edit [Admin Panel]
- [Added] Delete Button in Edit Event Edit [Admin Panel]
- [Added] Refund the user when admin rejects Wallet Withdrawal Request
- [Added] Refund the user when admin rejects Affiliates Withdrawal Request
- [Added] Refund the user when admin rejects Points Withdrawal Request
- [Added] Refund the user when admin rejects Funding Withdrawal Request
- [Fixed] Live Stream on Mobile & Update Agora SDK to v4.x
- [Fixed] Audio/Video Calls & Update Twilio SDK to v2.x
- [Fixed] Add more photos in albums
- [Fixed] Share posts to groups with approval system
- [Fixed] Reactions on iPad
- [Fixed] Google Maps Auto-complete
- [Fixed] Link Scraper
- [Fixed] Readmore.js Height
- [Fixed] Video/Audio Views for Shared Post
- [Fixed] Minor Bugs
#== v3.1 == ( 30-05-2021 )
- [Updated] Documentation
- [Updated] System Security
- [Updated] System Optimization
- [Updated] Delus Libs [AWS|Embed|GettextTranslator|HybridAuth|MobileDetect|PHPMailer|SimpleImage|Smarty|Spaces|Stripe|Twilio]
- [Updated] Delus JS Dependencies [autosize|bootstrap.colorpicker|codemirror|easytimer|mustache|tagify|tinymce]
- [Updated] Delus CSS Dependencies [Font-Awesome]
- [Added] Add Button in Header
- [Added] Funding System
- [Added] Paystack Payments
- [Added] Msg91 SMS Gateway
- [Added] Stories Permission (Only Admins, Only Admins and Pro User or Everyone) [Admin Panel]
- [Added] Ads Permission (Only Admins, Only Admins and Pro User or Everyone) [Admin Panel]
- [Added] Audio Calls Permission (Only Admins, Only Admins and Pro User or Everyone) [Admin Panel]
- [Added] Video Calls Permission (Only Admins, Only Admins and Pro User or Everyone) [Admin Panel]
- [Added] View All Posts Option [Admin Panel]
- [Added] Invite by Phone Number
- [Added] Share Posts from Public Groups
- [Added] Share Posts from Public Events
- [Added] Edit Name Minimum Length [Admin Panel]
- [Added] Change Modules Descriptions from Admin Panel [Admin Panel]
- [Added] Hide Banned Users from Search Results
- [Added] Hide Banned Users from Friends, Followings & Followers List
- [Added] Hide Banned User's Posts
- [Added] Display Package Name when hover on Pro Badge
- [Added] Honeypot Check to stop Spammers
- [Fixed] Remove Location Permission [Android App]
- [Fixed] Google login issue [Android App]
- [Fixed] Event's date Translation
- [Fixed] OneSignal Push Notifications
- [Fixed] URL in user first|last name
- [Fixed] Youtube scaper height
- [Fixed] Genders Translation
- [Fixed] Theme must be enabled to work as default theme
- [Fixed] Chat issue when with blocked user
- [Fixed] Minor Bugs
#== v3.0 == ( 31-01-2021 )
- [Updated] Documentation
- [Updated] System Security
- [Updated] System Optimization
- [Updated] Delus Libs [AWS|Embed|Faker|FTP|HybridAuth|MobileDetect|PHPMailer|SimpleImage|Smarty|Stripe|Twilio]
- [Updated] Delus JS Dependencies [bootstrap.datetimepicker|codemirror|easytimer|moment|mustache|tinymce]
- [Updated] Delus CSS Dependencies [Bootstrap|Font-Awesome]
- [Added] Changed DB from MYISAM to INNODB
- [Added] Background Thread for time-consuming tasks like send newsletter, garbage collector ...etc
- [Added] Theme Switcher
- [Added] Wallet Withdrawals
- [Added] Admin ability to turn the Wallet Withdrawals On/Off [Admin Panel]
- [Added] Manage Genders [Admin Panel]
- [Added] Gender Privacy
- [Added] Sorting in Marketplace
- [Added] Delete For Everyone with Chat
- [Added] Links to Custom Fields
- [Added] Changing Username/Name remove the Verification Badge
- [Added] Show only Usernames instead of Full Names [Admin Panel]
- [Added] Admin ability to turn Find by Location On/Off [Admin Panel]
- [Added] Disable Friend Request After Decline On/Off [Admin Panel]
- [Added] Hide profile info from settings and profile page [Admin Panel]
- [Added] Set Stories Duration [Admin Panel]
- [Added] Show the user max file size to upload
- [Added] Desktop Infinite Scroll [Admin Panel]
- [Added] Different description for each module [SEO]
- [Added] Jobs & Offers to Directory [SEO]
- [Added] No-follow to links in the posts [SEO]
- [Added] Added Pages Category Description [SEO]
- [Added] Added Groups Category Description [SEO]
- [Added] Added Events Category Description [SEO]
- [Added] Added Offers Category Description [SEO]
- [Added] Added Jobs Category Description [SEO]
- [Added] Added Blogs Category Description [SEO]
- [Added] Added Marketplace Category Description [SEO]
- [Fixed] Minor Bugs
- [Fixed] FTP uploads CORS issue
- [Fixed] Twitch Embed issue
- [Fixed] Page reply to the comment notification
- [Fixed] Anonymous photos showing in user profile & albums
- [Removed] Instagram Login
#== v2.9 == ( 30-09-2020 )
- [Updated] Documentation
- [Updated] System Security
- [Updated] System Optimization
- [Updated] Delus Libs [AWS|Embed|HTMLPurifier|HybridAuth|PHPMailer|Smarty|Stripe|Twilio]
- [Updated] Delus JS Dependencies [bootstrap.select|codemirror|dataTables|easytimer|fluidplayer|moment|tinymce]
- [Updated] Delus CSS Dependencies [Bootstrap|Font-Awesome]
- [Added] New Install/Update Wizard
- [Added] Live Stream Module
- [Added] Admin ability to turn Live Stream On/Off [Admin Panel]
- [Added] Live Permission (Only Admins, Only Admins and Pro User or Everyone) [Admin Panel]
- [Added] Offers Module
- [Added] Admin ability to turn Offers On/Off [Admin Panel]
- [Added] New System Ads Place for offers Module
- [Added] Jobs Module
- [Added] Admin ability to turn Jobs On/Off [Admin Panel]
- [Added] New System Ads Place for Jobs Module
- [Added] Changing password will logout all other sessions
- [Added] Security Check (Password Required) to change Email or Username
- [Added] Security Check (Password Required) to delete account
- [Fixed] og:image for links and media posts
- [Fixed] Shared Anonymous Post
- [Fixed] Profile Completion Links (Upload Profile Picture & Cover)
- [Fixed] Total friend requests sent count
- [Fixed] Minor Bugs
#== v2.8 == ( 23-06-2020 )
- [Updated] Documentation
- [Updated] System Security
- [Updated] System Optimization
- [Updated] Delus Libs [AWS|Embed|FTP|HybridAuth|PHPMailer|ReCaptcha|Smarty|Stripe|Twilio|2Checkout]
- [Updated] Delus JS Dependencies [jQuery|bootstrap.select|codemirror|easytimer|jquery.form|moment|mustache|tinymce]
- [Updated] Delus CSS Dependencies [Bootstrap|Font-Awesome]
- [Added] Enhance the Design
- [Added] Convert All PNG Icons to SVG
- [Added] Home Icon in Header
- [Added] Online Status on Posts
- [Added] Admin ability to turn Online Status on Posts On/Off [Admin Panel]
- [Added] Post As Anonymous
- [Added] Admin ability to turn Anonymous Mode on Posts On/Off [Admin Panel]
- [Added] OneSignal Push Notifications
- [Added] HTML Email Templates
- [Added] Distance Unit (Mile or Kilometer)
- [Added] Translation for DataTables
- [Added] Translation for Tinymce
- [Added] Blogs & Forums Photo Upload
- [Added] Admin ability to turn Blogs & Forums Photo Upload On/Off [Admin Panel]
- [Added] Admin ability to turn Pages Completely On/Off [Admin Panel]
- [Added] Pages Permission (Only Admins, Only Admins and Pro User or Everyone) [Admin Panel]
- [Added] Admin ability to turn Groups Completely On/Off [Admin Panel]
- [Added] Groups Permission (Only Admins, Only Admins and Pro User or Everyone) [Admin Panel]
- [Added] Admin ability to turn Events Completely On/Off [Admin Panel]
- [Added] Events Permission (Only Admins, Only Admins and Pro User or Everyone) [Admin Panel]
- [Added] Blogs Privacy (Only Admins, Only Admins and Pro User or Everyone) [Admin Panel]
- [Added] Marketplace Privacy (Only Admins, Only Admins and Pro User or Everyone) [Admin Panel]
- [Added] Forums Permission (Only Admins, Only Admins and Pro User or Everyone) [Admin Panel]
- [Added] Movies Permission (Only Admins, Only Admins and Pro User or Everyone) [Admin Panel]
- [Added] Games Permission (Only Admins, Only Admins and Pro User or Everyone) [Admin Panel]
- [Added] Reset All Users's Points [Admin Panel]
- [Added] Admin ability to turn Infinite Scroll on Mobile On/Off [Admin Panel]
- [Added] Admin ability to turn Cover Photo Resolution Limit On/Off [Admin Panel]
- [Added] Admin ability to turn Comments Photo Upload On/Off [Admin Panel]
- [Added] Admin ability to turn Chat Photo Upload On/Off [Admin Panel]
- [Added] Admin ability to turn Wallet System On/Off [Admin Panel]
- [Added] Admin ability to turn Wallet Transfer Money On/Off [Admin Panel]
- [Added] Admin ability to turn Affiliates Withdraw Earned Money On/Off [Admin Panel]
- [Added] Admin ability to turn Affiliates Transfer Earned Money To Wallet On/Off [Admin Panel]
- [Added] More options for Garbage Collector [Admin Panel]
- [Added] More options for Newsletter [Admin Panel]
- [Added] Voice Notes in Posts
- [Added] Admin ability to turn Voice Notes in Posts On/Off [Admin Panel]
- [Added] Voice Notes in Comments
- [Added] Admin ability to turn Voice Notes in Comments On/Off [Admin Panel]
- [Added] Voice Notes in Chat
- [Added] Admin ability to turn Voice Notes in Chat On/Off [Admin Panel]
- [Fixed] Points System Daily Limit
- [Fixed] Faker Random Images
- [Fixed] DayTime Messages Timing
- [Fixed] Disable publish button while uploading
- [Fixed] Change SMS activation codes to be only 6 digits
- [Fixed] Listen to 2 audio files at same time
- [Fixed] Reaction translation
- [Fixed] Minor Bugs
#== v2.7.2 == ( 20-05-2020 )
- [Fixed] Crtical Bugs
#== v2.7.1 == ( 24-04-2020 )
- [Fixed] Crtical Bugs
#== v2.7.0 == ( 17-02-2020 )
- [Updated] Documentation
- [Updated] System Security
- [Updated] System Optimization
- [Updated] Delus Libs [AWS|Faker|HybridAuth|PHPMailer|Smarty|Stripe|Twilio]
- [Updated] Delus JS Dependencies [bootstrap.colorpicker|codemirror|easytimer|mustache|tinymce]
- [Updated] Delus CSS Dependencies [Bootstrap|Font-Awesome]
- [Added] Adult Images Detection System
- [Added] Banned Usernames
- [Added] Banned Email Providers
- [Added] Comments Sort by Top/Recent
- [Added] Hide Post from My Timeline
- [Added] New SMS BulkSMS provider
- [Added] New SMS Infobip provider
- [Added] New Storage Digitalocean
- [Added] New Storage FTP
- [Added] New Payemnts CoinPayments
- [Added] New Payemnts 2Checkout
- [Added] Revoke Apps Connection from User Settings
- [Added] Watermark Overlay [Admin Panel]
- [Added] Prevent Brute-Force Attack
- [Added] Admin ability to turn Brute-Force Attack Detection On/Off [Admin Panel]
- [Added] Admin ability to turn Feelings/Activity Posts On/Off [Admin Panel]
- [Added] Static Pages Order [Admin Panel]
- [Added] Widgets Order [Admin Panel]
- [Added] WYSIWYG Editor in Admin Announcements [Admin Panel]
- [Added] Delete Account button in edit user page [Admin Panel]
- [Added] Set allowed file extension while selecting the files to upload
- [Fixed] Birthdate datetime format in profile page
- [Fixed] Delete friends & followers connections when delete user account
- [Fixed] Reactions box position while scrolling
- [Fixed] Minor Bugs
- [Removed] Windows Phone App
#== v2.6.1 == ( 23-11-2019 )
- [Updated] Documentation
- [Updated] System Security
- [Updated] System Optimization
- [Updated] Delus Libs [AWS|Embed|Faker|PHPMailer|reCAPTCHA|Stripe|Twilio]
- [Updated] Delus JS Dependencies [bootstrap.select|codemirror|datatables|easytimer|mustache|tinymce]
- [Updated] Delus CSS Dependencies [Font-Awesome]
- [Added] Support for MySQL v8+
- [Added] Unusual Login Detection
- [Added] Admin ability to turn Unusual Login Detection On/Off [Admin Panel]
- [Added] Moderators Panel
- [Added] Colored Posts
- [Added] Admin ability to turn Colored Posts On/Off [Admin Panel]
- [Added] Manage Colored Posts Patterns [Admin Panel]
- [Added] Profile Backgrounds
- [Added] Admin ability enable/disable Profile Backgrounds [Admin Panel]
- [Added] New 404 Error Page Design
- [Added] Google Login with New APIs
- [Added] Delete Stories
- [Added] Affiliate URL with invite friends widget
- [Added] Group Admin can enable/disable Publishing Posts
- [Added] Group Admin can enable/disable Posts Approval System
- [Added] Event Admin can enable/disable Publishing Posts
- [Added] Event Admin can enable/disable Posts Approval System
- [Added] Log Out Of All Sessions
- [Added] Bank Transfer for Affiliates Withdrawal Requests
- [Added] Bank Transfer for Points Withdrawal Requests
- [Added] Custome Payment for Affiliates Withdrawal Requests
- [Added] Custome Payment for Points Withdrawal Requests
- [Added] Notify all system admins & moderators with Reports [Notifications]
- [Added] Notify all system admins & moderators with Verification Requests [Notifications]
- [Added] Notify all system admins with Bank Transfer [Notifications]
- [Added] Notify all system admins with Affiliates Withdrawal Requests [Notifications]
- [Added] Notify all system admins with Points Withdrawal Requests [Notifications]
- [Added] User Notifications with Bank Transfer Approve/Decline [Notifications]
- [Added] User Notifications with Affiliates Withdrawal Requests Approve/Decline [Notifications]
- [Added] User Notifications with Points Withdrawal Requests Approve/Decline [Notifications]
- [Added] Share Plugin
- [Added] Admin ability enable/disable Share Plugin [Admin Panel]
- [Added] Developers Apps
- [Added] Admin ability enable/disable Developers Apps [Admin Panel]
- [Added] Manage Posts from Admin Panel [Admin Panel]
- [Added] Manage Blogs from Admin Panel [Admin Panel]
- [Added] Manage Forums Threads & Replies from Admin Panel [Admin Panel]
- [Added] Edit in Admin/Moderator Panel Shortcut for Profiles
- [Added] Edit in Admin/Moderator Panel Shortcut for Pages
- [Added] Edit in Admin/Moderator Panel Shortcut for Groups
- [Added] Edit in Admin/Moderator Panel Shortcut for Events
- [Added] Mark All Reports As Safe [Admin Panel]
- [Added] Newsletter Consent (GDPR)
- [Added] Admin ability to turn Newsletter Consent (GDPR) On/Off [Admin Panel]
- [Added] Users Insights Cards [Admin Panel]
- [Added] Posts Insights Cards [Admin Panel]
- [Added] Pages Insights Cards [Admin Panel]
- [Added] Pager for Pages [Admin Panel]
- [Added] Pager for Groups [Admin Panel]
- [Added] Pager for Events [Admin Panel]
- [Added] Order for Pages Categories [Admin Panel]
- [Added] Order for Groups Categories [Admin Panel]
- [Added] Order for Events Categories [Admin Panel]
- [Added] Order for Blogs Categories [Admin Panel]
- [Added] Order for Market Categories [Admin Panel]
- [Added] Order for Movies Genres [Admin Panel]