Changeset 2675190
- Timestamp:
- 02/08/2022 05:08:24 PM (4 years ago)
- Location:
- gathercontent-import
- Files:
-
- 2 deleted
- 14 edited
- 1 copied
-
tags/3.2.1 (copied) (copied from gathercontent-import/trunk)
-
tags/3.2.1/README.md (modified) (1 diff)
-
tags/3.2.1/composer.lock (modified) (2 diffs)
-
tags/3.2.1/gathercontent-importer.php (modified) (2 diffs)
-
tags/3.2.1/includes/classes/post-types/async-save-hook.php (modified) (1 diff)
-
tags/3.2.1/includes/classes/sync/async-base.php (modified) (1 diff)
-
tags/3.2.1/includes/functions/core.php (modified) (1 diff)
-
tags/3.2.1/includes/vendor/wp-async-task (deleted)
-
tags/3.2.1/readme.txt (modified) (1 diff)
-
trunk/README.md (modified) (1 diff)
-
trunk/composer.lock (modified) (2 diffs)
-
trunk/gathercontent-importer.php (modified) (2 diffs)
-
trunk/includes/classes/post-types/async-save-hook.php (modified) (1 diff)
-
trunk/includes/classes/sync/async-base.php (modified) (1 diff)
-
trunk/includes/functions/core.php (modified) (1 diff)
-
trunk/includes/vendor/wp-async-task (deleted)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gathercontent-import/tags/3.2.1/README.md
r2672752 r2675190 47 47 48 48 ## Changelog ## 49 50 ### 3.2.1 ### 51 * Resolve build process dependency error. 49 52 50 53 ### 3.2.0 ### -
gathercontent-import/tags/3.2.1/composer.lock
r2672752 r2675190 5 5 "This file is @generated automatically" 6 6 ], 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 ], 9 66 "packages-dev": [ 10 67 { … … 3537 3594 "minimum-stability": "dev", 3538 3595 "stability-flags": { 3596 "techcrunch/wp-async-task": 20, 3539 3597 "brianium/paratest": 20 3540 3598 }, -
gathercontent-import/tags/3.2.1/gathercontent-importer.php
r2672752 r2675190 4 4 * Plugin URI: http://www.gathercontent.com 5 5 * Description: Imports items from GatherContent to your wordpress site 6 * Version: 3.2. 06 * Version: 3.2.1 7 7 * Author: GatherContent 8 8 * Requires PHP: 7.0 … … 32 32 33 33 // Useful global constants 34 define( 'GATHERCONTENT_VERSION', '3.2 ' );35 define( 'GATHERCONTENT_ENQUEUE_VERSION', '3.2 ' );34 define( 'GATHERCONTENT_VERSION', '3.2.1' ); 35 define( 'GATHERCONTENT_ENQUEUE_VERSION', '3.2.1' ); 36 36 define( 'GATHERCONTENT_SLUG', 'gathercontent-import' ); 37 37 define( 'GATHERCONTENT_PLUGIN', __FILE__ ); -
gathercontent-import/tags/3.2.1/includes/classes/post-types/async-save-hook.php
r2672752 r2675190 1 1 <?php 2 2 namespace GatherContent\Importer\Post_Types; 3 4 require_once GATHERCONTENT_INC . 'vendor/wp-async-task/wp-async-task.php';5 3 6 4 class Async_Save_Hook extends \WP_Async_Task { -
gathercontent-import/tags/3.2.1/includes/classes/sync/async-base.php
r2672752 r2675190 4 4 use GatherContent\Importer\General; 5 5 use GatherContent\Importer\Debug; 6 7 require_once GATHERCONTENT_INC . 'vendor/wp-async-task/wp-async-task.php';8 6 9 7 abstract class Async_Base extends \WP_Async_Task { -
gathercontent-import/tags/3.2.1/includes/functions/core.php
r2672752 r2675190 65 65 spl_autoload_register( $n( 'autoload' ), false ); 66 66 67 include_once GATHERCONTENT_PATH . 'vendor/autoload.php'; 68 67 69 if ( is_admin() ) { 68 70 // We only need to do our work in the admin. -
gathercontent-import/tags/3.2.1/readme.txt
r2672752 r2675190 66 66 == Changelog == 67 67 68 = 3.2.1 = 69 * Resolve build process dependency error. 70 68 71 = 3.2.0 = 69 72 * Add ability to edit Alt Text on media -
gathercontent-import/trunk/README.md
r2672752 r2675190 47 47 48 48 ## Changelog ## 49 50 ### 3.2.1 ### 51 * Resolve build process dependency error. 49 52 50 53 ### 3.2.0 ### -
gathercontent-import/trunk/composer.lock
r2672752 r2675190 5 5 "This file is @generated automatically" 6 6 ], 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 ], 9 66 "packages-dev": [ 10 67 { … … 3537 3594 "minimum-stability": "dev", 3538 3595 "stability-flags": { 3596 "techcrunch/wp-async-task": 20, 3539 3597 "brianium/paratest": 20 3540 3598 }, -
gathercontent-import/trunk/gathercontent-importer.php
r2672752 r2675190 4 4 * Plugin URI: http://www.gathercontent.com 5 5 * Description: Imports items from GatherContent to your wordpress site 6 * Version: 3.2. 06 * Version: 3.2.1 7 7 * Author: GatherContent 8 8 * Requires PHP: 7.0 … … 32 32 33 33 // Useful global constants 34 define( 'GATHERCONTENT_VERSION', '3.2 ' );35 define( 'GATHERCONTENT_ENQUEUE_VERSION', '3.2 ' );34 define( 'GATHERCONTENT_VERSION', '3.2.1' ); 35 define( 'GATHERCONTENT_ENQUEUE_VERSION', '3.2.1' ); 36 36 define( 'GATHERCONTENT_SLUG', 'gathercontent-import' ); 37 37 define( 'GATHERCONTENT_PLUGIN', __FILE__ ); -
gathercontent-import/trunk/includes/classes/post-types/async-save-hook.php
r2672752 r2675190 1 1 <?php 2 2 namespace GatherContent\Importer\Post_Types; 3 4 require_once GATHERCONTENT_INC . 'vendor/wp-async-task/wp-async-task.php';5 3 6 4 class Async_Save_Hook extends \WP_Async_Task { -
gathercontent-import/trunk/includes/classes/sync/async-base.php
r2672752 r2675190 4 4 use GatherContent\Importer\General; 5 5 use GatherContent\Importer\Debug; 6 7 require_once GATHERCONTENT_INC . 'vendor/wp-async-task/wp-async-task.php';8 6 9 7 abstract class Async_Base extends \WP_Async_Task { -
gathercontent-import/trunk/includes/functions/core.php
r2672752 r2675190 65 65 spl_autoload_register( $n( 'autoload' ), false ); 66 66 67 include_once GATHERCONTENT_PATH . 'vendor/autoload.php'; 68 67 69 if ( is_admin() ) { 68 70 // We only need to do our work in the admin. -
gathercontent-import/trunk/readme.txt
r2672752 r2675190 66 66 == Changelog == 67 67 68 = 3.2.1 = 69 * Resolve build process dependency error. 70 68 71 = 3.2.0 = 69 72 * Add ability to edit Alt Text on media
Note: See TracChangeset
for help on using the changeset viewer.