Plugin Directory

Changeset 3375462


Ignore:
Timestamp:
10/09/2025 06:00:14 AM (6 months ago)
Author:
sendsmaily
Message:

Release 1.3.3, see readme.txt for the changelog.

Location:
smaily-connect
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • smaily-connect/tags/1.3.3/integrations/elementor/newsletter-widget.class.php

    r3283436 r3375462  
    7979            __( 'smaily', 'smaily-connect' ),
    8080        );
     81    }
     82
     83    /**
     84     * Whether the element returns dynamic content.
     85     * Set to determine whether to cache the element output or not.
     86     * @return bool
     87     */
     88    protected function is_dynamic_content(): bool {
     89        return false;
    8190    }
    8291
     
    319328     */
    320329    private function listAutoresponders() {
     330        // Frontend uses saved autoresponder_id. Autoresponders list is only needed
     331        // in admin where the widget is configured.
     332        if ( ! is_admin() ) {
     333            return array();
     334        }
     335
    321336        if ( ! $this->autoresponders ) {
    322337            $autoresponders = Helper::get_autoresponders_list( $this->get_options() );
  • smaily-connect/tags/1.3.3/readme.txt

    r3363656 r3375462  
    66Tested up to: 6.8
    77WC tested up to: 9.6.1
    8 Stable tag: 1.3.2
     8Stable tag: 1.3.3
    99License: GPLv3 or later
    1010
     
    6161== Changelog ==
    6262
     63= 1.3.3 =
     64
     65Improved the Elementor widget performance by reducing the number of API calls made during the rendering process.
     66
     67= 1.3.2 =
     68
     69Fixed a bug where the RSS-feed `pubDate` was not correctly formatted, which could lead to issues while importing sorted products into Smaily templates. Now the `pubDate` is formatted according to the RFC 822 standard, ensuring compatibility with RSS parsers.
     70
    6371= 1.3.1 =
    6472
  • smaily-connect/tags/1.3.3/smaily-connect.php

    r3363656 r3375462  
    1212 * Plugin URI:        https://smaily.com/help/user-manual/smaily-connect-for-wordpress/
    1313 * Text Domain:       smaily-connect
    14  * Version:           1.3.2
     14 * Version:           1.3.3
    1515*/
    1616
     
    2323 * Current plugin version.
    2424 */
    25 define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.3.2' );
     25define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.3.3' );
    2626
    2727/**
  • smaily-connect/trunk/integrations/elementor/newsletter-widget.class.php

    r3283436 r3375462  
    7979            __( 'smaily', 'smaily-connect' ),
    8080        );
     81    }
     82
     83    /**
     84     * Whether the element returns dynamic content.
     85     * Set to determine whether to cache the element output or not.
     86     * @return bool
     87     */
     88    protected function is_dynamic_content(): bool {
     89        return false;
    8190    }
    8291
     
    319328     */
    320329    private function listAutoresponders() {
     330        // Frontend uses saved autoresponder_id. Autoresponders list is only needed
     331        // in admin where the widget is configured.
     332        if ( ! is_admin() ) {
     333            return array();
     334        }
     335
    321336        if ( ! $this->autoresponders ) {
    322337            $autoresponders = Helper::get_autoresponders_list( $this->get_options() );
  • smaily-connect/trunk/readme.txt

    r3363656 r3375462  
    66Tested up to: 6.8
    77WC tested up to: 9.6.1
    8 Stable tag: 1.3.2
     8Stable tag: 1.3.3
    99License: GPLv3 or later
    1010
     
    6161== Changelog ==
    6262
     63= 1.3.3 =
     64
     65Improved the Elementor widget performance by reducing the number of API calls made during the rendering process.
     66
     67= 1.3.2 =
     68
     69Fixed a bug where the RSS-feed `pubDate` was not correctly formatted, which could lead to issues while importing sorted products into Smaily templates. Now the `pubDate` is formatted according to the RFC 822 standard, ensuring compatibility with RSS parsers.
     70
    6371= 1.3.1 =
    6472
  • smaily-connect/trunk/smaily-connect.php

    r3363656 r3375462  
    1212 * Plugin URI:        https://smaily.com/help/user-manual/smaily-connect-for-wordpress/
    1313 * Text Domain:       smaily-connect
    14  * Version:           1.3.2
     14 * Version:           1.3.3
    1515*/
    1616
     
    2323 * Current plugin version.
    2424 */
    25 define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.3.2' );
     25define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.3.3' );
    2626
    2727/**
Note: See TracChangeset for help on using the changeset viewer.