Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
6ccc407
Fix: Ensure rtMedia compatibility with WordPress 6.7 (#2155)
Jul 21, 2025
c5f26dd
Fix GoDAM Notification
krishana7911 Aug 12, 2025
26f717d
Load GoDAM Script
krishana7911 Aug 28, 2025
3131543
Fix issues & separate script for GoDAM Integration
krishana7911 Aug 28, 2025
43c2448
Update Ajax Code
krishana7911 Aug 28, 2025
6a51334
Fix Shimmer Issue on multisite
krishana7911 Aug 28, 2025
65142af
Remove GoDAM code from rtMedia functions
krishana7911 Aug 28, 2025
b5d54d9
Update app/assets/js/godam-integration.js
krishana7911 Aug 28, 2025
1aaba2f
Merge pull request #2158 from rtCamp/fix/godam-notifications
krishana7911 Sep 1, 2025
f2d4491
Merge pull request #2162 from rtCamp/fix/godam-integration
krishana7911 Sep 1, 2025
5b15f9a
Merge pull request #2156 from bhargaviananthbandaru/fix-wp67-compatib…
krishana7911 Sep 1, 2025
17fd4f8
Fix issue with Nouveau templates
krishana7911 Sep 1, 2025
2fa87a4
Update templates/media/godam-integration.php
krishana7911 Sep 2, 2025
bfce9ee
Merge pull request #2163 from rtCamp/fix/godam-integration
krishana7911 Sep 2, 2025
ad5aeea
Version Update v4.7.2
krishana7911 Sep 2, 2025
0896913
Merge pull request #2164 from rtCamp/version-update/v4.7.2
krishana7911 Sep 2, 2025
74e507a
Fix: Escape [] correctly
krishana7911 Sep 2, 2025
a5375ca
Fix: String Escape Security Issue
krishana7911 Sep 2, 2025
e263cde
Chore: Add Build Files
krishana7911 Sep 2, 2025
17a84a4
Potential fix for code scanning alert no. 37: Incomplete string escap…
krishana7911 Sep 2, 2025
0ba5464
Potential fix for code scanning alert no. 33: Incomplete string escap…
krishana7911 Sep 2, 2025
1516686
Potential fix for code scanning alert no. 35: Incomplete string escap…
krishana7911 Sep 2, 2025
5f9640f
Merge pull request #2166 from rtCamp/fix/jquery-update-vulnerabilities
krishana7911 Sep 2, 2025
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
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,16 @@ https://www.youtube.com/watch?v=dJrykKQGDcs

## Changelog ##

### 4.7.2

* FIXED
* Fixed GoDAM Player rendering issue on Multisite.
* Fixed GoDAM Player Skins not loading on Multisite.

* ENHANCEMENTS
* Better handling of rtMedia Notifications.
* Updated jQuery Deprecated Methods.

### 4.7.1

* FIXED
Expand Down
15 changes: 15 additions & 0 deletions app/admin/templates/notices/transcoder.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@
* @package rtMedia
*/

// Include plugin.php if not already loaded.
if ( ! function_exists( 'is_plugin_active' ) ) {
include_once ABSPATH . 'wp-admin/includes/plugin.php';
}

// If GoDAM is active right now, set a permanent flag.
if ( is_plugin_active( 'godam/godam.php' ) ) {
update_option( 'godam_plugin_activated_once', true );
}

// If the permanent flag is set, never show the notice.
if ( get_option( 'godam_plugin_activated_once' ) ) {
return;
}

?>

<div class="notice notice-info install-transcoder-notice is-dismissible">
Expand Down
Loading
Loading