rtMedia for WordPress, BuddyPress and bbPress - Version 3.7.13

Version Description

  • Fix rtMedia addon Buy Now url
  • Updated CSS for rtMedia addon licenses
Download this release

Release Info

Developer rtcamp
Plugin Icon 128x128 rtMedia for WordPress, BuddyPress and bbPress
Version 3.7.13
Comparing to
See all releases

Code changes from version 3.7.12 to 3.7.13

app/assets/css/admin.css CHANGED
@@ -785,19 +785,32 @@ div.bp-media-metabox-holder #branding #mce-responses {
785
  margin-bottom: 10px;
786
  padding: 10px;
787
  }
788
- .rtm-addon-license .rtm-addon-license-status {
789
- font-size: 20px;
790
- margin: 10px 0;
 
 
791
  }.rtm-addon-license .rtm-addon-license-status .rtm-addon-license-status-label{
792
  font-weight: bold;
793
  color: #222;
794
  }
795
  .rtm-addon-license .rtm-addon-status-activated {
796
- color: green;
797
  }
798
  .rtm-addon-license .rtm-addon-status-deactivated {
799
- color: red;
 
 
 
 
 
 
800
  }
801
  .rtm-addon-license table th{
802
  width: 35%;
 
 
 
 
 
803
  }
785
  margin-bottom: 10px;
786
  padding: 10px;
787
  }
788
+ .rtm-addon-license .large-12.rtm-addon-license-status {
789
+ font-size: 15px;
790
+ padding: 10px 0;
791
+ background: none repeat scroll 0 0 #f5f5f5;
792
+ border: 1px solid #eee;
793
  }.rtm-addon-license .rtm-addon-license-status .rtm-addon-license-status-label{
794
  font-weight: bold;
795
  color: #222;
796
  }
797
  .rtm-addon-license .rtm-addon-status-activated {
798
+ color: #7ad03a;
799
  }
800
  .rtm-addon-license .rtm-addon-status-deactivated {
801
+ color: #dd3d36;
802
+ }
803
+ .rtm-addon-license form h3{
804
+ font-size: 14px;
805
+ border-bottom: 1px dotted #DDD;
806
+ padding-bottom: 5px;
807
+ font-weight: bold;
808
  }
809
  .rtm-addon-license table th{
810
  width: 35%;
811
+ font-weight: normal;
812
+ font-size: 13px;
813
+ }
814
+ .rtm-addon-license table td img{
815
+ margin-left: 10px;
816
  }
app/helper/RTMediaAddon.php CHANGED
@@ -149,7 +149,7 @@ if ( ! class_exists( 'RTMediaAddon' ) ){
149
  <p><strong>' . __( 'Important', 'rtmedia' ) . ':</strong> ' . __( 'You need to have either ImageMagick or GD library installed on your server for this addon to work.', 'rtmedia' ) . '</p>',
150
  'price' => '$49',
151
  'demo_link' => 'http://demo.rtcamp.com/rtmedia/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media',
152
- 'buy_now' => 'http://rtcamp.com/store/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media&add-to-cart=70305'
153
  ),
154
  array(
155
  'title' => __( 'rtMedia Photo Tagging', 'rtmedia' ),
@@ -159,7 +159,7 @@ if ( ! class_exists( 'RTMediaAddon' ) ){
159
  <p><strong>' . __( 'Important', 'rtmedia' ) . ':</strong> ' . __( 'You need to have ImageMagick installed on your server for this addon to work.', 'rtmedia' ) . '</p>',
160
  'price' => '$49',
161
  'demo_link' => 'http://demo.rtcamp.com/rtmedia/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media',
162
- 'buy_now' => 'http://rtcamp.com/store/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media&add-to-cart=37506'
163
  ),
164
  array(
165
  'title' => __( 'rtMedia Instagram', 'rtmedia' ),
@@ -169,7 +169,7 @@ if ( ! class_exists( 'RTMediaAddon' ) ){
169
  <p><strong>' . __( 'Important', 'rtmedia' ) . ':</strong> ' . __( 'You need to have ImageMagick installed on your server for this addon to work.', 'rtmedia' ) . '</p>',
170
  'price' => '$49',
171
  'demo_link' => 'http://demo.rtcamp.com/rtmedia/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media',
172
- 'buy_now' => 'http://rtcamp.com/store/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media&add-to-cart=34379'
173
  ),
174
  array(
175
  'title' => __( 'rtMedia Kaltura Add-on', 'rtmedia' ),
@@ -179,7 +179,7 @@ if ( ! class_exists( 'RTMediaAddon' ) ){
179
  <p>' . __( 'Works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise.', 'rtmedia' ) . '</p>',
180
  'price' => '$199',
181
  'demo_link' => 'http://demo.rtcamp.com/bpm-kaltura/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media',
182
- 'buy_now' => 'http://rtcamp.com/store/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media&add-to-cart=15446'
183
  ),
184
  array(
185
  'title' => __( 'rtMedia FFMPEG Add-on', 'rtmedia' ),
@@ -189,7 +189,7 @@ if ( ! class_exists( 'RTMediaAddon' ) ){
189
  <p>' . __( 'Media node comes with automated setup script for Ubuntu/Debian.', 'rtmedia' ) . '</p>',
190
  'price' => '$199',
191
  'demo_link' => 'http://demo.rtcamp.com/bpm-media/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media',
192
- 'buy_now' => 'http://rtcamp.com/store/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media&add-to-cart=13677'
193
  )
194
  );
195
  $addons = apply_filters( 'rtmedia_addons', $addons );
149
  <p><strong>' . __( 'Important', 'rtmedia' ) . ':</strong> ' . __( 'You need to have either ImageMagick or GD library installed on your server for this addon to work.', 'rtmedia' ) . '</p>',
150
  'price' => '$49',
151
  'demo_link' => 'http://demo.rtcamp.com/rtmedia/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media',
152
+ 'buy_now' => 'https://rtcamp.com/store/rtmedia-photo-watermark/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media'
153
  ),
154
  array(
155
  'title' => __( 'rtMedia Photo Tagging', 'rtmedia' ),
159
  <p><strong>' . __( 'Important', 'rtmedia' ) . ':</strong> ' . __( 'You need to have ImageMagick installed on your server for this addon to work.', 'rtmedia' ) . '</p>',
160
  'price' => '$49',
161
  'demo_link' => 'http://demo.rtcamp.com/rtmedia/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media',
162
+ 'buy_now' => 'https://rtcamp.com/store/rtmedia-photo-tagging/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media'
163
  ),
164
  array(
165
  'title' => __( 'rtMedia Instagram', 'rtmedia' ),
169
  <p><strong>' . __( 'Important', 'rtmedia' ) . ':</strong> ' . __( 'You need to have ImageMagick installed on your server for this addon to work.', 'rtmedia' ) . '</p>',
170
  'price' => '$49',
171
  'demo_link' => 'http://demo.rtcamp.com/rtmedia/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media',
172
+ 'buy_now' => 'https://rtcamp.com/store/rtmedia-instagram/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media'
173
  ),
174
  array(
175
  'title' => __( 'rtMedia Kaltura Add-on', 'rtmedia' ),
179
  <p>' . __( 'Works with Kaltura.com, self-hosted Kaltura-CE and Kaltura-on-premise.', 'rtmedia' ) . '</p>',
180
  'price' => '$199',
181
  'demo_link' => 'http://demo.rtcamp.com/bpm-kaltura/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media',
182
+ 'buy_now' => 'https://rtcamp.com/store/rtmedia-kaltura/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media'
183
  ),
184
  array(
185
  'title' => __( 'rtMedia FFMPEG Add-on', 'rtmedia' ),
189
  <p>' . __( 'Media node comes with automated setup script for Ubuntu/Debian.', 'rtmedia' ) . '</p>',
190
  'price' => '$199',
191
  'demo_link' => 'http://demo.rtcamp.com/bpm-media/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media',
192
+ 'buy_now' => 'https://rtcamp.com/store/rtmedia-ffmpeg/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media'
193
  )
194
  );
195
  $addons = apply_filters( 'rtmedia_addons', $addons );
index.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: rtMedia for WordPress, BuddyPress and bbPress
5
  Plugin URI: http://rtcamp.com/rtmedia/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
6
  Description: This plugin adds missing media rich features like photos, videos and audio uploading to BuddyPress which are essential if you are building social network, seriously!
7
- Version: 3.7.12
8
  Author: rtCamp
9
  Text Domain: rtmedia
10
  Author URI: http://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
4
  Plugin Name: rtMedia for WordPress, BuddyPress and bbPress
5
  Plugin URI: http://rtcamp.com/rtmedia/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
6
  Description: This plugin adds missing media rich features like photos, videos and audio uploading to BuddyPress which are essential if you are building social network, seriously!
7
+ Version: 3.7.13
8
  Author: rtCamp
9
  Text Domain: rtmedia
10
  Author URI: http://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
readme.txt CHANGED
@@ -6,7 +6,7 @@ License: GPLv2 or later
6
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  Requires at least: WordPress 3.6
8
  Tested up to: WordPress 4.0 + BuddyPress 2.0
9
- Stable tag: 3.7.12
10
 
11
  Add albums, photo, audio/video encoding, privacy, sharing, front-end uploads & more. All this works mobile/tablets devices.
12
 
@@ -133,6 +133,10 @@ http://www.youtube.com/watch?v=dJrykKQGDcs
133
 
134
  Please visit [rtMedia's Roadmap page](http://rtcamp.com/rtmedia/roadmap/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Visit rtMedia's Features page") to get some details about future releases.
135
 
 
 
 
 
136
  = 3.7.12 =
137
  * Fix rename non-english characters to valid english characters for file upload
138
  * Fix Add media button glitches in BuddyPress activity
@@ -821,8 +825,8 @@ Please visit [rtMedia's Roadmap page](http://rtcamp.com/rtmedia/roadmap/?utm_sou
821
 
822
  == Upgrade Notice ==
823
 
824
- = 3.7.12 =
825
- Requires BuddyPress 1.7 or higher, if using BuddyPress. Fix rename non-english characters to valid english characters for file upload, fix Add media button glitches in BuddyPress activity.
826
 
827
  == Sponsors ==
828
 
6
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  Requires at least: WordPress 3.6
8
  Tested up to: WordPress 4.0 + BuddyPress 2.0
9
+ Stable tag: 3.7.13
10
 
11
  Add albums, photo, audio/video encoding, privacy, sharing, front-end uploads & more. All this works mobile/tablets devices.
12
 
133
 
134
  Please visit [rtMedia's Roadmap page](http://rtcamp.com/rtmedia/roadmap/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Visit rtMedia's Features page") to get some details about future releases.
135
 
136
+ = 3.7.13 =
137
+ * Fix rtMedia addon Buy Now url
138
+ * Updated CSS for rtMedia addon licenses
139
+
140
  = 3.7.12 =
141
  * Fix rename non-english characters to valid english characters for file upload
142
  * Fix Add media button glitches in BuddyPress activity
825
 
826
  == Upgrade Notice ==
827
 
828
+ = 3.7.13 =
829
+ Requires BuddyPress 1.7 or higher, if using BuddyPress. Updated rtMedia addon Buy Now url and license page CSS.
830
 
831
  == Sponsors ==
832