Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,14 @@ Read [Documentation](https://rtmedia.io/docs/transcoder/?utm_source=readme&utm_m

## Changelog ##

#### 1.3.9 [May 13, 2025] ####

* ENHANCEMENTS

* Update GoDAM Notice to include UTM parameters.
* Update Notice colour and add a dashicon.
* Add plugin page visibility for the GoDAM Notice.

#### 1.3.8 [April 18, 2025] ####

* ENHANCEMENTS
Expand Down
7 changes: 5 additions & 2 deletions admin/rt-transcoder-admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -497,6 +497,8 @@ public function install_godam_admin_notice() {
'rt-transcoder',
'rt-retranscoder',
'dashboard',
'plugins',
'plugins-network'
);

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

$class = 'notice notice-info';
$class = 'notice notice-warning';
$valid_tags = array(
'div' => array( 'class' => array(), 'id' => array() ),
'p' => array(),
'strong' => array(),
'a' => array( 'href' => array(), 'class' => array(), 'target' => array() ),
'span' => array( 'class' => array(), 'style' => array() ),
);

printf(
wp_kses(
__( '<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' ),
__( '<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' ),
$valid_tags
),
esc_attr( $class ),
Expand Down
15 changes: 14 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: media, multimedia, audio, songs, music, video, ffmpeg, media-node, rtMedia
Donate link: https://rtcamp.com/donate/
Requires at least: 4.1
Tested up to: 6.8
Stable tag: 1.3.8
Stable tag: 1.3.9
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

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

== Changelog ==

= 1.3.9 [May 13, 2025] =

* ENHANCEMENTS

* Update GoDAM Notice to include UTM parameters.
* Update Notice colour and add a dashicon.
* Add plugin page visibility for the GoDAM Notice.


= 1.3.8 [April 18, 2025] =

* ENHANCEMENTS
Expand Down Expand Up @@ -235,6 +244,10 @@ Initial release

== Upgrade Notice ==

= 1.3.9 =
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.


= 1.3.8 =
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.

Expand Down
4 changes: 2 additions & 2 deletions rt-transcoder.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Transcoder
* Plugin URI: https://rtmedia.io/transcoder/?utm_source=dashboard&utm_medium=plugin&utm_campaign=transcoder
* 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).
* Version: 1.3.8
* Version: 1.3.9
* Text Domain: transcoder
* Author: rtCamp
* Author URI: https://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign=transcoder
Expand Down Expand Up @@ -39,7 +39,7 @@
/**
* The version of the plugin
*/
define( 'RT_TRANSCODER_VERSION', '1.3.8' );
define( 'RT_TRANSCODER_VERSION', '1.3.9' );
}

if ( ! defined( 'RT_TRANSCODER_NO_MAIL' ) && defined( 'VIP_GO_APP_ENVIRONMENT' ) ) {
Expand Down