forked from rtCamp/rtMedia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
executable file
·1370 lines (1074 loc) · 52 KB
/
readme.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
=== rtMedia for WordPress, BuddyPress and bbPress ===
Contributors: rtcamp, mangeshp, sanket.parmar, pranalipatel, jignesh.nakrani, manishsongirkar36, kiranpotphode, yahil, 1naveengiri, bhargavbhandari90, deepak1191, rittesh.patel, sagarjadhav, pushpak.pop, faishal, desaiuditd, rahul286, JoshuaAbenazer, gagan0123, saurabhshukla, nitun.lanjewar, umesh.nevase, suhasgirgaonkar, neerukoul, hrishiv90, kanakiyajay, jarretc, tobiaskluge, rafaelfunchal, UmeshSingla, mehulkaklotar, tannermirabel, kishores, chandrapatel
Donate link: http://rtcamp.com/donate/
Tags: BuddyPress, media, multimedia, album, audio, songs, music, video, photo, image, upload, share, MediaElement.js, ffmpeg, kaltura, media-node, rtMedia, WordPress, bbPress, masonry
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Requires at least: WordPress 4.1
Tested up to: 4.7.2
Stable tag: 4.3.1
Add albums, photo, audio/video upload, privacy, sharing, front-end uploads & more. All this works on mobile/tablets devices.
== Description ==
rtMedia is the **only** complete media solution for WordPress, BuddyPress and bbPress, and is **WordPress.com VIP** compatible.
Built with a mobile-first approach, it works on mobile/tablet devices (like iPhone/iPad, Android).
= Live Demos =
If you're in a hurry, you can skip the long list of features in subsequent sections and just explore live demos!
* [rtMedia Demo](http://demo.rtmedia.io/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media)
= Video Tour =
Since rtMedia has many features video doesn't include all features:
http://www.youtube.com/watch?v=dJrykKQGDcs
= rtMedia Features =
1. **WordPress Integration** - Display media on WordPress author pages ( eg: http://demo.rtmedia.io/author/admin/media/ )
2. **BuddyPress Integration** - Find a new media tab under BuddyPress Profiles & Groups.
3. **BuddyPress Activity Stream** - Attach media to activity status updates just like Facebook.
4. **Albums** - Organise media into manageable collections. BuddyPress Group albums support collaboration.
5. **Responsive** - Album Slideshow (Lightbox), video player, uploads work on mobiles & tablets. Support for swipe guestures.
6. **Privacy** - Control who can see media files, albums and BuddyPress activities.
7. **Templating system** - Completely customise rtMedia by modifying the template files. Just copy over the template folder to your theme.
8. **[Featured Media](https://rtmedia.io/docs/developers/featured-media/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Featured Media documentation")** - This can be used for facebook-style cover photo on profiles.
9. **[rtMedia Uploader](https://rtmedia.io/docs/features/upload/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Uploader")** - Use `[rtmedia_uploader]` shortcode or `<?php rtmedia_uploader() ?>` template tag, to show drag-n-drop uploader in any WordPress area (post, page, custom-post, etc).
10. **[rtMedia Gallery](https://rtmedia.io/docs/features/gallery/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Gallery")** - Display media gallery anywhere on your site using `[rtmedia_gallery]` shortcode or `<?php rtmedia_gallery ?>` template tag.
= Audio/Video Conversion =
rtMedia has 3 premium solutions to take care of audio/video conversion.
1. **[Audio/Video Transcoding Service](https://wordpress.org/plugins/transcoder/ "Audio/Video Transcoding Service")** - If free plan is not enough for you, there is monthly subscription service also. Easiest to setup.
2. **[FFMPEG-Addon](https://rtmedia.io/products/rtmedia-ffmpeg-addon/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia FFMPEG Addon")** - Requires FFMPEG & Media-Node installed on a VPS/Dedicated server.
3. **[Kaltura-Addon](https://rtmedia.io/products/rtmedia-kaltura-add-on/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Kaltura Addon for Kaltura.com/Kaltura-CE/Kaltura On-Prem version")** - Requires a Kaltura.com account or Kaltura-CE or Kaltura-on-Prem server.
= rtMedia Premium Addons =
1. **[Instagram-Effects](https://rtmedia.io/products/rtmedia-photo-filters/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Instagram Addon")** - Users can apply Instagram like filters to photos.
2. **[Photo-Tagging](https://rtmedia.io/products/rtmedia-photo-tagging/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Photo-Tagging Addon")** - Users can tag their friends/other users in photos.
3. **[Photo-Watermark](https://rtmedia.io/products/rtmedia-photo-watermark/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Photo Watermark Addon")** - rtMedia Photo Watermark add-on let you watermarked or copyright your uploaded photos.)
4. **[Membership](https://rtmedia.io/products/rtmedia-membership/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Membership")** - It provides membership functionality in your site.
5. **[Social-Sync](https://rtmedia.io/products/rtmedia-social-sync/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Social Sync")** - It allows you to import media from your Facebook account.
6. **[myCRED-Points](https://rtmedia.io/products/rtmedia-mycred/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia myCRED")** - It allows you to integrate rtMedia with myCRED and award virtual points for various rtMedia activities, like media upload, likes, deleted, albums creation, playlist, etc.
7. **[CubePoints](https://rtmedia.io/products/rtmedia-cubepoints/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia CubePoints")** - It allows you to integrate rtMedia with CubePoints and award virtual points for various rtMedia activities, like upload media, delete media, create albums, playlists, etc.
8. **[Playlists](https://rtmedia.io/products/rtmedia-playlists/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Playlists")** - This plugin is used to create a playlist for uploaded music file with rtMedia.
9. **[Favorites](https://rtmedia.io/products/rtmedia-favorites/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Favorites")** - This plugin allows users to create their own list of favorite media.
10. **[Upload-Terms](https://rtmedia.io/products/rtmedia-upload-terms/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Upload Terms")** - This plugin is useful to set terms of services page on website during user upload media on website.
11. **[Moderation](https://rtmedia.io/products/rtmedia-moderation/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Moderation")** - This plugin is for reporting media if user find offensive.
12. **[Custom-Attributes](https://rtmedia.io/products/rtmedia-custom-attributes/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Custom Attributes")** - This plugin is for categorizing media using attributes defined by site owner when uploading.
13. **[Docs-and-Other-files](https://rtmedia.io/products/rtmedia-docs-files/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Docs and Other files")** - This plugin allows uploading for doc, pdf and other file types such as zip, tar, etc.
14. **[Default-Albums](https://rtmedia.io/products/rtmedia-default-albums/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Default Albums")** - This plugin allows the creation of multiple default albums for rtMedia uploads.
15. **[Podcast-Feed](https://rtmedia.io/products/rtmedia-podcast-feed/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Podcast (RSS and Atom feeds)")** - Read rtMedia uploads from iTunes as well as any RSS feed-reader/podcasting software.
16. **[Restrictions](https://rtmedia.io/products/rtmedia-restrictions/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Restrictions")** - Site admin can set limits in terms of total size & file count.
17. **[bbPress-Attachments](https://rtmedia.io/products/rtmedia-bbpress-attachments/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia bbPress Attachments")** - Attach media files to bbPress forum topics and replies.
18. **[WordPress-Sitewide-Gallery](https://rtmedia.io/products/rtmedia-wordpress-sitewide-gallery/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia WordPress Sitewide Gallery")** - Site admin can create and upload media into WordPress album.
19. **[WordPress-Comment-Attachments](https://rtmedia.io/products/rtmedia-wordpress-comment-attachments/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia WordPress Comment Attachments")** - Allow users to upload a media file in WordPress comment attachment box.
20. **[Social-Sharing](https://rtmedia.io/products/rtmedia-social-sharing/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Social Sharing")** - Share uploaded media on social network sites like Facebook, twitter, linkedin, Google+. This addon integrate with [rtSocial](https://wordpress.org/plugins/rtsocial/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media) plugin.
21. **[Sidebar-Widgets](https://rtmedia.io/products/rtmedia-sidebar-widgets/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Sidebar Widgets")** - This addon provide widgets to upload media and display gallery for rtMedia plugin.
22. **[5-Star-Ratings](https://rtmedia.io/products/rtmedia-star-ratings/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia 5 Star Ratings")** - User can rate the media files from 1 to 5 star.
23. **[Edit-Mp3-Info-(ID3 Tags)](https://rtmedia.io/products/rtmedia-edit-mp3-info/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia - Edit Mp3 Info (ID3 Tags)")** - Allow user to edit MP3 FIle Audio tags (ID 3 tags).
24. **[Sorting](https://rtmedia.io/products/rtmedia-sorting/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Sorting")** - Sort uploaded media based on file size, ascending/descending title, upload date of media.
25. **[Bulk-Edit](https://rtmedia.io/products/rtmedia-bulk-edit/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Bulk Edit")** - Allow users to move files from one album to another, change attributes, change privacy, delete files in bulk.
26. **[BuddyPress-Profile-Picture](https://rtmedia.io/products/rtmedia-buddypress-profile-picture/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia BuddyPress Profile Picture")** - Allow users to set their profile picture from existing uploaded media file.
27. **[Album-Cover-Art](https://rtmedia.io/products/rtmedia-album-cover-art/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Album Cover Art")** - Allow users to set album cover from uploaded image.
28. **[Direct-Download-Link](https://rtmedia.io/products/rtmedia-direct-download-link/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Direct Download Link")** - This addon provide a download button for all the uploaded media.
29. **[Upload-by-URL](https://rtmedia.io/products/rtmedia-upload-by-url/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Upload by URL")** - Allow users to upload media using absolute URL.
30. **[Likes](https://rtmedia.io/products/rtmedia-likes/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Likes")** - This add-on let you know who liked media. User can also see which media file he/she liked under user profile.
31. **[Activity-URL-Preview](https://rtmedia.io/products/rtmedia-activity-url-preview/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Activity URL Preview")** - This addon provides a preview of the URL that is shared and shows up on BuddyPress activity.
32. **[View-Counter](https://rtmedia.io/products/rtmedia-view-counter/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia View Counter")** - Enable view count for all the uploaded media.
33. **[Shortcode-Generator](https://rtmedia.io/products/rtmedia-shortcode-generator/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Shortcode Generator")** - The shortcode generator button added in WordPress post and page editor for all the rtMedia shortcodes.
34. **[Album-Privacy](https://rtmedia.io/products/rtmedia-album-privacy/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Album Privacy")** - Set album privacy when user create new albums or edit album.
35. **[BuddyPress-Group-Media-Control](https://rtmedia.io/products/rtmedia-buddypress-group-media-control/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia BuddyPress Group Media Control")** - Allow group owner to provide media upload feature for their group.
36. **[Set-Custom-Thumbnail-for-Audio/Video](https://rtmedia.io/products/rtmedia-set-custom-thumbnail-for-audiovideo/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia Set Custom Thumbnail for Audio/Video")** - Allow media owner to change the thumbnail of uploaded audio/video files.
37. **[rtMedia-SEO](https://rtmedia.io/products/rtmedia-seo/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "rtMedia SEO")** - Generate XML sitemap of all the public media files uploaded via rtMedia plugin, also compatible with [Yoast-SEO](https://wordpress.org/plugins/wordpress-seo/ "Yoast SEO") plugin if you are already using on your site.
= Important Links =
* [Project Homepage](https://rtmedio.io/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Visit rtMedia's Project Homepage")
* [Roadmap](https://rtmedia.io/roadmap/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Visit rtMedia's Roadmap page")
* [Documentation](https://rtmedia.io/docs/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Visit rtMedia's Documentation page")
* [FAQ](https://rtmedia.io/faq/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Visit rtMedia's FAQ page")
* [Support](http://community.rtcamp.com/c/rtmedia/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Visit rtMedia's support page")
* [GitHub](https://github.com/rtmediawp/rtMedia/) - Please mention your wordpress.org username when sending pull requests.
* [Translations](https://rtmedia.io/translate/projects/rtmedia?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media) - Please do NOT use Github for translations. Instead Use [this GlotPress project](https://rtmedia.io/translate/projects/rtmedia?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media)
== Installation ==
* Install the plugin from the 'Plugins' section in your dashboard (Go to `Plugins > Add New > Search` and search for rtMedia).
* Alternatively, you can [download](http://downloads.wordpress.org/plugin/buddypress-media.zip "Download rtMedia") the plugin from the repository. Unzip it and upload it to the plugins folder of your WordPress installation (`wp-content/plugins/` directory of your WordPress installation).
* Activate it through the 'Plugins' section.
== Frequently Asked Questions ==
Please visit [rtMedia's FAQ page](https://rtmedia.io/faq/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Visit rtMedia's FAQ page").
Read rtMedia [Documentation](https://rtmedia.io/docs/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media)
== Screenshots ==
You can also check [rtMedia's Live Demo](http://demo.rtmedia.io/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Visit rtMedia's Live Demo") or video below:
http://www.youtube.com/watch?v=dJrykKQGDcs
1. Media Settings
2. Privacy Settings
3. BuddyPress Settings
4. Media View
5. Album View
6. Uploader
7. Uploader Thumbnails
8. Lightbox
9. Single Media View
10. Media Edit View
12. Media Activity
12. User Privacy Settings
13. Media Size Settings
14. Custom CSS settings
== Changelog ==
= 4.3.1 [Feb 23, 2017] =
* ENHANCEMENTS
* Remove media titles from media tab
* Change text in rtMedia setting for comment media
* Added: Filter to change user id while fetching user's album list
* FIXED
* Pagination and navigation fix in media tab
* Warnings when uploading media in activity comment
* Privacy for reported media in moderation
= 4.3 [Feb 14, 2017] =
* NEW FEATURES
* Comment Media - User can upload media in comment box
* ENHANCEMENTS
* rtMedia settings to unable or disable likes for Media
* Attachment upload in rtMedia support form
* Added: rtMedia Version Constant
* Added: Action to Change rtMedia query before shortcode run
* Added: Filter to Change Media menu position in admin bar
* FIXED
* Bulk delete in Media library Dashboard
* Warnings when user click on pagination
* rtMedia gallery shortcode pagination
* Remove unwanted fields in rtMedia support form
* Sorting & Options issue in Media Tab
* Comment and Like Privacy issue
* Comment and Like for media delete issue in Group
* Load More issue on activity and group Tab
= 4.2.1 [Dec 21, 2016] =
* FIXED
* Security issues pointed out by James Golovich
* Direct access of a file
* Access rights to modify/update the rtMedia settings
* Added validation on custom CSS before saving
* Section fluctuation when user drags media into activity box
* Audio / Video autoplay in Safari browser
* JS error on media comments when activity stream is disabled from the backend
* Media upload error when activity stream is disabled from the backend
* Invalid license key notice appearing even when all keys are valid
* Addon validation checks will happen every six hours (only if addons installed)
* Changed plugin's review link to rate on WordPress.org
= 4.2 [Nov 17, 2016] =
* NEW FEATURES
* Albums will now display media count by default
* "@mentions" in comments added to lightbox and single media page
* Added "Next" / "Previous" navigation links to single media page
* ENHANCEMENTS
* rtMedia "Support" tab improvements- Directly attach a screenshot while submitting a support ticket Debug Info can now be easily downloaded as a .txt file
* Added: "Show more comments" link in media pop-up (lightbox) and single media page
* Added: Action to target area below media comments in lightbox or single media page
* Added: Filter to add extra component to comments
* Added: Filter to disallow blank text field while uploading media in Activity
* Added: Filter to modify "Options" & "Upload" labels in Media Gallery
* FIXED
* After uploading media, the Upload panel will now collapse
* Incorrect pagination text display in Media tab
* "posted an update" string not getting translated in Activity feed for posts with attached media. Added translation support for all "rtmedia_update" Activity type
* Duplicate activity generation when "Post Update" is clicked multiple times
* Singular/plural form of "n people liked this" string
* BuddyPress Group Media tab not displaying in Beta version 2.7.2
* Media description not saving properly when uploading multiple media
* Link to comment in WordPress backend not leading back to comment
* Video popup UI for vertical videos
* CSS-related responsive video layout issue
* Fixed broken "Import media sizes" anchor link in admin notice
* Fixed "Activate License" event bug in License tab
* Lightbox privacy symbol alignment issue
= 4.1.8 [Oct 05, 2016] =
* Fix fatal error for older PHP version
= 4.1.7 [Oct 05, 2016] =
* Change the UI of addons license tab
* Update the notice messages
* Check for the valid URL structure for compatibility with multisite
* Change string UNSET to REMOVE to improve the translation
* Fix UI/media broken on activity page
* Fix the scroll bar on the media pop screen
* Fix save settings button of manage media in group
= 4.1.6 [Sep 26, 2016] =
* Fix broken UI when image information is edited/updated
* Fix issue related to media sorting
* Divide rt-template-functions.php into four files (core functions, actions & filters)
* Fix playlist settings not getting saved in groups
* Add filters to alter the image/video URLS in activity
* Fix bootstrap css selector conflict
= 4.1.5 [Sep 15, 2016] =
* Fix issue where multiple gallery shortcode not working together
* Add filter to change 'under' album text
* Fix issue where media query not reset properly
= 4.1.4 [Sep 13, 2016] =
* Fix audio player height issue
* Fix video player fullscreen issue
* Fix the attachment URL when rtAmazon S3 is disabled
= 4.1.3 [Aug 30, 2016] =
* Fix audio/video time duration on media thumbnail
= 4.1.2 [Aug 25, 2016] =
* Update the original audio URL with transcoded audio URL in activity
= 4.1.1 [Aug 24, 2016] =
* Add backward compatibility
= 4.1 [Aug 24, 2016] =
* Remove encoding service
* Introduced new [Transcoder](https://wordpress.org/plugins/transcoder/) plugin
* Add span tag to remove duplicity of activity content on thumbnail update
* Fix notice undefined index
= 4.0.7 [Aug 17, 2016] =
* Fix Media upload using json api
* Fix media upload not working on Windows Servers
* Fix view counter not working
* Update read more media description with scroll
= 4.0.6 [Aug 01, 2016] =
* Fix read more media description in media popup
* Fix warning for pagination links
* Update products page link on Admin Dashboard widget
= 4.0.5 [Jul 25, 2016] =
* Fix bulk edit not working on delete and move
* Fix issue more and less click on media description
* Fix html markup in support tab
* Make pagination work on opening page-link in new tab
* Fix hide rtMedia template files notice after click on dismiss
* Fix for profile pic not changing on uploading photo
= 4.0.4 [Jul 08, 2016] =
* Backward compability for PHP 5.2
= 4.0.3 [Jul 05, 2016] =
* Fix filter_input warning for media in group creation
* Fix warning for video encoding
* Fix delete activity for like and comment after media delete
* Fix media uploading issue from activity for multisite
= 4.0.2 [Jun 27, 2016] =
* Fixed privacy issue in activity for BuddyPress 2.6.0
* Fixed single activity permalink issue
= 4.0.1 [Jun 23, 2016] =
* Fixed issue of wpdb prepare statement missing argument
* Fixed time conversion issue in lightbox
* Fixed context & context_id for profile media upload
* Fixed lightbox loading whole site
* Fixed Keep current tab active when traversing different media type tabs
* Removed the_content filter and used wpautop function for media description
= 4.0 [Jun 21, 2016] =
* Removed esc_html causing stripping of html tags in rtMedia featured for WordPress VIP compatibility
* Fixed BuddyPress nav items in group issue for BuddyPress 2.6 with backward compatibility
* Fixed check of class_exist for group extension for BuddyPress 2.6 compatibility
= 3.10.9 [Jun 20, 2016] =
* WordPress VIP compatibility added
= 3.10.8 [Jun 14, 2016] =
* Fixed database error when deleting comment
* Changed price for add-ons
= 3.10.7 [May 25, 2016] =
* Fixed JS issue for tabs in media edit
* Fixed CSS for twentysixteen theme
* Code cleanup
* Updated german language file
= 3.10.6 [May 03, 2016] =
* Fixed - BuddyPress group privacy now depends on group status (public, private, hidden)
* Fixed - JS issue for WordPress 4.5
* Fixed - 404 Error for titles on bbPress templates
* Fixed - Required changes done for rtmedia.io
= 3.10.5 [Mar 24, 2016] =
* Code Cleanup
= 3.10.4 [Mar 15, 2016] =
* Fixed browser title if theme has title-tag support
* Fixed the video & audio player issue for activity load more
* Fixed minor bugs
= 3.10.3 [Jan 28, 2016] =
* Fix issues
= 3.10.2 [Jan 28, 2016] =
* Fix XSS vulnerability (thanks to [Brajesh](https://profiles.wordpress.org/sbrajesh/))
* Updated Freemius SDK
= 3.10.1 [Dec 30, 2015] =
* Set media description before upload feature
* Update privacy of all attached media on update of activity privacy
* Update BuddyPress activity query filter for activity privacy
= 3.10 [Dec 22, 2015] =
* Added update BuddyPress activity privacy feature
* Added BuddyPress activity for media likes and comments feature
= 3.9.5 [Dec 11, 2015] =
* Added new filters
* Update chinese translations
* Fix rtMedia add-on broken images
= 3.9.4 [Dec 07, 2015] =
* Fixed media slug issue while deleting media
* Added new hook in album gallery template
= 3.9.3 [Nov 19, 2015] =
* Update rtMedia main template
* Fix undefined function call error
= 3.9.2 [Nov 15, 2015] =
* Update rtMedia main template
* Fix undefined JS error
= 3.9.1 [Nov 05, 2015] =
* Fix encoding service key save issue
* Added thrive theme under rtMedia 3rd party themes
* Audio/video player CSS issue fix
* Fix translation text domain
* Update chinese translations
= 3.9 [Oct 27, 2015] =
* BP Notification feature for media likes and comments
* Upload media from BP activity without activity update text
* Privacy issue fix
* Update korean and chinese language files
* Other bug fixes
= 3.8.21 [Oct 06, 2015] =
* Rename plugin text domain from 'rtmedia' to 'buddypress-media'
= 3.8.20 [Sep 29, 2015] =
* Fix getid3 related issue
* Other bug fixes
= 3.8.19 [Sep 21, 2015] =
* Fix getid3 related issue
* Added new theme: Foodmania
* New wrapper functions to upload media
= 3.8.18 [Sep 17, 2015] =
* Filter for media action text
* Updated getid3 lib to latest version
= 3.8.17 [Sep 15, 2015] =
* Fix upload dir filter
* Fix video max height in lightbox
* Fix shortcode issue with album uploader
= 3.8.16 [Aug 31, 2015] =
* Update Persian translation and add Finnish translations
* Add rtMedia SEO add-on
* Fix encoding service for music files
* Fix music file thumbnails
= 3.8.15 [Aug 18, 2015] =
* CSS fixes
* Added new filters and actions
= 3.8.14 [Aug 11, 2015] =
* Enhanced delete media action in media gallery
* CSS fixes
* Other bug fixes
= 3.8.13 [Aug 05, 2015] =
* Update links
* Added support for "og" meta tags for Yoast SEO plugin
* Update French, Spanish, Persian and German translations
= 3.8.12 [Jul 29, 2015] =
* Updated media gallery actions for BuddyPress groups
* Updated action messages for single media
* Updated view count process
* Added SCRIPT_DEBUG support
* Fixed bugs in admin settings
* Bug fixes
= 3.8.11 [Jul 22, 2015] =
* Update album edit template
* Fix BuddyPress activity content on media edit
* Autoplay video in lightbox
= 3.8.10 [Jul 16, 2015] =
* Fix BuddyPress comment filter issue
* Fix plupload max_file_size parameters
= 3.8.9 [Jul 09, 2015] =
* Fix CSS conflict with BuddyPress change profile picture
= 3.8.8 [Jul 07, 2015] =
* Fix media comment ordering
* Fix login popup
* Lightbox changes for mobile devices
* Added privacy option in uploader shortcode
* Update Dutch and Danish translations
= 3.8.7 [Jun 30, 2015] =
* Update language files
* Fix CSS conflict with BuddyPress Cover plugin in rtMedia admin settings
* Update CSS
* Added new filters
* Bug fixes
= 3.8.6 [Jun 16, 2015] =
* Fix activity music player width issue
* Fix view link in WordPress Media Library
* Fix pagination on pressing enter key
* Fix language file names for Korean(ko_KR), Serbian(sr_RS) and Tamil(ta_IN)
* Fix browser title
* Added Privacy link in BuddyPress Settings profile menu
* CSS bug fixes
= 3.8.5 [Jun 08, 2015] =
* Fix upload URL in activity
= 3.8.4 [Jun 03, 2015] =
* Fix syntax error on Support Page
= 3.8.3 [Jun 03, 2015] =
* Fix encoding service issue
= 3.8.2 [Jun 03, 2015] =
* Updated Spanish, Korean, Portuguese and Danish translations
* Added Login popup for non logged in user on upload button
* Added quick edit/delete links on media gallery thumbs
* Updated [premium add-ons](https://rtmedia.io/blog/rtmedia-pro-splitting-major-change/) content for rtMedia
* Bug fixes
= 3.8.1 [May 18, 2015] =
* Fix license page
* Fix direct media upload in activity
* Fix BuddyPress group table error on rtMedia update
= 3.8 [May 18, 2015] =
* Removed ZURB Foundation
* Removed FontAwesome fonts and instead used WordPress Dashicons
* Template updates
* Admin settings UI changes
* Media gallery UI changes
* Direct media upload on file selection
* Bug fixes
= 3.7.44 =
* Fix create group album issue
= 3.7.43 =
* Update tested upto information
= 3.7.42 =
* Added rtmedia_get_media_description function
* js fix for uploader tabs
* Update support link and github link
* Fix multisite global album does not exist issue
= 3.7.41 =
* Fix album edit issue
= 3.7.40 =
* Security fix, thanks to [James Hooker](https://research.g0blin.co.uk/) for reporting
= 3.7.39 =
* Fix possible XSS vulnerability
* Update label for create album
= 3.7.38 =
* Update Danish translations and add Bulgarian translations
* Enable/disable encoding service
* Fix translation issue and update strings
* Fix default privacy issue
* Fix rtMedia lightbox get disabled after BuddyPress activity load more
* Template update
= 3.7.37 =
* Fix media meta table name in $wpdb
* Bug fixes
= 3.7.36 =
* Fix Media Url upload issue
* Fix delete attachment issue while reassigning user
* Add Social Sync in add-on list
= 3.7.35 =
* Fix JSON API parameters bug.
= 3.7.34 =
* Added tabs support in rtMedia uploader
* Fix activity upgrade
* Add klein theme in 3rd party theme list
* Fix uplaoder param in gallery shortcode database error
* Other bug fixes
= 3.7.33 =
* Fix media move in album edit
* JPEG image quality option
* Use WordPress' *_metadata functions for meta data
* Fix update activity after thumb set
= 3.7.32 =
* Update all translation files
* Update templates
* Fix media title issue
* Fix warnings
= 3.7.31 =
* Fix BuddyPress group media gets upload to user profile issue
= 3.7.30 =
* Change activity upload URL when activity component is enabled
= 3.7.29 =
* Fix BuddyPress activity upload URL
= 3.7.28 =
* Fixed activity upload issue when BuddyPress Multilingual plugin is active
* Update admin settings help text
= 3.7.27 =
* Fix warnings on BuddyPress activity page
* Show add-on purchase link only when add-on is not purchased
* More validations for admin settings
* Fix for translations
= 3.7.26 =
* Fix persian and swedish translations
* Update CSS and templates
= 3.7.25 =
* Update spainsh translations
* Added new function rtmedia_is_uploader_view_allowed
* Added dynamic activity actions rtMedia activities
* CSS and markup changes
* Bug fix for '\' in media title
= 3.7.24 =
* Bug fix for encoding service
= 3.7.23 =
* Fix group featured media
* Fix database warning on first time install
= 3.7.22 =
* Validate media before inserting
= 3.7.21 =
* Fixed group featured media
= 3.7.20 =
* Featured media option for group
* Track length for audio/video in media gallery
* Italian and Portuguese translation update
* Fix for JSON API
* Other bug fixes
= 3.7.19 =
* Security fix for template include
= 3.7.18 =
* Fix for template include for relative paths
= 3.7.17 =
* Removed unwanted database call on BuddyPress single activity page
= 3.7.16 =
* Fix scalar value warning
= 3.7.15 =
* Fix like button when comments are disabled
* Fix max regenerate video thumb admin setting
* masonry layout fixes
* Fix drag n drop in activity page when attachment for activity is disabled
* Added missing og:image property in single rtMedia BuddyPress activity
* Fix likes translated in SQL query
* Fix activity photo after media edit
* Added JS alert when uploading is in progress
* Added membership add-on information
= 3.7.14 =
* Fix media tab link shown to non members user of a private group
* Update Dutch, Japanese, French, Portuguese and Danish translations
= 3.7.13 =
* Fix rtMedia addon Buy Now url
* Updated CSS for rtMedia addon licenses
= 3.7.12 =
* Fix rename non-english characters to valid english characters for file upload
* Fix Add media button glitches in BuddyPress activity
= 3.7.11 =
* Fix BuddyPress load more issue
= 3.7.10 =
* Travis CI Config added
* Fix CSS for audio/video player
* Change uploader object initialization in rtMedia.backbone.js
* Fix media player issue in activity
* Added license tab for premium addons
= 3.7.9 =
* Added new database table to store activity privacy
= 3.7.8 =
* Fix video player issue in BuddyPress activity
= 3.7.7 =
* FontAwesome font load issue fix
* Update Swedish translations
= 3.7.6 =
* FontAwesome updated(v4.2.0)
* Added new filters
* Updated Swedish and Italian translations
= 3.7.5 =
* Bug fixes
= 3.7.4 =
* Update Spanish translation
* Bug fixes
= 3.7.3 =
* Change media title before upload
* New gallery shortcode attributes ( Enable/disable lightbox: lightbox = true/false, Show media title : media_title = true/false )
* Bug fixes
= 3.7.2 =
* Pagination option for media gallery
* show album name in single media view
* fix template if BuddyPress profile/group is disabled for rtMedia
* Per page (per_page) attribute in gallery shortcode
= 3.7.1 =
* Fix multiple file extension info in uploader
* Update CSS for masonry
* Added filters in query model
* Templates updated
= 3.7 =
* Masonry style cascading grid layout for media gallery
* Lightbox and swipe support for mobile devices
* UI bug fixes
* translation bug fix
* Added Norwegian translation(nb_NO)
= 3.6.15 =
* Fix activity issue in safari browser (For Mobile and Desktop)
* Romanian, Russian, French and Hungarian translation update
* Fix 404 page and nav menu issue when media disable for BuddyPress profile and group
* Added new hook in create album modal
* New js hooks in rtMedia's backbone js file
* Fix js error for upload type filter
* remove deprecated mime_type_content
= 3.6.14 =
* Fix BuddyPress privacy issue
= 3.6.13 =
* Media template update
* New hooks added
* Translation update
* Bug fixes
= 3.6.12 =
* Tested with WordPress 3.9 and BuddyPress 2.0
= 3.6.11 =
* Update Russian and Polish translations
* Bug fixes
= 3.6.10 =
* Update German and Swedish translations
* JS fix for WordPress 3.9 Beta
* Bug fixes
= 3.6.9 =
* Fix single activity video lightbox issue
* Update german translations
= 3.6.8 =
* Fix Regenerate Thumbnail plugin image sizes issue
* Update Spanish language files
= 3.6.7 =
* Update Spanish language files
* Bug fix for media single edit
= 3.6.6 =
* Fix audio/video js issue after activity update
* Fix activity after ajax load content
* Fix image edit issue
* Fix CSS issues
= 3.6.5 =
* rtMedia premium theme InspireBook 1.0 released
= 3.6.4 =
* Update German language files
* Bug fixes
= 3.6.3 =
* Fix lightbox issue after load more activity
* Update German and Russian language files
* Bug fixes
= 3.6.2 =
* Bug fixes
= 3.6.1.1 =
* Bug fixes
= 3.6.1 =
* Bug fixes
= 3.6 =
* rtMedia JSON API added
* Updated russian translations
* Bug fixes
= 3.5.2.1 =
* Admin UI bug fixes
= 3.5.2 =
* Updated dutch translation, thanks to [carry2web] (http://profiles.wordpress.org/carry2web)
* Enable / disable media per group
* User can specify media type to be upload in uploader shortcode
* Show content of single album using gallery shortcode
* Custom thumbnail for medias
* Bug fixes
= 3.5.1 =
* Fix for AudioPlayer under LightBox in WordPress TwentyFourteen Theme
* Fix for mobile uploads
* Album selection in media edit
* Bug fixes
= 3.5 =
* updated too foundation 5
* Bug Fixes
= 3.4.6 =
* Fix paging query and bug fixes
= 3.4.5 =
* Fix pagging query sql issues
= 3.4.4 =
* Update german trasalation
* Add support in some strings translations again thanks to [jonasnick](https://github.com/jonasnick) for pull request
= 3.4.3 =
* Bug fixes
= 3.4.2 =
* Bug fixes
= 3.4.1 =
* Bug fixes related to media privacy
= 3.4 =
* Separate media handling for group and profile
* Bug fixes
= 3.3 =
* Updated uploader with media delete functionality.
* Improved UI
* Bug fixes
= 3.2.13.1 =
* Update po files.
= 3.2.13 =
* Improved Lightbox UI.
* More enhanced Uploader with new features, better error handling and notification.
* Enhanced UI for media edit screen.
* Fixed 404 permalink issue.
* Bug fixes
= 3.2.12 =
* lib updated for magnific popup and media-element, bug fixes
= 3.2.11 =
* Updated Spanish translation, bug fixes
= 3.2.10.2 =
* Remove Unused file, remove wp_load and add admin_ajax
= 3.2.10.1 =
* Remove notices and update js libs
= 3.2.10 =
* Add support in some strings translations thanks to [rafaelfunchal](profiles.wordpress.org/rafaelfunchal) for pull request
* Bug Fixes
= 3.2.9 =
* Fix permalink issue in album gallery
* Bug Fixes
= 3.2.8 =
* Fix WordPress MultiSite issue.
* Shortcode invalid argument issue fix.
= 3.2.7 =
* Update readme
* Add support for simple file uploader in shortcode
= 3.2.6 =
* Updated dutch translation.
* Fixed WordPress template issue.
= 3.2.5 =
* Bug fixes
= 3.2.4 =
* Updated polish,solvak and spanish transalation.
* Fixed multiple gallery on same page,comment sync for single media in activity, comments visibilty when not-logged in.
* Strings made translation ready
= 3.2.3 =
* Bug fixed for group avatar upload while creating a group in buddypress
* Fixed multisite
= 3.2.2 =
* Fixed header already sent issue
= 3.2.1 =
* Fixed activity issue
= 3.2 =
* UI Changes
* Cover art for music
* Used Font awesome for icon buttons
= 3.1.7 =
* Translatable message and button in activity stream and single media view thanks to [jonasnick](https://github.com/jonasnick)
* Limits items posted in activity feed thanks to [jarretc](https://github.com/jarretc)
* bug fixed for album deletion
* Fixed count issue on update
= 3.1.6 =
* Removed download button enable/disable settings
* Bug fixed for translation
* Added support for Playlists and its required filters
= 3.1.5 =
* Ignore privacy if admin user.
* Other minor issues.
= 3.1.4 =
* Fixed Trailing space issue.
= 3.1.3 =
* Fixed template issue (css).
* Add hooks and filters
* Other minor issues.
= 3.1.2 =
* Fixed template issue.
* Add activity update after updating video thumbs.
* Fixed encoding issue for sub directory.
* Fixed album count.
* Other minor issues.
= 3.1.1 =
* Add index for Activity query.
* Fixed activity and comment sync issue.
* Fixed shortcode issue.
* Fixed permalink for default album.
* Fixed media filename issue.
* Other minor issues.
= 3.1 =
* Add Thumbnail support in encoding.
* Add Regenerate thumbnail option for video.
* Add Change Video thumbnail for video in media edit screen (Admin & Frontend)
* Optimize SQL query & code for better performance .
* Fix uploader for IE and Opera.
* Fixed single media issue (add preload for video)
* Fixed Activity Privacy issue.
* Fixed Gallery shortcode issue.
= 3.0.13 =
* Add redirect in upload shortcode sponsored by [Henry Wright](http://profiles.wordpress.org/henrywright-1)
* Fixed getID3 issue for FFMPEG
* Add rtMedia JS hook for lightbox
= 3.0.12 =
* Fixed activity mention issue
* Fixed group avatar blank page issue
* Fixed encoding service free subscription issue
* Fixed featured video issue
* Fixed media player css issues
* Fixed permalink and count issue
* Update SEO for media
* Thanks to [kanakiyajay](http://profiles.wordpress.org/kanakiyajay) for replacing deprecated function split
* Other minor bug fixes
= 3.0.11 =
* Added profile picture along with the link back to the profile in the media pop ups ( sponsored by Richard Ellis )
* Fixed WordPress 3.6 attachment meta function issue & mediaElementJs
* Fixed Context Null issue in activity
* Fixed image size issue in gallery
* Fixed lightbox whitespace issue
* Fixed backbone paging on custom shortcode
* Other minor bug fixes
= 3.0.10 =
* Add Dashboard Widget
* Fix uploader for Mobile
* Other minor bug fixes
= 3.0.9 =
* Add Media Count
* Fixed Setting for Upload media
* Fixed Feature image issue
* Other minor bug fixes
= 3.0.8 =
* Fixed gallery and upload shortcode
* Fixed duplicate media in popup
* Fixed privacy user setting
* Fixed post parent issue and regenerate thumbnail issue
= 3.0.7 =
* Fixed rewrite rule issue
* Fixed comment issue on media
* Fixed hide activity on private group
* Fixed file format and mime type issue
* Fixed image size issue
= 3.0.6 =
* Fixed image size issue
* Fixed group create album permission and add setting for group admin
* Fixed Activity Delete issue
* Fixed Delete redirection
* Fixed template url issue for backbone
* Fixed photo tagging lightbox issue