Plugin Directory

Changeset 3437712


Ignore:
Timestamp:
01/12/2026 12:29:58 PM (3 months ago)
Author:
domainsupport
Message:

Tagging version 1.1.4

Location:
display-remote-posts-block
Files:
3 edited
9 copied

Legend:

Unmodified
Added
Removed
  • display-remote-posts-block/tags/1.1.4/display-remote-posts-block.php

    r3420201 r3437712  
    44 * Description: Block to display recent posts from a WordPress or Blogger blog
    55 * Author: Webd Ltd
    6  * Version: 1.1.3
     6 * Version: 1.1.4
    77 * Author URI: https://webd.uk
    88 * License: GPLv2 or later
     
    2323    class display_remote_posts_block_class {
    2424
    25         public static $version = '1.1.3';
     25        public static $version = '1.1.4';
    2626
    2727        function __construct() {
     
    702702            $host_ip = gethostbyname($parsed['host']);
    703703
     704
     705            if ($host_ip === $parsed['host']) {
     706
     707                return new WP_Error('invalid_host', __('Hostname will not resolve.', 'display-remote-posts-block'));
     708
     709            }
     710
     711
    704712            if (!filter_var($host_ip, FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE)) {
    705713
     
    732740                if (is_wp_error($response_body)) {
    733741
    734                     return $response;
     742                    return $response_body;
    735743
    736744                }
  • display-remote-posts-block/tags/1.1.4/includes/class-drpb-common.php

    r3420201 r3437712  
    11<?php
    22/*
    3  * Version: 1.4.3
     3 * Version: 1.4.5
    44 */
     5
     6
     7
     8if (!defined('ABSPATH')) {
     9    exit('This isn\'t the page you\'re looking for. Move along, move along.');
     10}
    511
    612
     
    373379            if (self::$plugin_premium_class) {
    374380
    375                 if (get_option(self::$plugin_prefix . '_purchased') && !class_exists(self::$plugin_premium_class) && get_user_meta(get_current_user_id(), self::$plugin_prefix . '-notice-dismissed', true) != self::plugin_version()) {
     381                if (
     382                    get_option(self::$plugin_prefix . '_purchased') &&
     383                    !class_exists(self::$plugin_premium_class) &&
     384                    get_user_meta(get_current_user_id(), self::$plugin_prefix . '-notice-dismissed', true) != self::plugin_version()
     385                ) {
    376386
    377387?>
     
    503513
    504514<div class="notice notice-info is-dismissible <?php echo esc_attr(self::$plugin_prefix); ?>-notice">
    505 <p><strong><?php
     515
     516    <p><strong><?php
    506517/* translators: name of the plugin */
    507518printf(esc_html(__('Thank you for using %s plugin', 'display-remote-posts-block')), esc_html(self::$plugin_name)); ?></strong></p>
     
    512523
    513524?>
    514 <p><?php esc_html_e('Funding plugins like this one with small financial contributions is essential to pay the developers to continue to do what they do. Please take a moment to give a small amount ...', 'display-remote-posts-block'); ?></p>
    515 <p><a href="<?php echo esc_url(self::upgrade_link()); ?>" title="<?php
    516 /* translators: name of the plugin */
    517 echo esc_attr(sprintf(__('Contribute to %s', 'display-remote-posts-block'), self::$plugin_name)); ?>" class="button-primary"><?php printf(esc_html(__('Contribute to %s', 'display-remote-posts-block')), esc_html(self::$plugin_name)); ?></a> <a href="#" id="<?php echo esc_attr(self::$plugin_prefix); ?>-already-paid" title="<?php echo esc_attr(__('Aleady Contributed!', 'display-remote-posts-block')); ?>" class="button-primary"><?php esc_html_e('Aleady Contributed!', 'display-remote-posts-block'); ?></a></p>
     525
     526    <p><?php esc_html_e('Funding plugins like this one with small financial contributions is essential to pay the developers to continue to do what they do. Please take a moment to give a small amount ...', 'display-remote-posts-block'); ?></p>
     527
     528    <p><a href="<?php echo esc_url(self::upgrade_link()); ?>" title="<?php
     529/* translators: name of the plugin */
     530echo esc_attr(sprintf(__('Contribute to %s', 'display-remote-posts-block'), self::$plugin_name)); ?>" class="button-primary"><?php echo esc_html(__('Buy us a coffee ☕️', 'display-remote-posts-block')); ?></a> <a href="#" id="<?php echo esc_attr(self::$plugin_prefix); ?>-already-paid" title="<?php echo esc_attr(__('Aleady Contributed!', 'display-remote-posts-block')); ?>" class="button-secondary"><?php esc_html_e('Aleady Contributed!', 'display-remote-posts-block'); ?></a></p>
     531
     532    <hr style="margin:12px 0;">
     533
     534    <p>
     535        <strong>✨ Need help with your WordPress site?</strong>
     536        🚀 Slow, want new features, or need a glow-up?
     537        <a href="https://webd.uk/services/?utm_campaign=notice&utm_term=display-remote-posts-block" class="button-secondary" style="margin-left:6px; vertical-align: middle;">Explore our services</a>
     538    </p>
     539
    518540</div>
    519541
  • display-remote-posts-block/tags/1.1.4/readme.txt

    r3420201 r3437712  
    66Tested up to: 6.9
    77Requires PHP: 5.6.3
    8 Stable tag: 1.1.3
     8Stable tag: 1.1.4
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    2222* WordPress (self hosted with Jetpack installed)
    2323* WordPress (self hosted)
    24 * Blogger
     24* Blogger - An issue with feeds.feedburner.com is currently breaking Blogger compatibility
    2525
    2626Contact us in the [Support Forum](https://wordpress.org/support/plugin/display-remote-posts-block/ "Support Forum") if you'd like us to add support for another type of blog.
     
    3535
    3636== Changelog ==
     37
     38= 1.1.4 =
     39* Fixed minor bug when retrieving remote content
    3740
    3841= 1.1.3 =
     
    8285== Upgrade Notice ==
    8386
    84 = 1.1.3 =
    85 * Fixed a bug with CSS output
     87= 1.1.4 =
     88* Fixed minor bug when retrieving remote content
  • display-remote-posts-block/trunk/display-remote-posts-block.php

    r3420201 r3437712  
    44 * Description: Block to display recent posts from a WordPress or Blogger blog
    55 * Author: Webd Ltd
    6  * Version: 1.1.3
     6 * Version: 1.1.4
    77 * Author URI: https://webd.uk
    88 * License: GPLv2 or later
     
    2323    class display_remote_posts_block_class {
    2424
    25         public static $version = '1.1.3';
     25        public static $version = '1.1.4';
    2626
    2727        function __construct() {
     
    702702            $host_ip = gethostbyname($parsed['host']);
    703703
     704
     705            if ($host_ip === $parsed['host']) {
     706
     707                return new WP_Error('invalid_host', __('Hostname will not resolve.', 'display-remote-posts-block'));
     708
     709            }
     710
     711
    704712            if (!filter_var($host_ip, FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE)) {
    705713
     
    732740                if (is_wp_error($response_body)) {
    733741
    734                     return $response;
     742                    return $response_body;
    735743
    736744                }
  • display-remote-posts-block/trunk/includes/class-drpb-common.php

    r3420201 r3437712  
    11<?php
    22/*
    3  * Version: 1.4.3
     3 * Version: 1.4.5
    44 */
     5
     6
     7
     8if (!defined('ABSPATH')) {
     9    exit('This isn\'t the page you\'re looking for. Move along, move along.');
     10}
    511
    612
     
    373379            if (self::$plugin_premium_class) {
    374380
    375                 if (get_option(self::$plugin_prefix . '_purchased') && !class_exists(self::$plugin_premium_class) && get_user_meta(get_current_user_id(), self::$plugin_prefix . '-notice-dismissed', true) != self::plugin_version()) {
     381                if (
     382                    get_option(self::$plugin_prefix . '_purchased') &&
     383                    !class_exists(self::$plugin_premium_class) &&
     384                    get_user_meta(get_current_user_id(), self::$plugin_prefix . '-notice-dismissed', true) != self::plugin_version()
     385                ) {
    376386
    377387?>
     
    503513
    504514<div class="notice notice-info is-dismissible <?php echo esc_attr(self::$plugin_prefix); ?>-notice">
    505 <p><strong><?php
     515
     516    <p><strong><?php
    506517/* translators: name of the plugin */
    507518printf(esc_html(__('Thank you for using %s plugin', 'display-remote-posts-block')), esc_html(self::$plugin_name)); ?></strong></p>
     
    512523
    513524?>
    514 <p><?php esc_html_e('Funding plugins like this one with small financial contributions is essential to pay the developers to continue to do what they do. Please take a moment to give a small amount ...', 'display-remote-posts-block'); ?></p>
    515 <p><a href="<?php echo esc_url(self::upgrade_link()); ?>" title="<?php
    516 /* translators: name of the plugin */
    517 echo esc_attr(sprintf(__('Contribute to %s', 'display-remote-posts-block'), self::$plugin_name)); ?>" class="button-primary"><?php printf(esc_html(__('Contribute to %s', 'display-remote-posts-block')), esc_html(self::$plugin_name)); ?></a> <a href="#" id="<?php echo esc_attr(self::$plugin_prefix); ?>-already-paid" title="<?php echo esc_attr(__('Aleady Contributed!', 'display-remote-posts-block')); ?>" class="button-primary"><?php esc_html_e('Aleady Contributed!', 'display-remote-posts-block'); ?></a></p>
     525
     526    <p><?php esc_html_e('Funding plugins like this one with small financial contributions is essential to pay the developers to continue to do what they do. Please take a moment to give a small amount ...', 'display-remote-posts-block'); ?></p>
     527
     528    <p><a href="<?php echo esc_url(self::upgrade_link()); ?>" title="<?php
     529/* translators: name of the plugin */
     530echo esc_attr(sprintf(__('Contribute to %s', 'display-remote-posts-block'), self::$plugin_name)); ?>" class="button-primary"><?php echo esc_html(__('Buy us a coffee ☕️', 'display-remote-posts-block')); ?></a> <a href="#" id="<?php echo esc_attr(self::$plugin_prefix); ?>-already-paid" title="<?php echo esc_attr(__('Aleady Contributed!', 'display-remote-posts-block')); ?>" class="button-secondary"><?php esc_html_e('Aleady Contributed!', 'display-remote-posts-block'); ?></a></p>
     531
     532    <hr style="margin:12px 0;">
     533
     534    <p>
     535        <strong>✨ Need help with your WordPress site?</strong>
     536        🚀 Slow, want new features, or need a glow-up?
     537        <a href="https://webd.uk/services/?utm_campaign=notice&utm_term=display-remote-posts-block" class="button-secondary" style="margin-left:6px; vertical-align: middle;">Explore our services</a>
     538    </p>
     539
    518540</div>
    519541
  • display-remote-posts-block/trunk/readme.txt

    r3420201 r3437712  
    66Tested up to: 6.9
    77Requires PHP: 5.6.3
    8 Stable tag: 1.1.3
     8Stable tag: 1.1.4
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    2222* WordPress (self hosted with Jetpack installed)
    2323* WordPress (self hosted)
    24 * Blogger
     24* Blogger - An issue with feeds.feedburner.com is currently breaking Blogger compatibility
    2525
    2626Contact us in the [Support Forum](https://wordpress.org/support/plugin/display-remote-posts-block/ "Support Forum") if you'd like us to add support for another type of blog.
     
    3535
    3636== Changelog ==
     37
     38= 1.1.4 =
     39* Fixed minor bug when retrieving remote content
    3740
    3841= 1.1.3 =
     
    8285== Upgrade Notice ==
    8386
    84 = 1.1.3 =
    85 * Fixed a bug with CSS output
     87= 1.1.4 =
     88* Fixed minor bug when retrieving remote content
Note: See TracChangeset for help on using the changeset viewer.