Changeset 3389966
- Timestamp:
- 11/04/2025 08:51:50 PM (5 months ago)
- Location:
- wpstream
- Files:
-
- 10 edited
- 1 copied
-
tags/4.8.5 (copied) (copied from wpstream/trunk)
-
tags/4.8.5/includes/class-wpstream-ajax.php (modified) (1 diff)
-
tags/4.8.5/includes/class-wpstream-live-api-connection.php (modified) (1 diff)
-
tags/4.8.5/includes/class-wpstream-player.php (modified) (2 diffs)
-
tags/4.8.5/readme.txt (modified) (2 diffs)
-
tags/4.8.5/wpstream.php (modified) (2 diffs)
-
trunk/includes/class-wpstream-ajax.php (modified) (1 diff)
-
trunk/includes/class-wpstream-live-api-connection.php (modified) (1 diff)
-
trunk/includes/class-wpstream-player.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wpstream.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpstream/tags/4.8.5/includes/class-wpstream-ajax.php
r3388690 r3389966 912 912 } 913 913 914 $quota_data = $this->main->quota_manager->get_live_quota_data( );914 $quota_data = $this->main->quota_manager->get_live_quota_data( 'wpstream_get_live_quota_data' ); 915 915 916 916 if ( $quota_data ) { -
wpstream/tags/4.8.5/includes/class-wpstream-live-api-connection.php
r3388690 r3389966 927 927 public function wpstream_is_streamify_user() { 928 928 global $wpstream_plugin; 929 $pack_details = $wpstream_plugin->main->quota_manager->get_live_quota_data( );929 $pack_details = $wpstream_plugin->main->quota_manager->get_live_quota_data( 'wpstream_is_streamify_user' ); 930 930 931 931 if ( isset( $pack_details['available_data'] ) && $pack_details['available_data'] <= 0 ) { -
wpstream/tags/4.8.5/includes/class-wpstream-player.php
r3388690 r3389966 857 857 858 858 859 $pack = $this->main->quota_manager->get_live_quota_data( );859 $pack = $this->main->quota_manager->get_live_quota_data( 'wpstream_video_on_demand_player' ); 860 860 861 861 … … 1565 1565 1566 1566 public function wpstream_is_streamify_user() { 1567 $pack_details = $this->main->quota_manager->get_live_quota_data( );1567 $pack_details = $this->main->quota_manager->get_live_quota_data( 'wpstream_is_streamify_user' ); 1568 1568 1569 1569 if ( isset( $pack_details['available_data'] ) && $pack_details['available_data'] <= 0 ) { -
wpstream/tags/4.8.5/readme.txt
r3389775 r3389966 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.1 7 Stable tag: 4.8. 47 Stable tag: 4.8.5 8 8 License: GPL 9 9 License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html … … 136 136 == Changelog == 137 137 138 = 4.8.5 = 139 * Enhancement - Better track the quota calls 140 138 141 = 4.8.4 = 139 142 * Fix - Optimizing the quota calls -
wpstream/tags/4.8.5/wpstream.php
r3389775 r3389966 4 4 * Plugin URI: http://wpstream.net 5 5 * Description: WpStream is a platform that allows you to live stream, create Video-on-Demand, and offer Pay-Per-View videos. We provide an affordable and user-friendly way for businesses, non-profits, and public institutions to broadcast their content and monetize their work. 6 * Version: 4.8. 46 * Version: 4.8.5 7 7 * Author: wpstream 8 8 * Author URI: http://wpstream.net … … 15 15 die; 16 16 } 17 define('WPSTREAM_PLUGIN_VERSION', '4.8. 4');17 define('WPSTREAM_PLUGIN_VERSION', '4.8.5'); 18 18 define('WPSTREAM_CLUBLINK', 'wpstream.net'); 19 19 define('WPSTREAM_CLUBLINKSSL', 'https'); -
wpstream/trunk/includes/class-wpstream-ajax.php
r3388690 r3389966 912 912 } 913 913 914 $quota_data = $this->main->quota_manager->get_live_quota_data( );914 $quota_data = $this->main->quota_manager->get_live_quota_data( 'wpstream_get_live_quota_data' ); 915 915 916 916 if ( $quota_data ) { -
wpstream/trunk/includes/class-wpstream-live-api-connection.php
r3388690 r3389966 927 927 public function wpstream_is_streamify_user() { 928 928 global $wpstream_plugin; 929 $pack_details = $wpstream_plugin->main->quota_manager->get_live_quota_data( );929 $pack_details = $wpstream_plugin->main->quota_manager->get_live_quota_data( 'wpstream_is_streamify_user' ); 930 930 931 931 if ( isset( $pack_details['available_data'] ) && $pack_details['available_data'] <= 0 ) { -
wpstream/trunk/includes/class-wpstream-player.php
r3388690 r3389966 857 857 858 858 859 $pack = $this->main->quota_manager->get_live_quota_data( );859 $pack = $this->main->quota_manager->get_live_quota_data( 'wpstream_video_on_demand_player' ); 860 860 861 861 … … 1565 1565 1566 1566 public function wpstream_is_streamify_user() { 1567 $pack_details = $this->main->quota_manager->get_live_quota_data( );1567 $pack_details = $this->main->quota_manager->get_live_quota_data( 'wpstream_is_streamify_user' ); 1568 1568 1569 1569 if ( isset( $pack_details['available_data'] ) && $pack_details['available_data'] <= 0 ) { -
wpstream/trunk/readme.txt
r3389775 r3389966 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.1 7 Stable tag: 4.8. 47 Stable tag: 4.8.5 8 8 License: GPL 9 9 License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html … … 136 136 == Changelog == 137 137 138 = 4.8.5 = 139 * Enhancement - Better track the quota calls 140 138 141 = 4.8.4 = 139 142 * Fix - Optimizing the quota calls -
wpstream/trunk/wpstream.php
r3389775 r3389966 4 4 * Plugin URI: http://wpstream.net 5 5 * Description: WpStream is a platform that allows you to live stream, create Video-on-Demand, and offer Pay-Per-View videos. We provide an affordable and user-friendly way for businesses, non-profits, and public institutions to broadcast their content and monetize their work. 6 * Version: 4.8. 46 * Version: 4.8.5 7 7 * Author: wpstream 8 8 * Author URI: http://wpstream.net … … 15 15 die; 16 16 } 17 define('WPSTREAM_PLUGIN_VERSION', '4.8. 4');17 define('WPSTREAM_PLUGIN_VERSION', '4.8.5'); 18 18 define('WPSTREAM_CLUBLINK', 'wpstream.net'); 19 19 define('WPSTREAM_CLUBLINKSSL', 'https');
Note: See TracChangeset
for help on using the changeset viewer.