Plugin Directory

Changeset 2887377


Ignore:
Timestamp:
03/27/2023 07:05:31 AM (3 years ago)
Author:
sendsmaily
Message:

Release 3.1.1, see readme.txt for the changelog.

Location:
smaily-for-wp
Files:
20 edited
1 copied

Legend:

Unmodified
Added
Removed
  • smaily-for-wp/tags/3.1.1/admin/partials/smaily-for-wp-admin-form.php

    r2873649 r2887377  
    6767<?php else : ?>
    6868<div id="content-advanced" class="tab-content">
    69 <?php endif; ?>">
     69<?php endif; ?>
    7070    <div class="wrap">
    7171        <label><?php echo esc_html__( 'Newsletter subscription form', 'smaily-for-wp' ); ?> <a href="#" onclick="javascript:Default.resetForm();return false;" title="<?php echo esc_html__( 'Restore original subscription form', 'smaily-for-wp' ); ?>">(<?php echo esc_html__( 'Regenerate', 'smaily-for-wp' ); ?>)</a></label>
  • smaily-for-wp/tags/3.1.1/lang/smaily-for-wp-et.po

    r2873649 r2887377  
    22msgstr ""
    33"Project-Id-Version: Smaily for WP\n"
    4 "POT-Creation-Date: 2023-03-02 15:00+0200\n"
    5 "PO-Revision-Date: 2023-03-02 15:00+0200\n"
     4"POT-Creation-Date: 2023-03-27 10:00+0300\n"
     5"PO-Revision-Date: 2023-03-27 10:00+0300\n"
    66"Last-Translator: Smaily <[email protected]>\n"
    77"Language-Team: Smaily <[email protected]>\n"
  • smaily-for-wp/tags/3.1.1/readme.txt

    r2873649 r2887377  
    44Requires PHP: 5.6
    55Requires at least: 4.0
    6 Stable tag: 3.1.0
     6Stable tag: 3.1.1
    77Tags: widget, plugin, sidebar, api, mail, email, marketing, smaily
    8 Tested up to: 6.1.1
     8Tested up to: 6.2
    99
    1010Smaily newsletter subscription plugin for WordPress
     
    7777== Changelog ==
    7878
     79= 3.1.1 =
     80- WordPress 6.2 compatibility
     81
    7982= 3.1.0 =
    8083- Basic Gutenberg blocks support
  • smaily-for-wp/tags/3.1.1/smaily-for-wp.php

    r2873649 r2887377  
    1010 * Text Domain:       smaily-for-wp
    1111 * Description:       Smaily newsletter subscription form.
    12  * Version:           3.1.0
     12 * Version:           3.1.1
    1313 * Author:            Sendsmaily LLC
    1414 * Author URI:        https://smaily.com
     
    2525 * Current plugin version.
    2626 */
    27 define( 'SMLY4WP_PLUGIN_VERSION', '3.1.0' );
     27define( 'SMLY4WP_PLUGIN_VERSION', '3.1.1' );
    2828
    2929/**
  • smaily-for-wp/tags/3.1.1/vendor/autoload.php

    r2873649 r2887377  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInit814b5d616008b0576aeb0740be7b0990::getLoader();
     25return ComposerAutoloaderInit51647f8c02733dabf2b3c873ad223d64::getLoader();
  • smaily-for-wp/tags/3.1.1/vendor/composer/InstalledVersions.php

    r2873649 r2887377  
    9999        foreach (self::getInstalled() as $installed) {
    100100            if (isset($installed['versions'][$packageName])) {
    101                 return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']);
     101                return $includeDevRequirements || !isset($installed['versions'][$packageName]['dev_requirement']) || $installed['versions'][$packageName]['dev_requirement'] === false;
    102102            }
    103103        }
     
    120120    public static function satisfies(VersionParser $parser, $packageName, $constraint)
    121121    {
    122         $constraint = $parser->parseConstraints($constraint);
     122        $constraint = $parser->parseConstraints((string) $constraint);
    123123        $provided = $parser->parseConstraints(self::getVersionRanges($packageName));
    124124
     
    329329                    $installed[] = self::$installedByVendor[$vendorDir];
    330330                } elseif (is_file($vendorDir.'/composer/installed.php')) {
    331                     $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php';
     331                    /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
     332                    $required = require $vendorDir.'/composer/installed.php';
     333                    $installed[] = self::$installedByVendor[$vendorDir] = $required;
    332334                    if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
    333335                        self::$installed = $installed[count($installed) - 1];
     
    341343            // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
    342344            if (substr(__DIR__, -8, 1) !== 'C') {
    343                 self::$installed = require __DIR__ . '/installed.php';
     345                /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
     346                $required = require __DIR__ . '/installed.php';
     347                self::$installed = $required;
    344348            } else {
    345349                self::$installed = array();
    346350            }
    347351        }
    348         $installed[] = self::$installed;
     352
     353        if (self::$installed !== array()) {
     354            $installed[] = self::$installed;
     355        }
    349356
    350357        return $installed;
  • smaily-for-wp/tags/3.1.1/vendor/composer/autoload_real.php

    r2873649 r2887377  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit814b5d616008b0576aeb0740be7b0990
     5class ComposerAutoloaderInit51647f8c02733dabf2b3c873ad223d64
    66{
    77    private static $loader;
     
    2323        }
    2424
    25         spl_autoload_register(array('ComposerAutoloaderInit814b5d616008b0576aeb0740be7b0990', 'loadClassLoader'), true, true);
     25        spl_autoload_register(array('ComposerAutoloaderInit51647f8c02733dabf2b3c873ad223d64', 'loadClassLoader'), true, true);
    2626        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    27         spl_autoload_unregister(array('ComposerAutoloaderInit814b5d616008b0576aeb0740be7b0990', 'loadClassLoader'));
     27        spl_autoload_unregister(array('ComposerAutoloaderInit51647f8c02733dabf2b3c873ad223d64', 'loadClassLoader'));
    2828
    2929        require __DIR__ . '/autoload_static.php';
    30         call_user_func(\Composer\Autoload\ComposerStaticInit814b5d616008b0576aeb0740be7b0990::getInitializer($loader));
     30        call_user_func(\Composer\Autoload\ComposerStaticInit51647f8c02733dabf2b3c873ad223d64::getInitializer($loader));
    3131
    3232        $loader->register(true);
  • smaily-for-wp/tags/3.1.1/vendor/composer/autoload_static.php

    r2873649 r2887377  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit814b5d616008b0576aeb0740be7b0990
     7class ComposerStaticInit51647f8c02733dabf2b3c873ad223d64
    88{
    99    public static $classMap = array (
     
    1414    {
    1515        return \Closure::bind(function () use ($loader) {
    16             $loader->classMap = ComposerStaticInit814b5d616008b0576aeb0740be7b0990::$classMap;
     16            $loader->classMap = ComposerStaticInit51647f8c02733dabf2b3c873ad223d64::$classMap;
    1717
    1818        }, null, ClassLoader::class);
  • smaily-for-wp/tags/3.1.1/vendor/composer/installed.php

    r2873649 r2887377  
    22    'root' => array(
    33        'name' => 'smaily/smaily_for_wp',
    4         'pretty_version' => '3.1.0',
    5         'version' => '3.1.0.0',
    6         'reference' => 'b04212fd42f202551db5ff56b280643da8a68edc',
     4        'pretty_version' => '3.1.1',
     5        'version' => '3.1.1.0',
     6        'reference' => '79692cc8c8cf433a89e432f81da233b2463a9317',
    77        'type' => 'plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'smaily/smaily_for_wp' => array(
    14             'pretty_version' => '3.1.0',
    15             'version' => '3.1.0.0',
    16             'reference' => 'b04212fd42f202551db5ff56b280643da8a68edc',
     14            'pretty_version' => '3.1.1',
     15            'version' => '3.1.1.0',
     16            'reference' => '79692cc8c8cf433a89e432f81da233b2463a9317',
    1717            'type' => 'plugin',
    1818            'install_path' => __DIR__ . '/../../',
  • smaily-for-wp/trunk/admin/partials/smaily-for-wp-admin-form.php

    r2873649 r2887377  
    6767<?php else : ?>
    6868<div id="content-advanced" class="tab-content">
    69 <?php endif; ?>">
     69<?php endif; ?>
    7070    <div class="wrap">
    7171        <label><?php echo esc_html__( 'Newsletter subscription form', 'smaily-for-wp' ); ?> <a href="#" onclick="javascript:Default.resetForm();return false;" title="<?php echo esc_html__( 'Restore original subscription form', 'smaily-for-wp' ); ?>">(<?php echo esc_html__( 'Regenerate', 'smaily-for-wp' ); ?>)</a></label>
  • smaily-for-wp/trunk/lang/smaily-for-wp-et.po

    r2873649 r2887377  
    22msgstr ""
    33"Project-Id-Version: Smaily for WP\n"
    4 "POT-Creation-Date: 2023-03-02 15:00+0200\n"
    5 "PO-Revision-Date: 2023-03-02 15:00+0200\n"
     4"POT-Creation-Date: 2023-03-27 10:00+0300\n"
     5"PO-Revision-Date: 2023-03-27 10:00+0300\n"
    66"Last-Translator: Smaily <[email protected]>\n"
    77"Language-Team: Smaily <[email protected]>\n"
  • smaily-for-wp/trunk/readme.txt

    r2873649 r2887377  
    44Requires PHP: 5.6
    55Requires at least: 4.0
    6 Stable tag: 3.1.0
     6Stable tag: 3.1.1
    77Tags: widget, plugin, sidebar, api, mail, email, marketing, smaily
    8 Tested up to: 6.1.1
     8Tested up to: 6.2
    99
    1010Smaily newsletter subscription plugin for WordPress
     
    7777== Changelog ==
    7878
     79= 3.1.1 =
     80- WordPress 6.2 compatibility
     81
    7982= 3.1.0 =
    8083- Basic Gutenberg blocks support
  • smaily-for-wp/trunk/smaily-for-wp.php

    r2873649 r2887377  
    1010 * Text Domain:       smaily-for-wp
    1111 * Description:       Smaily newsletter subscription form.
    12  * Version:           3.1.0
     12 * Version:           3.1.1
    1313 * Author:            Sendsmaily LLC
    1414 * Author URI:        https://smaily.com
     
    2525 * Current plugin version.
    2626 */
    27 define( 'SMLY4WP_PLUGIN_VERSION', '3.1.0' );
     27define( 'SMLY4WP_PLUGIN_VERSION', '3.1.1' );
    2828
    2929/**
  • smaily-for-wp/trunk/vendor/autoload.php

    r2873649 r2887377  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInit814b5d616008b0576aeb0740be7b0990::getLoader();
     25return ComposerAutoloaderInit51647f8c02733dabf2b3c873ad223d64::getLoader();
  • smaily-for-wp/trunk/vendor/composer/InstalledVersions.php

    r2873649 r2887377  
    9999        foreach (self::getInstalled() as $installed) {
    100100            if (isset($installed['versions'][$packageName])) {
    101                 return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']);
     101                return $includeDevRequirements || !isset($installed['versions'][$packageName]['dev_requirement']) || $installed['versions'][$packageName]['dev_requirement'] === false;
    102102            }
    103103        }
     
    120120    public static function satisfies(VersionParser $parser, $packageName, $constraint)
    121121    {
    122         $constraint = $parser->parseConstraints($constraint);
     122        $constraint = $parser->parseConstraints((string) $constraint);
    123123        $provided = $parser->parseConstraints(self::getVersionRanges($packageName));
    124124
     
    329329                    $installed[] = self::$installedByVendor[$vendorDir];
    330330                } elseif (is_file($vendorDir.'/composer/installed.php')) {
    331                     $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php';
     331                    /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
     332                    $required = require $vendorDir.'/composer/installed.php';
     333                    $installed[] = self::$installedByVendor[$vendorDir] = $required;
    332334                    if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
    333335                        self::$installed = $installed[count($installed) - 1];
     
    341343            // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
    342344            if (substr(__DIR__, -8, 1) !== 'C') {
    343                 self::$installed = require __DIR__ . '/installed.php';
     345                /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
     346                $required = require __DIR__ . '/installed.php';
     347                self::$installed = $required;
    344348            } else {
    345349                self::$installed = array();
    346350            }
    347351        }
    348         $installed[] = self::$installed;
     352
     353        if (self::$installed !== array()) {
     354            $installed[] = self::$installed;
     355        }
    349356
    350357        return $installed;
  • smaily-for-wp/trunk/vendor/composer/autoload_real.php

    r2873649 r2887377  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit814b5d616008b0576aeb0740be7b0990
     5class ComposerAutoloaderInit51647f8c02733dabf2b3c873ad223d64
    66{
    77    private static $loader;
     
    2323        }
    2424
    25         spl_autoload_register(array('ComposerAutoloaderInit814b5d616008b0576aeb0740be7b0990', 'loadClassLoader'), true, true);
     25        spl_autoload_register(array('ComposerAutoloaderInit51647f8c02733dabf2b3c873ad223d64', 'loadClassLoader'), true, true);
    2626        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    27         spl_autoload_unregister(array('ComposerAutoloaderInit814b5d616008b0576aeb0740be7b0990', 'loadClassLoader'));
     27        spl_autoload_unregister(array('ComposerAutoloaderInit51647f8c02733dabf2b3c873ad223d64', 'loadClassLoader'));
    2828
    2929        require __DIR__ . '/autoload_static.php';
    30         call_user_func(\Composer\Autoload\ComposerStaticInit814b5d616008b0576aeb0740be7b0990::getInitializer($loader));
     30        call_user_func(\Composer\Autoload\ComposerStaticInit51647f8c02733dabf2b3c873ad223d64::getInitializer($loader));
    3131
    3232        $loader->register(true);
  • smaily-for-wp/trunk/vendor/composer/autoload_static.php

    r2873649 r2887377  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit814b5d616008b0576aeb0740be7b0990
     7class ComposerStaticInit51647f8c02733dabf2b3c873ad223d64
    88{
    99    public static $classMap = array (
     
    1414    {
    1515        return \Closure::bind(function () use ($loader) {
    16             $loader->classMap = ComposerStaticInit814b5d616008b0576aeb0740be7b0990::$classMap;
     16            $loader->classMap = ComposerStaticInit51647f8c02733dabf2b3c873ad223d64::$classMap;
    1717
    1818        }, null, ClassLoader::class);
  • smaily-for-wp/trunk/vendor/composer/installed.php

    r2873649 r2887377  
    22    'root' => array(
    33        'name' => 'smaily/smaily_for_wp',
    4         'pretty_version' => '3.1.0',
    5         'version' => '3.1.0.0',
    6         'reference' => 'b04212fd42f202551db5ff56b280643da8a68edc',
     4        'pretty_version' => '3.1.1',
     5        'version' => '3.1.1.0',
     6        'reference' => '79692cc8c8cf433a89e432f81da233b2463a9317',
    77        'type' => 'plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'smaily/smaily_for_wp' => array(
    14             'pretty_version' => '3.1.0',
    15             'version' => '3.1.0.0',
    16             'reference' => 'b04212fd42f202551db5ff56b280643da8a68edc',
     14            'pretty_version' => '3.1.1',
     15            'version' => '3.1.1.0',
     16            'reference' => '79692cc8c8cf433a89e432f81da233b2463a9317',
    1717            'type' => 'plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.