Plugin Directory

Changeset 3445582


Ignore:
Timestamp:
01/23/2026 12:46:27 PM (2 months ago)
Author:
CreativeJuiz
Message:

Update to version 1.4.5 from GitHub

Location:
social-integration-for-bluesky
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • social-integration-for-bluesky/tags/1.4.5/classes/BlueSky_Render_Front.php

    r3240272 r3445582  
    11<?php
    22// Prevent direct access to the plugin
    3 if ( ! defined(constant_name: 'ABSPATH') ) {
     3if ( ! defined('ABSPATH') ) {
    44    exit;
    55}
     
    172172                    <?php $profile = $this -> api_handler -> get_bluesky_profile(); ?>
    173173
    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]'; ?>)">
    175175                        <?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?>
    176176                        <img class="avatar bluesky-social-integration-avatar" width="40" height="40" src="<?php echo esc_url( $profile['avatar'] ); ?>" alt="">
     
    355355            $replacements = [];
    356356            $replacement_length = 0;
     357            $replacement = '';
    357358
    358359            foreach ( $post['facets'] as $facet ) {
     
    453454            <?php do_action('bluesky_before_profile_card_content', $profile ); ?>
    454455
    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]'; ?>)">
    456457                <?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?>
    457458                <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  
    66Tested up to: 6.7
    77Requires PHP: 7.4
    8 Stable tag: 1.4.4
     8Stable tag: 1.4.5
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    117117== Changelog ==
    118118
     119= 1.4.5 =
     120* **Bug Fix**
     121 * Improved compatibility with PHP7+ (parse error and warnings should disappear)
     122
    119123= 1.4.4 =
    120124* **Bug Fix**
  • social-integration-for-bluesky/tags/1.4.5/social-integration-for-bluesky.php

    r3240272 r3445582  
    33Plugin Name: Social Integration for BlueSky
    44Description: 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.4
     5Version: 1.4.5
    66Requires at least: 5.0
    77Requires PHP: 7.4
     
    1919}
    2020
    21 define( 'BLUESKY_PLUGIN_VERSION', '1.4.4' );
     21define( 'BLUESKY_PLUGIN_VERSION', '1.4.5' );
    2222define( 'BLUESKY_PLUGIN_FILE',  __FILE__ );
    2323define( 'BLUESKY_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
  • social-integration-for-bluesky/trunk/classes/BlueSky_Render_Front.php

    r3240272 r3445582  
    11<?php
    22// Prevent direct access to the plugin
    3 if ( ! defined(constant_name: 'ABSPATH') ) {
     3if ( ! defined('ABSPATH') ) {
    44    exit;
    55}
     
    172172                    <?php $profile = $this -> api_handler -> get_bluesky_profile(); ?>
    173173
    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]'; ?>)">
    175175                        <?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?>
    176176                        <img class="avatar bluesky-social-integration-avatar" width="40" height="40" src="<?php echo esc_url( $profile['avatar'] ); ?>" alt="">
     
    355355            $replacements = [];
    356356            $replacement_length = 0;
     357            $replacement = '';
    357358
    358359            foreach ( $post['facets'] as $facet ) {
     
    453454            <?php do_action('bluesky_before_profile_card_content', $profile ); ?>
    454455
    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]'; ?>)">
    456457                <?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?>
    457458                <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  
    66Tested up to: 6.7
    77Requires PHP: 7.4
    8 Stable tag: 1.4.4
     8Stable tag: 1.4.5
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    117117== Changelog ==
    118118
     119= 1.4.5 =
     120* **Bug Fix**
     121 * Improved compatibility with PHP7+ (parse error and warnings should disappear)
     122
    119123= 1.4.4 =
    120124* **Bug Fix**
  • social-integration-for-bluesky/trunk/social-integration-for-bluesky.php

    r3240272 r3445582  
    33Plugin Name: Social Integration for BlueSky
    44Description: 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.4
     5Version: 1.4.5
    66Requires at least: 5.0
    77Requires PHP: 7.4
     
    1919}
    2020
    21 define( 'BLUESKY_PLUGIN_VERSION', '1.4.4' );
     21define( 'BLUESKY_PLUGIN_VERSION', '1.4.5' );
    2222define( 'BLUESKY_PLUGIN_FILE',  __FILE__ );
    2323define( 'BLUESKY_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.