Changeset 3445582
- Timestamp:
- 01/23/2026 12:46:27 PM (2 months ago)
- Location:
- social-integration-for-bluesky
- Files:
-
- 6 edited
- 1 copied
-
tags/1.4.5 (copied) (copied from social-integration-for-bluesky/trunk)
-
tags/1.4.5/classes/BlueSky_Render_Front.php (modified) (4 diffs)
-
tags/1.4.5/readme.txt (modified) (2 diffs)
-
tags/1.4.5/social-integration-for-bluesky.php (modified) (2 diffs)
-
trunk/classes/BlueSky_Render_Front.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/social-integration-for-bluesky.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
social-integration-for-bluesky/tags/1.4.5/classes/BlueSky_Render_Front.php
r3240272 r3445582 1 1 <?php 2 2 // Prevent direct access to the plugin 3 if ( ! defined( constant_name:'ABSPATH') ) {3 if ( ! defined('ABSPATH') ) { 4 4 exit; 5 5 } … … 172 172 <?php $profile = $this -> api_handler -> get_bluesky_profile(); ?> 173 173 174 <div class="bluesky-social-integration-image" style="--bluesky-social-integration-banner: url(<?php echo isset( $profile['banner'] ) ? esc_url( url:$profile['banner'] ) : BLUESKY_PLUGIN_FOLDER . '/assets/img/[email protected]'; ?>)">174 <div class="bluesky-social-integration-image" style="--bluesky-social-integration-banner: url(<?php echo isset( $profile['banner'] ) ? esc_url( $profile['banner'] ) : BLUESKY_PLUGIN_FOLDER . '/assets/img/[email protected]'; ?>)"> 175 175 <?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?> 176 176 <img class="avatar bluesky-social-integration-avatar" width="40" height="40" src="<?php echo esc_url( $profile['avatar'] ); ?>" alt=""> … … 355 355 $replacements = []; 356 356 $replacement_length = 0; 357 $replacement = ''; 357 358 358 359 foreach ( $post['facets'] as $facet ) { … … 453 454 <?php do_action('bluesky_before_profile_card_content', $profile ); ?> 454 455 455 <div class="bluesky-social-integration-image" style="--bluesky-social-integration-banner: url(<?php echo isset( $profile['banner'] ) ? esc_url( url:$profile['banner'] ) : BLUESKY_PLUGIN_FOLDER . '/assets/img/[email protected]'; ?>)">456 <div class="bluesky-social-integration-image" style="--bluesky-social-integration-banner: url(<?php echo isset( $profile['banner'] ) ? esc_url( $profile['banner'] ) : BLUESKY_PLUGIN_FOLDER . '/assets/img/[email protected]'; ?>)"> 456 457 <?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?> 457 458 <img class="avatar bluesky-social-integration-avatar" width="80" height="80" src="<?php echo esc_url( $profile['avatar'] ); ?>" alt=""> -
social-integration-for-bluesky/tags/1.4.5/readme.txt
r3240272 r3445582 6 6 Tested up to: 6.7 7 7 Requires PHP: 7.4 8 Stable tag: 1.4. 48 Stable tag: 1.4.5 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 117 117 == Changelog == 118 118 119 = 1.4.5 = 120 * **Bug Fix** 121 * Improved compatibility with PHP7+ (parse error and warnings should disappear) 122 119 123 = 1.4.4 = 120 124 * **Bug Fix** -
social-integration-for-bluesky/tags/1.4.5/social-integration-for-bluesky.php
r3240272 r3445582 3 3 Plugin Name: Social Integration for BlueSky 4 4 Description: Integrates BlueSky social features into WordPress including: Post New Articles on BlueSky for you, Shortcode for Profile Card, and Widget to display your last posts. You can also use shortcodes <code>[bluesky_profile]</code> and <code>[bluesky_last_posts]</code>. 5 Version: 1.4. 45 Version: 1.4.5 6 6 Requires at least: 5.0 7 7 Requires PHP: 7.4 … … 19 19 } 20 20 21 define( 'BLUESKY_PLUGIN_VERSION', '1.4. 4' );21 define( 'BLUESKY_PLUGIN_VERSION', '1.4.5' ); 22 22 define( 'BLUESKY_PLUGIN_FILE', __FILE__ ); 23 23 define( 'BLUESKY_PLUGIN_BASENAME', plugin_basename( __FILE__ ) ); -
social-integration-for-bluesky/trunk/classes/BlueSky_Render_Front.php
r3240272 r3445582 1 1 <?php 2 2 // Prevent direct access to the plugin 3 if ( ! defined( constant_name:'ABSPATH') ) {3 if ( ! defined('ABSPATH') ) { 4 4 exit; 5 5 } … … 172 172 <?php $profile = $this -> api_handler -> get_bluesky_profile(); ?> 173 173 174 <div class="bluesky-social-integration-image" style="--bluesky-social-integration-banner: url(<?php echo isset( $profile['banner'] ) ? esc_url( url:$profile['banner'] ) : BLUESKY_PLUGIN_FOLDER . '/assets/img/[email protected]'; ?>)">174 <div class="bluesky-social-integration-image" style="--bluesky-social-integration-banner: url(<?php echo isset( $profile['banner'] ) ? esc_url( $profile['banner'] ) : BLUESKY_PLUGIN_FOLDER . '/assets/img/[email protected]'; ?>)"> 175 175 <?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?> 176 176 <img class="avatar bluesky-social-integration-avatar" width="40" height="40" src="<?php echo esc_url( $profile['avatar'] ); ?>" alt=""> … … 355 355 $replacements = []; 356 356 $replacement_length = 0; 357 $replacement = ''; 357 358 358 359 foreach ( $post['facets'] as $facet ) { … … 453 454 <?php do_action('bluesky_before_profile_card_content', $profile ); ?> 454 455 455 <div class="bluesky-social-integration-image" style="--bluesky-social-integration-banner: url(<?php echo isset( $profile['banner'] ) ? esc_url( url:$profile['banner'] ) : BLUESKY_PLUGIN_FOLDER . '/assets/img/[email protected]'; ?>)">456 <div class="bluesky-social-integration-image" style="--bluesky-social-integration-banner: url(<?php echo isset( $profile['banner'] ) ? esc_url( $profile['banner'] ) : BLUESKY_PLUGIN_FOLDER . '/assets/img/[email protected]'; ?>)"> 456 457 <?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?> 457 458 <img class="avatar bluesky-social-integration-avatar" width="80" height="80" src="<?php echo esc_url( $profile['avatar'] ); ?>" alt=""> -
social-integration-for-bluesky/trunk/readme.txt
r3240272 r3445582 6 6 Tested up to: 6.7 7 7 Requires PHP: 7.4 8 Stable tag: 1.4. 48 Stable tag: 1.4.5 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 117 117 == Changelog == 118 118 119 = 1.4.5 = 120 * **Bug Fix** 121 * Improved compatibility with PHP7+ (parse error and warnings should disappear) 122 119 123 = 1.4.4 = 120 124 * **Bug Fix** -
social-integration-for-bluesky/trunk/social-integration-for-bluesky.php
r3240272 r3445582 3 3 Plugin Name: Social Integration for BlueSky 4 4 Description: Integrates BlueSky social features into WordPress including: Post New Articles on BlueSky for you, Shortcode for Profile Card, and Widget to display your last posts. You can also use shortcodes <code>[bluesky_profile]</code> and <code>[bluesky_last_posts]</code>. 5 Version: 1.4. 45 Version: 1.4.5 6 6 Requires at least: 5.0 7 7 Requires PHP: 7.4 … … 19 19 } 20 20 21 define( 'BLUESKY_PLUGIN_VERSION', '1.4. 4' );21 define( 'BLUESKY_PLUGIN_VERSION', '1.4.5' ); 22 22 define( 'BLUESKY_PLUGIN_FILE', __FILE__ ); 23 23 define( 'BLUESKY_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.