Plugin Directory

Changeset 3452251


Ignore:
Timestamp:
02/02/2026 04:17:47 PM (8 weeks ago)
Author:
etruel
Message:

General maintenance and stability improvements.

Location:
wpematico
Files:
158 added
6 edited

Legend:

Unmodified
Added
Removed
  • wpematico/trunk/app/campaign_fetch_functions.php

    r3265951 r3452251  
    697697
    698698    public function parse_dst_image($imagen_src_real, $current_item, $campaign, $item) {
     699        //Filter before parse (just to facebook)
     700        $imagen_src_real = apply_filters('wpematico_img_src_before_parse', $imagen_src_real, $current_item, $campaign, $item);
    699701        // Decode URL to handle special characters correctly
    700702        $basename = rawurldecode(basename($imagen_src_real));
  • wpematico/trunk/app/css/wpemat_styles.css

    r3249023 r3452251  
    827827#fieldserror {
    828828    padding: 10px;
     829}
     830#fieldserror p{
     831    margin: 0;
    829832}
    830833.wpefeedlink {
  • wpematico/trunk/app/wp-backend-helpers.php

    r3296909 r3452251  
    163163        ?>
    164164        <style type="text/css">
    165             #wpematico-all-meta-box h2 {
    166                 background-color: orange;
     165            #wpematico-all-meta-box .postbox-header {
     166                background-color: #eb9600;
    167167            }
    168168            .wpematico-data-table a {
  • wpematico/trunk/app/wpematico_functions.php

    r3395091 r3452251  
    671671                add_action('admin_notices', function () use ($wpematico_admin_message) {
    672672                    //echo '<div class="error"><p>', esc_html($wpematico_admin_message), '</p></div>';
    673                     echo wp_kses_post( $wpematico_admin_message );
     673                    $allowed_html = array(
     674                        'div' => array(
     675                            'id' => array(),
     676                            'class' => array(),
     677                        ),
     678                        'p' => array(),
     679                        'b' => array(),
     680                        'strong' => array(),
     681                        'em' => array(),
     682                        'i' => array(),
     683                        'br' => array(),
     684                        'a' => array(
     685                            'href' => array(),
     686                            'target' => array(),
     687                            'rel' => array(),
     688                        ),
     689                        'button' => array(
     690                            'type' => array(),
     691                            'class' => array(),
     692                        ),
     693                        'span' => array(
     694                            'class' => array(),
     695                        ),
     696                    );
     697                    echo wp_kses( $wpematico_admin_message, $allowed_html );
    674698                });
    675699            }
  • wpematico/trunk/readme.txt

    r3407405 r3452251  
    33Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=B8V39NWK3NFQU
    44Tags: RSS,XML,rss to blog,feed to post,rss aggregator
    5 Stable tag: 2.8.14
     5Stable tag: 2.8.15
    66Tested up to: 6.9
    77Requires at least: 4.8
     
    244244> See all detailed changelog at [WPeMatico Releases](https://wpematico.com/releases/)
    245245
     246= 2.8.15 – Feb 2, 2026 =
     247> _General maintenance and stability improvements._
     248* New image processing filter for developers and advanced customizations.
     249* Fixed a styling issue in admin notices when saving settings.
     250* Minor UI and style improvements across the plugin.
     251* Improved image processing reliability when using the [Facebook Fetcher](https://etruel.com/downloads/wpematico-facebook-fetcher/) Addon (bug fix).
     252
    246253= 2.8.14 – Dec 1, 2025 =
    247 * Confirmed WordPress 6.9 compatibility.
     254Confirmed compatibility with WordPress 6.9.
    248255
    249256= 2.8.13 – Nov 13, 2025 =
     
    497504
    498505== Upgrade Notice ==
    499 Confirmed WordPress 6.9 compatibility.
     506General maintenance and stability improvements.
  • wpematico/trunk/wpematico.php

    r3407405 r3452251  
    44 * Plugin URI: https://www.wpematico.com
    55 * Description: Create posts automatically from RSS/Atom feeds organized into campaigns with multiples filters.  If you like it, please rate it 5 stars.
    6  * Version: 2.8.14
     6 * Version: 2.8.15
    77 * Author: Etruel Developments LLC
    88 * Author URI: https://etruel.com/wpematico/
     
    2828        private function setup_constants() {
    2929            if (!defined('WPEMATICO_VERSION'))
    30                 define('WPEMATICO_VERSION', '2.8.14');
     30                define('WPEMATICO_VERSION', '2.8.15');
    3131           
    3232            if (!defined('WPEMATICO_BASENAME'))
Note: See TracChangeset for help on using the changeset viewer.