Plugin Directory

Changeset 2779138


Ignore:
Timestamp:
09/02/2022 07:32:01 AM (4 years ago)
Author:
BlueHost
Message:

Update to version 1.1.1 from GitHub

Location:
maestro-connector
Files:
16 added
10 deleted
16 edited
1 copied

Legend:

Unmodified
Added
Removed
  • maestro-connector/tags/1.1.1/maestro-connector.php

    r2778945 r2779138  
    33 * Plugin Name: Maestro Connector
    44 * Description: Give trusted web professionals admin access to your WordPress account. Revoke anytime.
    5  * Version: 1.1.0
     5 * Version: 1.1.1
    66 * Requires at least: 4.7
    77 * Requires PHP: 5.4
     
    1818namespace Bluehost\Maestro;
    1919
    20 define( 'MAESTRO_VERSION', '1.1.0' );
     20define( 'MAESTRO_VERSION', '1.1.1' );
    2121define( 'MAESTRO_FILE', __FILE__ );
    2222define( 'MAESTRO_PATH', plugin_dir_path( __FILE__ ) );
  • maestro-connector/tags/1.1.1/readme.txt

    r2778945 r2779138  
    44Requires at least: 4.7
    55Tested up to: 6.0
    6 Stable tag: 1.1.0
     6Stable tag: 1.1.1
    77Requires PHP: 5.3
    88License: GPLv2 or later
     
    4646== Changelog ==
    4747
    48 = 1.1.0 =
     48= 1.1.1 =
    4949* Add support for a bounce parameter on SSO logins
    5050* Fix bug preventing reconnecting after revoking
  • maestro-connector/tags/1.1.1/vendor/autoload.php

    r2778945 r2779138  
    1010require_once __DIR__ . '/composer/autoload_real.php';
    1111
    12 return ComposerAutoloaderInit835d45bf689c1c86cdb70088b8341e07::getLoader();
     12return ComposerAutoloaderInit3728215d7b0aedc7df5a9190baa8d807::getLoader();
  • maestro-connector/tags/1.1.1/vendor/composer/autoload_classmap.php

    r2778945 r2779138  
    77
    88return array(
     9    'Bluehost\\Maestro\\Admin' => $baseDir . '/inc/Admin.php',
     10    'Bluehost\\Maestro\\Encryption' => $baseDir . '/inc/Encryption.php',
     11    'Bluehost\\Maestro\\REST_API' => $baseDir . '/inc/REST_API.php',
     12    'Bluehost\\Maestro\\RestApi\\SSOController' => $baseDir . '/inc/RestApi/SSOController.php',
     13    'Bluehost\\Maestro\\RestApi\\WebProsController' => $baseDir . '/inc/RestApi/WebProsController.php',
     14    'Bluehost\\Maestro\\Token' => $baseDir . '/inc/Token.php',
     15    'Bluehost\\Maestro\\WebPro' => $baseDir . '/inc/WebPro.php',
    916    'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
    1017    'Firebase\\JWT\\BeforeValidException' => $vendorDir . '/firebase/php-jwt/src/BeforeValidException.php',
  • maestro-connector/tags/1.1.1/vendor/composer/autoload_psr4.php

    r2778945 r2779138  
    88return array(
    99    'Firebase\\JWT\\' => array($vendorDir . '/firebase/php-jwt/src'),
    10     'Bluehost\\' => array($baseDir . '/inc'),
     10    'Bluehost\\Maestro\\' => array($baseDir . '/inc'),
    1111);
  • maestro-connector/tags/1.1.1/vendor/composer/autoload_real.php

    r2778945 r2779138  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit835d45bf689c1c86cdb70088b8341e07
     5class ComposerAutoloaderInit3728215d7b0aedc7df5a9190baa8d807
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit835d45bf689c1c86cdb70088b8341e07', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit3728215d7b0aedc7df5a9190baa8d807', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit835d45bf689c1c86cdb70088b8341e07', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit3728215d7b0aedc7df5a9190baa8d807', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit835d45bf689c1c86cdb70088b8341e07::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInit3728215d7b0aedc7df5a9190baa8d807::getInitializer($loader));
    3333
    3434        $loader->register(true);
  • maestro-connector/tags/1.1.1/vendor/composer/autoload_static.php

    r2778945 r2779138  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit835d45bf689c1c86cdb70088b8341e07
     7class ComposerStaticInit3728215d7b0aedc7df5a9190baa8d807
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    1414        'B' =>
    1515        array (
    16             'Bluehost\\' => 9,
     16            'Bluehost\\Maestro\\' => 17,
    1717        ),
    1818    );
     
    2323            0 => __DIR__ . '/..' . '/firebase/php-jwt/src',
    2424        ),
    25         'Bluehost\\' =>
     25        'Bluehost\\Maestro\\' =>
    2626        array (
    2727            0 => __DIR__ . '/../..' . '/inc',
     
    3030
    3131    public static $classMap = array (
     32        'Bluehost\\Maestro\\Admin' => __DIR__ . '/../..' . '/inc/Admin.php',
     33        'Bluehost\\Maestro\\Encryption' => __DIR__ . '/../..' . '/inc/Encryption.php',
     34        'Bluehost\\Maestro\\REST_API' => __DIR__ . '/../..' . '/inc/REST_API.php',
     35        'Bluehost\\Maestro\\RestApi\\SSOController' => __DIR__ . '/../..' . '/inc/RestApi/SSOController.php',
     36        'Bluehost\\Maestro\\RestApi\\WebProsController' => __DIR__ . '/../..' . '/inc/RestApi/WebProsController.php',
     37        'Bluehost\\Maestro\\Token' => __DIR__ . '/../..' . '/inc/Token.php',
     38        'Bluehost\\Maestro\\WebPro' => __DIR__ . '/../..' . '/inc/WebPro.php',
    3239        'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
    3340        'Firebase\\JWT\\BeforeValidException' => __DIR__ . '/..' . '/firebase/php-jwt/src/BeforeValidException.php',
     
    4249    {
    4350        return \Closure::bind(function () use ($loader) {
    44             $loader->prefixLengthsPsr4 = ComposerStaticInit835d45bf689c1c86cdb70088b8341e07::$prefixLengthsPsr4;
    45             $loader->prefixDirsPsr4 = ComposerStaticInit835d45bf689c1c86cdb70088b8341e07::$prefixDirsPsr4;
    46             $loader->classMap = ComposerStaticInit835d45bf689c1c86cdb70088b8341e07::$classMap;
     51            $loader->prefixLengthsPsr4 = ComposerStaticInit3728215d7b0aedc7df5a9190baa8d807::$prefixLengthsPsr4;
     52            $loader->prefixDirsPsr4 = ComposerStaticInit3728215d7b0aedc7df5a9190baa8d807::$prefixDirsPsr4;
     53            $loader->classMap = ComposerStaticInit3728215d7b0aedc7df5a9190baa8d807::$classMap;
    4754
    4855        }, null, ClassLoader::class);
  • maestro-connector/tags/1.1.1/vendor/composer/installed.php

    r2778945 r2779138  
    22    'root' => array(
    33        'name' => 'bluehost/maestro-connector',
    4         'pretty_version' => '1.1.0',
    5         'version' => '1.1.0.0',
    6         'reference' => '00c0ea7cb93d856e3c6677469582e679a0f343ae',
     4        'pretty_version' => '1.1.1',
     5        'version' => '1.1.1.0',
     6        'reference' => 'c5bb8c4c18f30268543094f9890a242727ca1230',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'bluehost/maestro-connector' => array(
    14             'pretty_version' => '1.1.0',
    15             'version' => '1.1.0.0',
    16             'reference' => '00c0ea7cb93d856e3c6677469582e679a0f343ae',
     14            'pretty_version' => '1.1.1',
     15            'version' => '1.1.1.0',
     16            'reference' => 'c5bb8c4c18f30268543094f9890a242727ca1230',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
  • maestro-connector/trunk/maestro-connector.php

    r2778945 r2779138  
    33 * Plugin Name: Maestro Connector
    44 * Description: Give trusted web professionals admin access to your WordPress account. Revoke anytime.
    5  * Version: 1.1.0
     5 * Version: 1.1.1
    66 * Requires at least: 4.7
    77 * Requires PHP: 5.4
     
    1818namespace Bluehost\Maestro;
    1919
    20 define( 'MAESTRO_VERSION', '1.1.0' );
     20define( 'MAESTRO_VERSION', '1.1.1' );
    2121define( 'MAESTRO_FILE', __FILE__ );
    2222define( 'MAESTRO_PATH', plugin_dir_path( __FILE__ ) );
  • maestro-connector/trunk/readme.txt

    r2778945 r2779138  
    44Requires at least: 4.7
    55Tested up to: 6.0
    6 Stable tag: 1.1.0
     6Stable tag: 1.1.1
    77Requires PHP: 5.3
    88License: GPLv2 or later
     
    4646== Changelog ==
    4747
    48 = 1.1.0 =
     48= 1.1.1 =
    4949* Add support for a bounce parameter on SSO logins
    5050* Fix bug preventing reconnecting after revoking
  • maestro-connector/trunk/vendor/autoload.php

    r2778945 r2779138  
    1010require_once __DIR__ . '/composer/autoload_real.php';
    1111
    12 return ComposerAutoloaderInit835d45bf689c1c86cdb70088b8341e07::getLoader();
     12return ComposerAutoloaderInit3728215d7b0aedc7df5a9190baa8d807::getLoader();
  • maestro-connector/trunk/vendor/composer/autoload_classmap.php

    r2778945 r2779138  
    77
    88return array(
     9    'Bluehost\\Maestro\\Admin' => $baseDir . '/inc/Admin.php',
     10    'Bluehost\\Maestro\\Encryption' => $baseDir . '/inc/Encryption.php',
     11    'Bluehost\\Maestro\\REST_API' => $baseDir . '/inc/REST_API.php',
     12    'Bluehost\\Maestro\\RestApi\\SSOController' => $baseDir . '/inc/RestApi/SSOController.php',
     13    'Bluehost\\Maestro\\RestApi\\WebProsController' => $baseDir . '/inc/RestApi/WebProsController.php',
     14    'Bluehost\\Maestro\\Token' => $baseDir . '/inc/Token.php',
     15    'Bluehost\\Maestro\\WebPro' => $baseDir . '/inc/WebPro.php',
    916    'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
    1017    'Firebase\\JWT\\BeforeValidException' => $vendorDir . '/firebase/php-jwt/src/BeforeValidException.php',
  • maestro-connector/trunk/vendor/composer/autoload_psr4.php

    r2778945 r2779138  
    88return array(
    99    'Firebase\\JWT\\' => array($vendorDir . '/firebase/php-jwt/src'),
    10     'Bluehost\\' => array($baseDir . '/inc'),
     10    'Bluehost\\Maestro\\' => array($baseDir . '/inc'),
    1111);
  • maestro-connector/trunk/vendor/composer/autoload_real.php

    r2778945 r2779138  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit835d45bf689c1c86cdb70088b8341e07
     5class ComposerAutoloaderInit3728215d7b0aedc7df5a9190baa8d807
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit835d45bf689c1c86cdb70088b8341e07', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit3728215d7b0aedc7df5a9190baa8d807', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit835d45bf689c1c86cdb70088b8341e07', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit3728215d7b0aedc7df5a9190baa8d807', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit835d45bf689c1c86cdb70088b8341e07::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInit3728215d7b0aedc7df5a9190baa8d807::getInitializer($loader));
    3333
    3434        $loader->register(true);
  • maestro-connector/trunk/vendor/composer/autoload_static.php

    r2778945 r2779138  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit835d45bf689c1c86cdb70088b8341e07
     7class ComposerStaticInit3728215d7b0aedc7df5a9190baa8d807
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    1414        'B' =>
    1515        array (
    16             'Bluehost\\' => 9,
     16            'Bluehost\\Maestro\\' => 17,
    1717        ),
    1818    );
     
    2323            0 => __DIR__ . '/..' . '/firebase/php-jwt/src',
    2424        ),
    25         'Bluehost\\' =>
     25        'Bluehost\\Maestro\\' =>
    2626        array (
    2727            0 => __DIR__ . '/../..' . '/inc',
     
    3030
    3131    public static $classMap = array (
     32        'Bluehost\\Maestro\\Admin' => __DIR__ . '/../..' . '/inc/Admin.php',
     33        'Bluehost\\Maestro\\Encryption' => __DIR__ . '/../..' . '/inc/Encryption.php',
     34        'Bluehost\\Maestro\\REST_API' => __DIR__ . '/../..' . '/inc/REST_API.php',
     35        'Bluehost\\Maestro\\RestApi\\SSOController' => __DIR__ . '/../..' . '/inc/RestApi/SSOController.php',
     36        'Bluehost\\Maestro\\RestApi\\WebProsController' => __DIR__ . '/../..' . '/inc/RestApi/WebProsController.php',
     37        'Bluehost\\Maestro\\Token' => __DIR__ . '/../..' . '/inc/Token.php',
     38        'Bluehost\\Maestro\\WebPro' => __DIR__ . '/../..' . '/inc/WebPro.php',
    3239        'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
    3340        'Firebase\\JWT\\BeforeValidException' => __DIR__ . '/..' . '/firebase/php-jwt/src/BeforeValidException.php',
     
    4249    {
    4350        return \Closure::bind(function () use ($loader) {
    44             $loader->prefixLengthsPsr4 = ComposerStaticInit835d45bf689c1c86cdb70088b8341e07::$prefixLengthsPsr4;
    45             $loader->prefixDirsPsr4 = ComposerStaticInit835d45bf689c1c86cdb70088b8341e07::$prefixDirsPsr4;
    46             $loader->classMap = ComposerStaticInit835d45bf689c1c86cdb70088b8341e07::$classMap;
     51            $loader->prefixLengthsPsr4 = ComposerStaticInit3728215d7b0aedc7df5a9190baa8d807::$prefixLengthsPsr4;
     52            $loader->prefixDirsPsr4 = ComposerStaticInit3728215d7b0aedc7df5a9190baa8d807::$prefixDirsPsr4;
     53            $loader->classMap = ComposerStaticInit3728215d7b0aedc7df5a9190baa8d807::$classMap;
    4754
    4855        }, null, ClassLoader::class);
  • maestro-connector/trunk/vendor/composer/installed.php

    r2778945 r2779138  
    22    'root' => array(
    33        'name' => 'bluehost/maestro-connector',
    4         'pretty_version' => '1.1.0',
    5         'version' => '1.1.0.0',
    6         'reference' => '00c0ea7cb93d856e3c6677469582e679a0f343ae',
     4        'pretty_version' => '1.1.1',
     5        'version' => '1.1.1.0',
     6        'reference' => 'c5bb8c4c18f30268543094f9890a242727ca1230',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'bluehost/maestro-connector' => array(
    14             'pretty_version' => '1.1.0',
    15             'version' => '1.1.0.0',
    16             'reference' => '00c0ea7cb93d856e3c6677469582e679a0f343ae',
     14            'pretty_version' => '1.1.1',
     15            'version' => '1.1.1.0',
     16            'reference' => 'c5bb8c4c18f30268543094f9890a242727ca1230',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.