Plugin Directory

Changeset 3422149


Ignore:
Timestamp:
12/17/2025 05:33:27 PM (3 months ago)
Author:
forgesmith
Message:

1.10.6 - fix build compilation error;

Location:
refoundry-blocks
Files:
7 edited
56 copied

Legend:

Unmodified
Added
Removed
  • refoundry-blocks/tags/1.10.6/Readme.md

    r3417580 r3422149  
    33Tags: gutenberg, blocks
    44Tested up to: 6.8
    5 Stable tag: 1.10.5
     5Stable tag: 1.10.6
    66License: GPLv2 or later
    77License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    192192
    193193== Changelog ==
     194= 1.10.6 =
     195* Fix compilation error in free version;
     196
    194197= 1.10.5 =
    195198* Fix issue with disappearing block toolbar for default paragraph blocks;
  • refoundry-blocks/tags/1.10.6/foundry.php

    r3417580 r3422149  
    44Plugin URI: https://www.forgeandsmith.com
    55Description: A low-code, themeless visual site builder that makes Gutenberg better
    6 Version: 1.10.5
     6Version: 1.10.6
    77Requires at least: 6.6
    88Tested up to: 6.7
     
    1111Author URI: https://refoundry.io
    1212Text Domain: refoundry
    13 Stable tag: 1.10.5
     13Stable tag: 1.10.6
    1414License: GPLv2 or later
    1515License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1616*/
    1717
    18 const REFOUNDRY_PLUGIN_VERSION = '1.10.5';
     18const REFOUNDRY_PLUGIN_VERSION = '1.10.6';
    1919// Exit if accessed directly.
    2020if ( ! defined( 'ABSPATH' ) ) {
  • refoundry-blocks/tags/1.10.6/vendor/autoload.php

    r3417580 r3422149  
    2020require_once __DIR__ . '/composer/autoload_real.php';
    2121
    22 return ComposerAutoloaderInit98ec5193cd6cbf8e7539ff4da42fb849::getLoader();
     22return ComposerAutoloaderInit8bf46b36718e60ccecb50952ae952997::getLoader();
  • refoundry-blocks/tags/1.10.6/vendor/composer/autoload_classmap.php

    r3417580 r3422149  
    88return array(
    99    'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
    10     'PharIo\\Executor\\Exception' => $vendorDir . '/phar-io/executor/src/ExecutorException.php',
    11     'PharIo\\Executor\\Executor' => $vendorDir . '/phar-io/executor/src/Executor.php',
    12     'PharIo\\Executor\\ExecutorResult' => $vendorDir . '/phar-io/executor/src/ExecutorResult.php',
    13     'PharIo\\FileSystem\\Directory' => $vendorDir . '/phar-io/filesystem/src/Directory.php',
    14     'PharIo\\FileSystem\\DirectoryException' => $vendorDir . '/phar-io/filesystem/src/DirectoryException.php',
    15     'PharIo\\FileSystem\\Exception' => $vendorDir . '/phar-io/filesystem/src/Exception.php',
    16     'PharIo\\FileSystem\\File' => $vendorDir . '/phar-io/filesystem/src/File.php',
    17     'PharIo\\FileSystem\\Filename' => $vendorDir . '/phar-io/filesystem/src/Filename.php',
    18     'PharIo\\FileSystem\\FilenameException' => $vendorDir . '/phar-io/filesystem/src/FilenameException.php',
    19     'PharIo\\FileSystem\\LastModifiedDate' => $vendorDir . '/phar-io/filesystem/src/LastModifiedDate.php',
    20     'PharIo\\GnuPG\\ErrorStrings' => $vendorDir . '/phar-io/gnupg/src/ErrorStrings.php',
    21     'PharIo\\GnuPG\\Exception' => $vendorDir . '/phar-io/gnupg/src/Exception.php',
    22     'PharIo\\GnuPG\\Factory' => $vendorDir . '/phar-io/gnupg/src/Factory.php',
    23     'PharIo\\GnuPG\\GnuPG' => $vendorDir . '/phar-io/gnupg/src/GnuPG.php',
    2410);
  • refoundry-blocks/tags/1.10.6/vendor/composer/autoload_psr4.php

    r3417580 r3422149  
    77
    88return array(
    9     'phpDocumentor\\' => array($vendorDir . '/phpdocumentor/shim/src'),
    10     'PharIo\\ComposerDistributor\\' => array($vendorDir . '/phar-io/composer-distributor/src'),
    119    'ForgeSmith\\Blocks\\' => array($baseDir . '/src/blocks'),
    1210    'ForgeSmith\\' => array($baseDir . '/lib'),
  • refoundry-blocks/tags/1.10.6/vendor/composer/autoload_real.php

    r3417580 r3422149  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit98ec5193cd6cbf8e7539ff4da42fb849
     5class ComposerAutoloaderInit8bf46b36718e60ccecb50952ae952997
    66{
    77    private static $loader;
     
    2323        }
    2424
    25         require __DIR__ . '/platform_check.php';
    26 
    27         spl_autoload_register(array('ComposerAutoloaderInit98ec5193cd6cbf8e7539ff4da42fb849', 'loadClassLoader'), true, true);
     25        spl_autoload_register(array('ComposerAutoloaderInit8bf46b36718e60ccecb50952ae952997', 'loadClassLoader'), true, true);
    2826        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit98ec5193cd6cbf8e7539ff4da42fb849', 'loadClassLoader'));
     27        spl_autoload_unregister(array('ComposerAutoloaderInit8bf46b36718e60ccecb50952ae952997', 'loadClassLoader'));
    3028
    3129        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit98ec5193cd6cbf8e7539ff4da42fb849::getInitializer($loader));
     30        call_user_func(\Composer\Autoload\ComposerStaticInit8bf46b36718e60ccecb50952ae952997::getInitializer($loader));
    3331
    3432        $loader->register(true);
  • refoundry-blocks/tags/1.10.6/vendor/composer/autoload_static.php

    r3417580 r3422149  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit98ec5193cd6cbf8e7539ff4da42fb849
     7class ComposerStaticInit8bf46b36718e60ccecb50952ae952997
    88{
    99    public static $prefixLengthsPsr4 = array (
    10         'p' =>
    11         array (
    12             'phpDocumentor\\' => 14,
    13         ),
    14         'P' =>
    15         array (
    16             'PharIo\\ComposerDistributor\\' => 27,
    17         ),
    1810        'F' =>
    1911        array (
     
    2416
    2517    public static $prefixDirsPsr4 = array (
    26         'phpDocumentor\\' =>
    27         array (
    28             0 => __DIR__ . '/..' . '/phpdocumentor/shim/src',
    29         ),
    30         'PharIo\\ComposerDistributor\\' =>
    31         array (
    32             0 => __DIR__ . '/..' . '/phar-io/composer-distributor/src',
    33         ),
    3418        'ForgeSmith\\Blocks\\' =>
    3519        array (
     
    4428    public static $classMap = array (
    4529        'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
    46         'PharIo\\Executor\\Exception' => __DIR__ . '/..' . '/phar-io/executor/src/ExecutorException.php',
    47         'PharIo\\Executor\\Executor' => __DIR__ . '/..' . '/phar-io/executor/src/Executor.php',
    48         'PharIo\\Executor\\ExecutorResult' => __DIR__ . '/..' . '/phar-io/executor/src/ExecutorResult.php',
    49         'PharIo\\FileSystem\\Directory' => __DIR__ . '/..' . '/phar-io/filesystem/src/Directory.php',
    50         'PharIo\\FileSystem\\DirectoryException' => __DIR__ . '/..' . '/phar-io/filesystem/src/DirectoryException.php',
    51         'PharIo\\FileSystem\\Exception' => __DIR__ . '/..' . '/phar-io/filesystem/src/Exception.php',
    52         'PharIo\\FileSystem\\File' => __DIR__ . '/..' . '/phar-io/filesystem/src/File.php',
    53         'PharIo\\FileSystem\\Filename' => __DIR__ . '/..' . '/phar-io/filesystem/src/Filename.php',
    54         'PharIo\\FileSystem\\FilenameException' => __DIR__ . '/..' . '/phar-io/filesystem/src/FilenameException.php',
    55         'PharIo\\FileSystem\\LastModifiedDate' => __DIR__ . '/..' . '/phar-io/filesystem/src/LastModifiedDate.php',
    56         'PharIo\\GnuPG\\ErrorStrings' => __DIR__ . '/..' . '/phar-io/gnupg/src/ErrorStrings.php',
    57         'PharIo\\GnuPG\\Exception' => __DIR__ . '/..' . '/phar-io/gnupg/src/Exception.php',
    58         'PharIo\\GnuPG\\Factory' => __DIR__ . '/..' . '/phar-io/gnupg/src/Factory.php',
    59         'PharIo\\GnuPG\\GnuPG' => __DIR__ . '/..' . '/phar-io/gnupg/src/GnuPG.php',
    6030    );
    6131
     
    6333    {
    6434        return \Closure::bind(function () use ($loader) {
    65             $loader->prefixLengthsPsr4 = ComposerStaticInit98ec5193cd6cbf8e7539ff4da42fb849::$prefixLengthsPsr4;
    66             $loader->prefixDirsPsr4 = ComposerStaticInit98ec5193cd6cbf8e7539ff4da42fb849::$prefixDirsPsr4;
    67             $loader->classMap = ComposerStaticInit98ec5193cd6cbf8e7539ff4da42fb849::$classMap;
     35            $loader->prefixLengthsPsr4 = ComposerStaticInit8bf46b36718e60ccecb50952ae952997::$prefixLengthsPsr4;
     36            $loader->prefixDirsPsr4 = ComposerStaticInit8bf46b36718e60ccecb50952ae952997::$prefixDirsPsr4;
     37            $loader->classMap = ComposerStaticInit8bf46b36718e60ccecb50952ae952997::$classMap;
    6838
    6939        }, null, ClassLoader::class);
  • refoundry-blocks/trunk/Readme.md

    r3417580 r3422149  
    33Tags: gutenberg, blocks
    44Tested up to: 6.8
    5 Stable tag: 1.10.5
     5Stable tag: 1.10.6
    66License: GPLv2 or later
    77License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    192192
    193193== Changelog ==
     194= 1.10.6 =
     195* Fix compilation error in free version;
     196
    194197= 1.10.5 =
    195198* Fix issue with disappearing block toolbar for default paragraph blocks;
  • refoundry-blocks/trunk/foundry.php

    r3417580 r3422149  
    44Plugin URI: https://www.forgeandsmith.com
    55Description: A low-code, themeless visual site builder that makes Gutenberg better
    6 Version: 1.10.5
     6Version: 1.10.6
    77Requires at least: 6.6
    88Tested up to: 6.7
     
    1111Author URI: https://refoundry.io
    1212Text Domain: refoundry
    13 Stable tag: 1.10.5
     13Stable tag: 1.10.6
    1414License: GPLv2 or later
    1515License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1616*/
    1717
    18 const REFOUNDRY_PLUGIN_VERSION = '1.10.5';
     18const REFOUNDRY_PLUGIN_VERSION = '1.10.6';
    1919// Exit if accessed directly.
    2020if ( ! defined( 'ABSPATH' ) ) {
  • refoundry-blocks/trunk/vendor/autoload.php

    r3417580 r3422149  
    2020require_once __DIR__ . '/composer/autoload_real.php';
    2121
    22 return ComposerAutoloaderInit98ec5193cd6cbf8e7539ff4da42fb849::getLoader();
     22return ComposerAutoloaderInit8bf46b36718e60ccecb50952ae952997::getLoader();
  • refoundry-blocks/trunk/vendor/composer/autoload_classmap.php

    r3417580 r3422149  
    88return array(
    99    'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
    10     'PharIo\\Executor\\Exception' => $vendorDir . '/phar-io/executor/src/ExecutorException.php',
    11     'PharIo\\Executor\\Executor' => $vendorDir . '/phar-io/executor/src/Executor.php',
    12     'PharIo\\Executor\\ExecutorResult' => $vendorDir . '/phar-io/executor/src/ExecutorResult.php',
    13     'PharIo\\FileSystem\\Directory' => $vendorDir . '/phar-io/filesystem/src/Directory.php',
    14     'PharIo\\FileSystem\\DirectoryException' => $vendorDir . '/phar-io/filesystem/src/DirectoryException.php',
    15     'PharIo\\FileSystem\\Exception' => $vendorDir . '/phar-io/filesystem/src/Exception.php',
    16     'PharIo\\FileSystem\\File' => $vendorDir . '/phar-io/filesystem/src/File.php',
    17     'PharIo\\FileSystem\\Filename' => $vendorDir . '/phar-io/filesystem/src/Filename.php',
    18     'PharIo\\FileSystem\\FilenameException' => $vendorDir . '/phar-io/filesystem/src/FilenameException.php',
    19     'PharIo\\FileSystem\\LastModifiedDate' => $vendorDir . '/phar-io/filesystem/src/LastModifiedDate.php',
    20     'PharIo\\GnuPG\\ErrorStrings' => $vendorDir . '/phar-io/gnupg/src/ErrorStrings.php',
    21     'PharIo\\GnuPG\\Exception' => $vendorDir . '/phar-io/gnupg/src/Exception.php',
    22     'PharIo\\GnuPG\\Factory' => $vendorDir . '/phar-io/gnupg/src/Factory.php',
    23     'PharIo\\GnuPG\\GnuPG' => $vendorDir . '/phar-io/gnupg/src/GnuPG.php',
    2410);
  • refoundry-blocks/trunk/vendor/composer/autoload_psr4.php

    r3417580 r3422149  
    77
    88return array(
    9     'phpDocumentor\\' => array($vendorDir . '/phpdocumentor/shim/src'),
    10     'PharIo\\ComposerDistributor\\' => array($vendorDir . '/phar-io/composer-distributor/src'),
    119    'ForgeSmith\\Blocks\\' => array($baseDir . '/src/blocks'),
    1210    'ForgeSmith\\' => array($baseDir . '/lib'),
  • refoundry-blocks/trunk/vendor/composer/autoload_real.php

    r3417580 r3422149  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit98ec5193cd6cbf8e7539ff4da42fb849
     5class ComposerAutoloaderInit8bf46b36718e60ccecb50952ae952997
    66{
    77    private static $loader;
     
    2323        }
    2424
    25         require __DIR__ . '/platform_check.php';
    26 
    27         spl_autoload_register(array('ComposerAutoloaderInit98ec5193cd6cbf8e7539ff4da42fb849', 'loadClassLoader'), true, true);
     25        spl_autoload_register(array('ComposerAutoloaderInit8bf46b36718e60ccecb50952ae952997', 'loadClassLoader'), true, true);
    2826        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit98ec5193cd6cbf8e7539ff4da42fb849', 'loadClassLoader'));
     27        spl_autoload_unregister(array('ComposerAutoloaderInit8bf46b36718e60ccecb50952ae952997', 'loadClassLoader'));
    3028
    3129        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit98ec5193cd6cbf8e7539ff4da42fb849::getInitializer($loader));
     30        call_user_func(\Composer\Autoload\ComposerStaticInit8bf46b36718e60ccecb50952ae952997::getInitializer($loader));
    3331
    3432        $loader->register(true);
  • refoundry-blocks/trunk/vendor/composer/autoload_static.php

    r3417580 r3422149  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit98ec5193cd6cbf8e7539ff4da42fb849
     7class ComposerStaticInit8bf46b36718e60ccecb50952ae952997
    88{
    99    public static $prefixLengthsPsr4 = array (
    10         'p' =>
    11         array (
    12             'phpDocumentor\\' => 14,
    13         ),
    14         'P' =>
    15         array (
    16             'PharIo\\ComposerDistributor\\' => 27,
    17         ),
    1810        'F' =>
    1911        array (
     
    2416
    2517    public static $prefixDirsPsr4 = array (
    26         'phpDocumentor\\' =>
    27         array (
    28             0 => __DIR__ . '/..' . '/phpdocumentor/shim/src',
    29         ),
    30         'PharIo\\ComposerDistributor\\' =>
    31         array (
    32             0 => __DIR__ . '/..' . '/phar-io/composer-distributor/src',
    33         ),
    3418        'ForgeSmith\\Blocks\\' =>
    3519        array (
     
    4428    public static $classMap = array (
    4529        'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
    46         'PharIo\\Executor\\Exception' => __DIR__ . '/..' . '/phar-io/executor/src/ExecutorException.php',
    47         'PharIo\\Executor\\Executor' => __DIR__ . '/..' . '/phar-io/executor/src/Executor.php',
    48         'PharIo\\Executor\\ExecutorResult' => __DIR__ . '/..' . '/phar-io/executor/src/ExecutorResult.php',
    49         'PharIo\\FileSystem\\Directory' => __DIR__ . '/..' . '/phar-io/filesystem/src/Directory.php',
    50         'PharIo\\FileSystem\\DirectoryException' => __DIR__ . '/..' . '/phar-io/filesystem/src/DirectoryException.php',
    51         'PharIo\\FileSystem\\Exception' => __DIR__ . '/..' . '/phar-io/filesystem/src/Exception.php',
    52         'PharIo\\FileSystem\\File' => __DIR__ . '/..' . '/phar-io/filesystem/src/File.php',
    53         'PharIo\\FileSystem\\Filename' => __DIR__ . '/..' . '/phar-io/filesystem/src/Filename.php',
    54         'PharIo\\FileSystem\\FilenameException' => __DIR__ . '/..' . '/phar-io/filesystem/src/FilenameException.php',
    55         'PharIo\\FileSystem\\LastModifiedDate' => __DIR__ . '/..' . '/phar-io/filesystem/src/LastModifiedDate.php',
    56         'PharIo\\GnuPG\\ErrorStrings' => __DIR__ . '/..' . '/phar-io/gnupg/src/ErrorStrings.php',
    57         'PharIo\\GnuPG\\Exception' => __DIR__ . '/..' . '/phar-io/gnupg/src/Exception.php',
    58         'PharIo\\GnuPG\\Factory' => __DIR__ . '/..' . '/phar-io/gnupg/src/Factory.php',
    59         'PharIo\\GnuPG\\GnuPG' => __DIR__ . '/..' . '/phar-io/gnupg/src/GnuPG.php',
    6030    );
    6131
     
    6333    {
    6434        return \Closure::bind(function () use ($loader) {
    65             $loader->prefixLengthsPsr4 = ComposerStaticInit98ec5193cd6cbf8e7539ff4da42fb849::$prefixLengthsPsr4;
    66             $loader->prefixDirsPsr4 = ComposerStaticInit98ec5193cd6cbf8e7539ff4da42fb849::$prefixDirsPsr4;
    67             $loader->classMap = ComposerStaticInit98ec5193cd6cbf8e7539ff4da42fb849::$classMap;
     35            $loader->prefixLengthsPsr4 = ComposerStaticInit8bf46b36718e60ccecb50952ae952997::$prefixLengthsPsr4;
     36            $loader->prefixDirsPsr4 = ComposerStaticInit8bf46b36718e60ccecb50952ae952997::$prefixDirsPsr4;
     37            $loader->classMap = ComposerStaticInit8bf46b36718e60ccecb50952ae952997::$classMap;
    6838
    6939        }, null, ClassLoader::class);
Note: See TracChangeset for help on using the changeset viewer.