Changeset 2887377
- Timestamp:
- 03/27/2023 07:05:31 AM (3 years ago)
- Location:
- smaily-for-wp
- Files:
-
- 20 edited
- 1 copied
-
tags/3.1.1 (copied) (copied from smaily-for-wp/trunk)
-
tags/3.1.1/admin/partials/smaily-for-wp-admin-form.php (modified) (1 diff)
-
tags/3.1.1/lang/smaily-for-wp-et.mo (modified) (previous)
-
tags/3.1.1/lang/smaily-for-wp-et.po (modified) (1 diff)
-
tags/3.1.1/readme.txt (modified) (2 diffs)
-
tags/3.1.1/smaily-for-wp.php (modified) (2 diffs)
-
tags/3.1.1/vendor/autoload.php (modified) (1 diff)
-
tags/3.1.1/vendor/composer/InstalledVersions.php (modified) (4 diffs)
-
tags/3.1.1/vendor/composer/autoload_real.php (modified) (2 diffs)
-
tags/3.1.1/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/3.1.1/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/admin/partials/smaily-for-wp-admin-form.php (modified) (1 diff)
-
trunk/lang/smaily-for-wp-et.mo (modified) (previous)
-
trunk/lang/smaily-for-wp-et.po (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/smaily-for-wp.php (modified) (2 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/InstalledVersions.php (modified) (4 diffs)
-
trunk/vendor/composer/autoload_real.php (modified) (2 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
smaily-for-wp/tags/3.1.1/admin/partials/smaily-for-wp-admin-form.php
r2873649 r2887377 67 67 <?php else : ?> 68 68 <div id="content-advanced" class="tab-content"> 69 <?php endif; ?> ">69 <?php endif; ?> 70 70 <div class="wrap"> 71 71 <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 2 2 msgstr "" 3 3 "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" 6 6 "Last-Translator: Smaily <[email protected]>\n" 7 7 "Language-Team: Smaily <[email protected]>\n" -
smaily-for-wp/tags/3.1.1/readme.txt
r2873649 r2887377 4 4 Requires PHP: 5.6 5 5 Requires at least: 4.0 6 Stable tag: 3.1. 06 Stable tag: 3.1.1 7 7 Tags: widget, plugin, sidebar, api, mail, email, marketing, smaily 8 Tested up to: 6. 1.18 Tested up to: 6.2 9 9 10 10 Smaily newsletter subscription plugin for WordPress … … 77 77 == Changelog == 78 78 79 = 3.1.1 = 80 - WordPress 6.2 compatibility 81 79 82 = 3.1.0 = 80 83 - Basic Gutenberg blocks support -
smaily-for-wp/tags/3.1.1/smaily-for-wp.php
r2873649 r2887377 10 10 * Text Domain: smaily-for-wp 11 11 * Description: Smaily newsletter subscription form. 12 * Version: 3.1. 012 * Version: 3.1.1 13 13 * Author: Sendsmaily LLC 14 14 * Author URI: https://smaily.com … … 25 25 * Current plugin version. 26 26 */ 27 define( 'SMLY4WP_PLUGIN_VERSION', '3.1. 0' );27 define( 'SMLY4WP_PLUGIN_VERSION', '3.1.1' ); 28 28 29 29 /** -
smaily-for-wp/tags/3.1.1/vendor/autoload.php
r2873649 r2887377 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 814b5d616008b0576aeb0740be7b0990::getLoader();25 return ComposerAutoloaderInit51647f8c02733dabf2b3c873ad223d64::getLoader(); -
smaily-for-wp/tags/3.1.1/vendor/composer/InstalledVersions.php
r2873649 r2887377 99 99 foreach (self::getInstalled() as $installed) { 100 100 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; 102 102 } 103 103 } … … 120 120 public static function satisfies(VersionParser $parser, $packageName, $constraint) 121 121 { 122 $constraint = $parser->parseConstraints( $constraint);122 $constraint = $parser->parseConstraints((string) $constraint); 123 123 $provided = $parser->parseConstraints(self::getVersionRanges($packageName)); 124 124 … … 329 329 $installed[] = self::$installedByVendor[$vendorDir]; 330 330 } 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; 332 334 if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) { 333 335 self::$installed = $installed[count($installed) - 1]; … … 341 343 // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 342 344 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; 344 348 } else { 345 349 self::$installed = array(); 346 350 } 347 351 } 348 $installed[] = self::$installed; 352 353 if (self::$installed !== array()) { 354 $installed[] = self::$installed; 355 } 349 356 350 357 return $installed; -
smaily-for-wp/tags/3.1.1/vendor/composer/autoload_real.php
r2873649 r2887377 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 814b5d616008b0576aeb0740be7b09905 class ComposerAutoloaderInit51647f8c02733dabf2b3c873ad223d64 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit 814b5d616008b0576aeb0740be7b0990', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInit51647f8c02733dabf2b3c873ad223d64', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 27 spl_autoload_unregister(array('ComposerAutoloaderInit 814b5d616008b0576aeb0740be7b0990', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInit51647f8c02733dabf2b3c873ad223d64', 'loadClassLoader')); 28 28 29 29 require __DIR__ . '/autoload_static.php'; 30 call_user_func(\Composer\Autoload\ComposerStaticInit 814b5d616008b0576aeb0740be7b0990::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInit51647f8c02733dabf2b3c873ad223d64::getInitializer($loader)); 31 31 32 32 $loader->register(true); -
smaily-for-wp/tags/3.1.1/vendor/composer/autoload_static.php
r2873649 r2887377 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 814b5d616008b0576aeb0740be7b09907 class ComposerStaticInit51647f8c02733dabf2b3c873ad223d64 8 8 { 9 9 public static $classMap = array ( … … 14 14 { 15 15 return \Closure::bind(function () use ($loader) { 16 $loader->classMap = ComposerStaticInit 814b5d616008b0576aeb0740be7b0990::$classMap;16 $loader->classMap = ComposerStaticInit51647f8c02733dabf2b3c873ad223d64::$classMap; 17 17 18 18 }, null, ClassLoader::class); -
smaily-for-wp/tags/3.1.1/vendor/composer/installed.php
r2873649 r2887377 2 2 'root' => array( 3 3 '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', 7 7 'type' => 'plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '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', 17 17 'type' => 'plugin', 18 18 'install_path' => __DIR__ . '/../../', -
smaily-for-wp/trunk/admin/partials/smaily-for-wp-admin-form.php
r2873649 r2887377 67 67 <?php else : ?> 68 68 <div id="content-advanced" class="tab-content"> 69 <?php endif; ?> ">69 <?php endif; ?> 70 70 <div class="wrap"> 71 71 <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 2 2 msgstr "" 3 3 "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" 6 6 "Last-Translator: Smaily <[email protected]>\n" 7 7 "Language-Team: Smaily <[email protected]>\n" -
smaily-for-wp/trunk/readme.txt
r2873649 r2887377 4 4 Requires PHP: 5.6 5 5 Requires at least: 4.0 6 Stable tag: 3.1. 06 Stable tag: 3.1.1 7 7 Tags: widget, plugin, sidebar, api, mail, email, marketing, smaily 8 Tested up to: 6. 1.18 Tested up to: 6.2 9 9 10 10 Smaily newsletter subscription plugin for WordPress … … 77 77 == Changelog == 78 78 79 = 3.1.1 = 80 - WordPress 6.2 compatibility 81 79 82 = 3.1.0 = 80 83 - Basic Gutenberg blocks support -
smaily-for-wp/trunk/smaily-for-wp.php
r2873649 r2887377 10 10 * Text Domain: smaily-for-wp 11 11 * Description: Smaily newsletter subscription form. 12 * Version: 3.1. 012 * Version: 3.1.1 13 13 * Author: Sendsmaily LLC 14 14 * Author URI: https://smaily.com … … 25 25 * Current plugin version. 26 26 */ 27 define( 'SMLY4WP_PLUGIN_VERSION', '3.1. 0' );27 define( 'SMLY4WP_PLUGIN_VERSION', '3.1.1' ); 28 28 29 29 /** -
smaily-for-wp/trunk/vendor/autoload.php
r2873649 r2887377 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 814b5d616008b0576aeb0740be7b0990::getLoader();25 return ComposerAutoloaderInit51647f8c02733dabf2b3c873ad223d64::getLoader(); -
smaily-for-wp/trunk/vendor/composer/InstalledVersions.php
r2873649 r2887377 99 99 foreach (self::getInstalled() as $installed) { 100 100 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; 102 102 } 103 103 } … … 120 120 public static function satisfies(VersionParser $parser, $packageName, $constraint) 121 121 { 122 $constraint = $parser->parseConstraints( $constraint);122 $constraint = $parser->parseConstraints((string) $constraint); 123 123 $provided = $parser->parseConstraints(self::getVersionRanges($packageName)); 124 124 … … 329 329 $installed[] = self::$installedByVendor[$vendorDir]; 330 330 } 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; 332 334 if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) { 333 335 self::$installed = $installed[count($installed) - 1]; … … 341 343 // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 342 344 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; 344 348 } else { 345 349 self::$installed = array(); 346 350 } 347 351 } 348 $installed[] = self::$installed; 352 353 if (self::$installed !== array()) { 354 $installed[] = self::$installed; 355 } 349 356 350 357 return $installed; -
smaily-for-wp/trunk/vendor/composer/autoload_real.php
r2873649 r2887377 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 814b5d616008b0576aeb0740be7b09905 class ComposerAutoloaderInit51647f8c02733dabf2b3c873ad223d64 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit 814b5d616008b0576aeb0740be7b0990', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInit51647f8c02733dabf2b3c873ad223d64', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 27 spl_autoload_unregister(array('ComposerAutoloaderInit 814b5d616008b0576aeb0740be7b0990', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInit51647f8c02733dabf2b3c873ad223d64', 'loadClassLoader')); 28 28 29 29 require __DIR__ . '/autoload_static.php'; 30 call_user_func(\Composer\Autoload\ComposerStaticInit 814b5d616008b0576aeb0740be7b0990::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInit51647f8c02733dabf2b3c873ad223d64::getInitializer($loader)); 31 31 32 32 $loader->register(true); -
smaily-for-wp/trunk/vendor/composer/autoload_static.php
r2873649 r2887377 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 814b5d616008b0576aeb0740be7b09907 class ComposerStaticInit51647f8c02733dabf2b3c873ad223d64 8 8 { 9 9 public static $classMap = array ( … … 14 14 { 15 15 return \Closure::bind(function () use ($loader) { 16 $loader->classMap = ComposerStaticInit 814b5d616008b0576aeb0740be7b0990::$classMap;16 $loader->classMap = ComposerStaticInit51647f8c02733dabf2b3c873ad223d64::$classMap; 17 17 18 18 }, null, ClassLoader::class); -
smaily-for-wp/trunk/vendor/composer/installed.php
r2873649 r2887377 2 2 'root' => array( 3 3 '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', 7 7 'type' => 'plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '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', 17 17 'type' => 'plugin', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.