Changeset 3132081
- Timestamp:
- 08/07/2024 09:49:54 AM (19 months ago)
- Location:
- gathercontent-import
- Files:
-
- 16 edited
- 1 copied
-
tags/3.2.21 (copied) (copied from gathercontent-import/trunk)
-
tags/3.2.21/README.md (modified) (2 diffs)
-
tags/3.2.21/gathercontent-importer.php (modified) (2 diffs)
-
tags/3.2.21/includes/classes/admin/base.php (modified) (1 diff)
-
tags/3.2.21/includes/classes/admin/mapping/field-types/wpseo.php (modified) (1 diff)
-
tags/3.2.21/includes/classes/admin/post-base.php (modified) (1 diff)
-
tags/3.2.21/includes/classes/sync/base.php (modified) (1 diff)
-
tags/3.2.21/readme.txt (modified) (2 diffs)
-
tags/3.2.21/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/README.md (modified) (2 diffs)
-
trunk/gathercontent-importer.php (modified) (2 diffs)
-
trunk/includes/classes/admin/base.php (modified) (1 diff)
-
trunk/includes/classes/admin/mapping/field-types/wpseo.php (modified) (1 diff)
-
trunk/includes/classes/admin/post-base.php (modified) (1 diff)
-
trunk/includes/classes/sync/base.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gathercontent-import/tags/3.2.21/README.md
r3028232 r3132081 1 # GatherContent Plugin -- Version 3.2. 20#1 # GatherContent Plugin -- Version 3.2.19 # 2 2 3 3 This plugin allows you to transfer content from your GatherContent projects into your WordPress site and vice-versa. … … 47 47 48 48 ## Changelog ## 49 50 ### 3.2.20 ###51 * Resolved bug missing WPSEO_Social_admin class52 49 53 50 ### 3.2.19 ### -
gathercontent-import/tags/3.2.21/gathercontent-importer.php
r3028232 r3132081 4 4 * Plugin URI: http://www.gathercontent.com 5 5 * Description: Imports items from GatherContent to your wordpress site 6 * Version: 3.2. 206 * Version: 3.2.19 7 7 * Author: GatherContent 8 8 * Requires PHP: 7.0 … … 32 32 33 33 // Useful global constants 34 define( 'GATHERCONTENT_VERSION', '3.2. 20' );35 define( 'GATHERCONTENT_ENQUEUE_VERSION', '3.2. 20' );34 define( 'GATHERCONTENT_VERSION', '3.2.19' ); 35 define( 'GATHERCONTENT_ENQUEUE_VERSION', '3.2.19' ); 36 36 define( 'GATHERCONTENT_SLUG', 'gathercontent-import' ); 37 37 define( 'GATHERCONTENT_PLUGIN', __FILE__ ); -
gathercontent-import/tags/3.2.21/includes/classes/admin/base.php
r2672752 r3132081 41 41 */ 42 42 public $default_options = array(); 43 44 /** @var string $logo */ 45 protected $logo; 43 46 44 47 /** -
gathercontent-import/tags/3.2.21/includes/classes/admin/mapping/field-types/wpseo.php
r2697671 r3132081 123 123 } 124 124 125 $options = \WPSEO_Options::get_all();126 127 125 new \WPSEO_Metabox(); 128 126 \WPSEO_Metabox::translate_meta_boxes(); 129 130 if ( $options['opengraph'] === true || $options['twitter'] === true || $options['googleplus'] === true ) {131 new \WPSEO_Social_Admin();132 \WPSEO_Social_Admin::translate_meta_boxes();133 }134 127 } 135 128 -
gathercontent-import/tags/3.2.21/includes/classes/admin/post-base.php
r2672752 r3132081 55 55 protected $doing_ajax = false; 56 56 57 /** @var array $post_types */ 58 protected $post_types = []; 59 57 60 /** 58 61 * Creates an instance of this class. -
gathercontent-import/tags/3.2.21/includes/classes/sync/base.php
r2718011 r3132081 91 91 */ 92 92 protected $append_types = array( 'post_content', 'post_title', 'post_excerpt' ); 93 94 /** @var Log $log */ 95 protected $logger; 93 96 94 97 /** -
gathercontent-import/tags/3.2.21/readme.txt
r3028232 r3132081 5 5 Requires at least: 5.6.0 6 6 Tested up to: 6.3 7 Stable tag: 3.2. 207 Stable tag: 3.2.19 8 8 License: GPL-2.0+ 9 9 Requires PHP: 7.0 … … 65 65 66 66 == Changelog == 67 68 = 3.2.20 =69 * Resolved bug missing WPSEO_Social_admin class70 67 71 68 = 3.2.19 = -
gathercontent-import/tags/3.2.21/vendor/composer/installed.php
r2980223 r3132081 4 4 'pretty_version' => '3.2.19', 5 5 'version' => '3.2.19.0', 6 'reference' => NULL,6 'reference' => null, 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => '3.2.19', 15 15 'version' => '3.2.19.0', 16 'reference' => NULL,16 'reference' => null, 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../', -
gathercontent-import/trunk/README.md
r3028232 r3132081 1 # GatherContent Plugin -- Version 3.2. 20#1 # GatherContent Plugin -- Version 3.2.19 # 2 2 3 3 This plugin allows you to transfer content from your GatherContent projects into your WordPress site and vice-versa. … … 47 47 48 48 ## Changelog ## 49 50 ### 3.2.20 ###51 * Resolved bug missing WPSEO_Social_admin class52 49 53 50 ### 3.2.19 ### -
gathercontent-import/trunk/gathercontent-importer.php
r3028232 r3132081 4 4 * Plugin URI: http://www.gathercontent.com 5 5 * Description: Imports items from GatherContent to your wordpress site 6 * Version: 3.2. 206 * Version: 3.2.19 7 7 * Author: GatherContent 8 8 * Requires PHP: 7.0 … … 32 32 33 33 // Useful global constants 34 define( 'GATHERCONTENT_VERSION', '3.2. 20' );35 define( 'GATHERCONTENT_ENQUEUE_VERSION', '3.2. 20' );34 define( 'GATHERCONTENT_VERSION', '3.2.19' ); 35 define( 'GATHERCONTENT_ENQUEUE_VERSION', '3.2.19' ); 36 36 define( 'GATHERCONTENT_SLUG', 'gathercontent-import' ); 37 37 define( 'GATHERCONTENT_PLUGIN', __FILE__ ); -
gathercontent-import/trunk/includes/classes/admin/base.php
r2672752 r3132081 41 41 */ 42 42 public $default_options = array(); 43 44 /** @var string $logo */ 45 protected $logo; 43 46 44 47 /** -
gathercontent-import/trunk/includes/classes/admin/mapping/field-types/wpseo.php
r2697671 r3132081 123 123 } 124 124 125 $options = \WPSEO_Options::get_all();126 127 125 new \WPSEO_Metabox(); 128 126 \WPSEO_Metabox::translate_meta_boxes(); 129 130 if ( $options['opengraph'] === true || $options['twitter'] === true || $options['googleplus'] === true ) {131 new \WPSEO_Social_Admin();132 \WPSEO_Social_Admin::translate_meta_boxes();133 }134 127 } 135 128 -
gathercontent-import/trunk/includes/classes/admin/post-base.php
r2672752 r3132081 55 55 protected $doing_ajax = false; 56 56 57 /** @var array $post_types */ 58 protected $post_types = []; 59 57 60 /** 58 61 * Creates an instance of this class. -
gathercontent-import/trunk/includes/classes/sync/base.php
r2718011 r3132081 91 91 */ 92 92 protected $append_types = array( 'post_content', 'post_title', 'post_excerpt' ); 93 94 /** @var Log $log */ 95 protected $logger; 93 96 94 97 /** -
gathercontent-import/trunk/readme.txt
r3028232 r3132081 5 5 Requires at least: 5.6.0 6 6 Tested up to: 6.3 7 Stable tag: 3.2. 207 Stable tag: 3.2.19 8 8 License: GPL-2.0+ 9 9 Requires PHP: 7.0 … … 65 65 66 66 == Changelog == 67 68 = 3.2.20 =69 * Resolved bug missing WPSEO_Social_admin class70 67 71 68 = 3.2.19 = -
gathercontent-import/trunk/vendor/composer/installed.php
r2980223 r3132081 4 4 'pretty_version' => '3.2.19', 5 5 'version' => '3.2.19.0', 6 'reference' => NULL,6 'reference' => null, 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => '3.2.19', 15 15 'version' => '3.2.19.0', 16 'reference' => NULL,16 'reference' => null, 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.