From 3040c61afc6ead49509b1ee8431f2b1866cf24e0 Mon Sep 17 00:00:00 2001 From: krishana7911 Date: Fri, 18 Apr 2025 17:26:15 +0530 Subject: [PATCH 1/2] version update 1.3.8 --- README.md | 2 +- readme.txt | 8 ++++---- rt-transcoder.php | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 5ff4d91..49ca00a 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ Read [Documentation](https://rtmedia.io/docs/transcoder/?utm_source=readme&utm_m ## Changelog ## -#### 1.3.7 [April 18, 2025] #### +#### 1.3.8 [April 18, 2025] #### * ENHANCEMENTS diff --git a/readme.txt b/readme.txt index 4d6c592..1e1aa89 100644 --- a/readme.txt +++ b/readme.txt @@ -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.7 +Stable tag: 1.3.8 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -63,7 +63,7 @@ Read [Documentation](https://rtmedia.io/docs/transcoder/?utm_source=readme&utm_m == Changelog == -= 1.3.7 [April 18, 2025] = += 1.3.8 [April 18, 2025] = * ENHANCEMENTS @@ -235,8 +235,8 @@ Initial release == Upgrade Notice == -= 1.3.7 = -Transcoder 1.3.7, with admin notice to install our 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. = 1.3.6 = Transcoder 1.3.6, with enhanced security. diff --git a/rt-transcoder.php b/rt-transcoder.php index 1573d4f..908cf63 100644 --- a/rt-transcoder.php +++ b/rt-transcoder.php @@ -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.7 + * Version: 1.3.8 * Text Domain: transcoder * Author: rtCamp * Author URI: https://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign=transcoder @@ -39,7 +39,7 @@ /** * The version of the plugin */ - define( 'RT_TRANSCODER_VERSION', '1.3.7' ); + define( 'RT_TRANSCODER_VERSION', '1.3.8' ); } if ( ! defined( 'RT_TRANSCODER_NO_MAIL' ) && defined( 'VIP_GO_APP_ENVIRONMENT' ) ) { From 6c32f7b228a31ab007caae12d637534fe9efe723 Mon Sep 17 00:00:00 2001 From: krishana7911 Date: Tue, 13 May 2025 12:56:54 +0530 Subject: [PATCH 2/2] Update GoDAM notice: Add UTM, change colour, add icon, allow on plugins page --- admin/rt-transcoder-admin.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/admin/rt-transcoder-admin.php b/admin/rt-transcoder-admin.php index eaea591..bcd1c33 100755 --- a/admin/rt-transcoder-admin.php +++ b/admin/rt-transcoder-admin.php @@ -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'] @@ -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( - __( '

NOTICE: Transcoder plugin will be retired on May 31, 2025. We recommend removing this plugin and switching to our new plugin, GoDAM which includes powerful Digital Asset Management features along with video transcoding services. Install GoDAM now!

', 'transcoder' ), + __( '

NOTICE: Transcoder plugin will be retired on May 31, 2025. We recommend removing this plugin and switching to our new plugin, GoDAM which includes powerful Digital Asset Management features along with video transcoding services. Install GoDAM now!

', 'transcoder' ), $valid_tags ), esc_attr( $class ),