Skip to content

Commit 8fe2bdb

Browse files
authored
Merge pull request #320 from rtCamp/develop
Version Update v1.3.9 [ master ]
2 parents d734850 + dd653e3 commit 8fe2bdb

File tree

4 files changed

+29
-5
lines changed

4 files changed

+29
-5
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,14 @@ Read [Documentation](https://rtmedia.io/docs/transcoder/?utm_source=readme&utm_m
6666

6767
## Changelog ##
6868

69+
#### 1.3.9 [May 13, 2025] ####
70+
71+
* ENHANCEMENTS
72+
73+
* Update GoDAM Notice to include UTM parameters.
74+
* Update Notice colour and add a dashicon.
75+
* Add plugin page visibility for the GoDAM Notice.
76+
6977
#### 1.3.8 [April 18, 2025] ####
7078

7179
* ENHANCEMENTS

admin/rt-transcoder-admin.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -497,6 +497,8 @@ public function install_godam_admin_notice() {
497497
'rt-transcoder',
498498
'rt-retranscoder',
499499
'dashboard',
500+
'plugins',
501+
'plugins-network'
500502
);
501503

502504
// Check if we’re on allowed page using screen ID or $_GET['page']
@@ -521,17 +523,18 @@ public function install_godam_admin_notice() {
521523
? network_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $plugin_slug . '&TB_iframe=true&width=772&height=666' )
522524
: admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $plugin_slug . '&TB_iframe=true&width=772&height=666' );
523525

524-
$class = 'notice notice-info';
526+
$class = 'notice notice-warning';
525527
$valid_tags = array(
526528
'div' => array( 'class' => array(), 'id' => array() ),
527529
'p' => array(),
528530
'strong' => array(),
529531
'a' => array( 'href' => array(), 'class' => array(), 'target' => array() ),
532+
'span' => array( 'class' => array(), 'style' => array() ),
530533
);
531534

532535
printf(
533536
wp_kses(
534-
__( '<div class="%1$s"><p><strong>NOTICE:</strong> Transcoder plugin will be retired on <strong>May 31, 2025</strong>. We recommend removing this plugin and switching to our new plugin, <a href="https://godam.io/" target="_blank">GoDAM</a> which includes powerful Digital Asset Management features along with video transcoding services. <a href="%2$s" class="thickbox open-plugin-details-modal">Install GoDAM now</a>!</p></div>', 'transcoder' ),
537+
__( '<div class="%1$s"><p><span class="dashicons dashicons-warning" style="margin-right: 5px; color: #c28b00;"></span><strong>NOTICE:</strong> Transcoder plugin will be retired on <strong>May 31, 2025</strong>. We recommend removing this plugin and switching to our new plugin, <a href="https://godam.io/?utm_source=transcoder-plugin&utm_medium=wp-admin&utm_campaign=plugin-notice" target="_blank">GoDAM</a> which includes powerful Digital Asset Management features along with video transcoding services. <a href="%2$s" class="thickbox open-plugin-details-modal">Install GoDAM now</a>!</p></div>', 'transcoder' ),
535538
$valid_tags
536539
),
537540
esc_attr( $class ),

readme.txt

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: media, multimedia, audio, songs, music, video, ffmpeg, media-node, rtMedia
44
Donate link: https://rtcamp.com/donate/
55
Requires at least: 4.1
66
Tested up to: 6.8
7-
Stable tag: 1.3.8
7+
Stable tag: 1.3.9
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -63,6 +63,15 @@ Read [Documentation](https://rtmedia.io/docs/transcoder/?utm_source=readme&utm_m
6363

6464
== Changelog ==
6565

66+
= 1.3.9 [May 13, 2025] =
67+
68+
* ENHANCEMENTS
69+
70+
* Update GoDAM Notice to include UTM parameters.
71+
* Update Notice colour and add a dashicon.
72+
* Add plugin page visibility for the GoDAM Notice.
73+
74+
6675
= 1.3.8 [April 18, 2025] =
6776

6877
* ENHANCEMENTS
@@ -235,6 +244,10 @@ Initial release
235244

236245
== Upgrade Notice ==
237246

247+
= 1.3.9 =
248+
Transcoder 1.3.9, with update admin notice to install new GoDAM plugin - with a powerful Digital Asset Management features along with video transcoding services.
249+
250+
238251
= 1.3.8 =
239252
Transcoder 1.3.8, with admin notice to install our new GoDAM plugin – with a powerful Digital Asset Management features along with video transcoding services.
240253

rt-transcoder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Transcoder
44
* Plugin URI: https://rtmedia.io/transcoder/?utm_source=dashboard&utm_medium=plugin&utm_campaign=transcoder
55
* Description: Audio & video transcoding services for ANY WordPress website. Allows you to convert audio/video files of any format to a web-friendly format (mp3/mp4).
6-
* Version: 1.3.8
6+
* Version: 1.3.9
77
* Text Domain: transcoder
88
* Author: rtCamp
99
* Author URI: https://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign=transcoder
@@ -39,7 +39,7 @@
3939
/**
4040
* The version of the plugin
4141
*/
42-
define( 'RT_TRANSCODER_VERSION', '1.3.8' );
42+
define( 'RT_TRANSCODER_VERSION', '1.3.9' );
4343
}
4444

4545
if ( ! defined( 'RT_TRANSCODER_NO_MAIL' ) && defined( 'VIP_GO_APP_ENVIRONMENT' ) ) {

0 commit comments

Comments
 (0)