Plugin Directory

Changeset 2675190


Ignore:
Timestamp:
02/08/2022 05:08:24 PM (4 years ago)
Author:
Mark Young
Message:

Update to version 3.2.1 from GitHub

Location:
gathercontent-import
Files:
2 deleted
14 edited
1 copied

Legend:

Unmodified
Added
Removed
  • gathercontent-import/tags/3.2.1/README.md

    r2672752 r2675190  
    4747
    4848## Changelog ##
     49
     50### 3.2.1 ###
     51* Resolve build process dependency error.
    4952
    5053### 3.2.0 ###
  • gathercontent-import/tags/3.2.1/composer.lock

    r2672752 r2675190  
    55        "This file is @generated automatically"
    66    ],
    7     "content-hash": "9305a8f3b1fa2fd75f7892f2138a00d9",
    8     "packages": [],
     7    "content-hash": "9ce40f3ed32e121069e8a353ddd9811a",
     8    "packages": [
     9        {
     10            "name": "techcrunch/wp-async-task",
     11            "version": "dev-master",
     12            "source": {
     13                "type": "git",
     14                "url": "https://github.com/techcrunch/wp-async-task.git",
     15                "reference": "9bdbbf9df4ff5179711bb58b9a2451296f6753dc"
     16            },
     17            "dist": {
     18                "type": "zip",
     19                "url": "https://api.github.com/repos/techcrunch/wp-async-task/zipball/9bdbbf9df4ff5179711bb58b9a2451296f6753dc",
     20                "reference": "9bdbbf9df4ff5179711bb58b9a2451296f6753dc",
     21                "shasum": ""
     22            },
     23            "require-dev": {
     24                "10up/wp_mock": "dev-master",
     25                "phpunit/phpunit": "*@stable"
     26            },
     27            "default-branch": true,
     28            "type": "wordpress-plugin",
     29            "autoload": {
     30                "classmap": [
     31                    "wp-async-task.php"
     32                ]
     33            },
     34            "notification-url": "https://packagist.org/downloads/",
     35            "license": [
     36                "MIT"
     37            ],
     38            "authors": [
     39                {
     40                    "name": "Alex Khadiwala",
     41                    "role": "developer"
     42                },
     43                {
     44                    "name": "Nicolas Vincent",
     45                    "role": "developer"
     46                },
     47                {
     48                    "name": "Eric Mann",
     49                    "email": "[email protected]",
     50                    "role": "developer"
     51                },
     52                {
     53                    "name": "John P. Bloch",
     54                    "email": "[email protected]",
     55                    "role": "developer"
     56                }
     57            ],
     58            "description": "Run asynchronous tasks for long-running operations in WordPress",
     59            "support": {
     60                "issues": "https://github.com/techcrunch/wp-async-task/issues",
     61                "source": "https://github.com/techcrunch/wp-async-task/tree/master"
     62            },
     63            "time": "2016-03-10T17:37:13+00:00"
     64        }
     65    ],
    966    "packages-dev": [
    1067        {
     
    35373594    "minimum-stability": "dev",
    35383595    "stability-flags": {
     3596        "techcrunch/wp-async-task": 20,
    35393597        "brianium/paratest": 20
    35403598    },
  • gathercontent-import/tags/3.2.1/gathercontent-importer.php

    r2672752 r2675190  
    44 * Plugin URI:   http://www.gathercontent.com
    55 * Description:  Imports items from GatherContent to your wordpress site
    6  * Version:      3.2.0
     6 * Version:      3.2.1
    77 * Author:       GatherContent
    88 * Requires PHP: 7.0
     
    3232
    3333// Useful global constants
    34 define( 'GATHERCONTENT_VERSION', '3.2' );
    35 define( 'GATHERCONTENT_ENQUEUE_VERSION', '3.2' );
     34define( 'GATHERCONTENT_VERSION', '3.2.1' );
     35define( 'GATHERCONTENT_ENQUEUE_VERSION', '3.2.1' );
    3636define( 'GATHERCONTENT_SLUG', 'gathercontent-import' );
    3737define( 'GATHERCONTENT_PLUGIN', __FILE__ );
  • gathercontent-import/tags/3.2.1/includes/classes/post-types/async-save-hook.php

    r2672752 r2675190  
    11<?php
    22namespace GatherContent\Importer\Post_Types;
    3 
    4 require_once GATHERCONTENT_INC . 'vendor/wp-async-task/wp-async-task.php';
    53
    64class Async_Save_Hook extends \WP_Async_Task {
  • gathercontent-import/tags/3.2.1/includes/classes/sync/async-base.php

    r2672752 r2675190  
    44use GatherContent\Importer\General;
    55use GatherContent\Importer\Debug;
    6 
    7 require_once GATHERCONTENT_INC . 'vendor/wp-async-task/wp-async-task.php';
    86
    97abstract class Async_Base extends \WP_Async_Task {
  • gathercontent-import/tags/3.2.1/includes/functions/core.php

    r2672752 r2675190  
    6565    spl_autoload_register( $n( 'autoload' ), false );
    6666
     67    include_once GATHERCONTENT_PATH . 'vendor/autoload.php';
     68
    6769    if ( is_admin() ) {
    6870        // We only need to do our work in the admin.
  • gathercontent-import/tags/3.2.1/readme.txt

    r2672752 r2675190  
    6666== Changelog ==
    6767
     68= 3.2.1 =
     69* Resolve build process dependency error.
     70
    6871= 3.2.0 =
    6972* Add ability to edit Alt Text on media
  • gathercontent-import/trunk/README.md

    r2672752 r2675190  
    4747
    4848## Changelog ##
     49
     50### 3.2.1 ###
     51* Resolve build process dependency error.
    4952
    5053### 3.2.0 ###
  • gathercontent-import/trunk/composer.lock

    r2672752 r2675190  
    55        "This file is @generated automatically"
    66    ],
    7     "content-hash": "9305a8f3b1fa2fd75f7892f2138a00d9",
    8     "packages": [],
     7    "content-hash": "9ce40f3ed32e121069e8a353ddd9811a",
     8    "packages": [
     9        {
     10            "name": "techcrunch/wp-async-task",
     11            "version": "dev-master",
     12            "source": {
     13                "type": "git",
     14                "url": "https://github.com/techcrunch/wp-async-task.git",
     15                "reference": "9bdbbf9df4ff5179711bb58b9a2451296f6753dc"
     16            },
     17            "dist": {
     18                "type": "zip",
     19                "url": "https://api.github.com/repos/techcrunch/wp-async-task/zipball/9bdbbf9df4ff5179711bb58b9a2451296f6753dc",
     20                "reference": "9bdbbf9df4ff5179711bb58b9a2451296f6753dc",
     21                "shasum": ""
     22            },
     23            "require-dev": {
     24                "10up/wp_mock": "dev-master",
     25                "phpunit/phpunit": "*@stable"
     26            },
     27            "default-branch": true,
     28            "type": "wordpress-plugin",
     29            "autoload": {
     30                "classmap": [
     31                    "wp-async-task.php"
     32                ]
     33            },
     34            "notification-url": "https://packagist.org/downloads/",
     35            "license": [
     36                "MIT"
     37            ],
     38            "authors": [
     39                {
     40                    "name": "Alex Khadiwala",
     41                    "role": "developer"
     42                },
     43                {
     44                    "name": "Nicolas Vincent",
     45                    "role": "developer"
     46                },
     47                {
     48                    "name": "Eric Mann",
     49                    "email": "[email protected]",
     50                    "role": "developer"
     51                },
     52                {
     53                    "name": "John P. Bloch",
     54                    "email": "[email protected]",
     55                    "role": "developer"
     56                }
     57            ],
     58            "description": "Run asynchronous tasks for long-running operations in WordPress",
     59            "support": {
     60                "issues": "https://github.com/techcrunch/wp-async-task/issues",
     61                "source": "https://github.com/techcrunch/wp-async-task/tree/master"
     62            },
     63            "time": "2016-03-10T17:37:13+00:00"
     64        }
     65    ],
    966    "packages-dev": [
    1067        {
     
    35373594    "minimum-stability": "dev",
    35383595    "stability-flags": {
     3596        "techcrunch/wp-async-task": 20,
    35393597        "brianium/paratest": 20
    35403598    },
  • gathercontent-import/trunk/gathercontent-importer.php

    r2672752 r2675190  
    44 * Plugin URI:   http://www.gathercontent.com
    55 * Description:  Imports items from GatherContent to your wordpress site
    6  * Version:      3.2.0
     6 * Version:      3.2.1
    77 * Author:       GatherContent
    88 * Requires PHP: 7.0
     
    3232
    3333// Useful global constants
    34 define( 'GATHERCONTENT_VERSION', '3.2' );
    35 define( 'GATHERCONTENT_ENQUEUE_VERSION', '3.2' );
     34define( 'GATHERCONTENT_VERSION', '3.2.1' );
     35define( 'GATHERCONTENT_ENQUEUE_VERSION', '3.2.1' );
    3636define( 'GATHERCONTENT_SLUG', 'gathercontent-import' );
    3737define( 'GATHERCONTENT_PLUGIN', __FILE__ );
  • gathercontent-import/trunk/includes/classes/post-types/async-save-hook.php

    r2672752 r2675190  
    11<?php
    22namespace GatherContent\Importer\Post_Types;
    3 
    4 require_once GATHERCONTENT_INC . 'vendor/wp-async-task/wp-async-task.php';
    53
    64class Async_Save_Hook extends \WP_Async_Task {
  • gathercontent-import/trunk/includes/classes/sync/async-base.php

    r2672752 r2675190  
    44use GatherContent\Importer\General;
    55use GatherContent\Importer\Debug;
    6 
    7 require_once GATHERCONTENT_INC . 'vendor/wp-async-task/wp-async-task.php';
    86
    97abstract class Async_Base extends \WP_Async_Task {
  • gathercontent-import/trunk/includes/functions/core.php

    r2672752 r2675190  
    6565    spl_autoload_register( $n( 'autoload' ), false );
    6666
     67    include_once GATHERCONTENT_PATH . 'vendor/autoload.php';
     68
    6769    if ( is_admin() ) {
    6870        // We only need to do our work in the admin.
  • gathercontent-import/trunk/readme.txt

    r2672752 r2675190  
    6666== Changelog ==
    6767
     68= 3.2.1 =
     69* Resolve build process dependency error.
     70
    6871= 3.2.0 =
    6972* Add ability to edit Alt Text on media
Note: See TracChangeset for help on using the changeset viewer.