Plugin Directory

Changeset 3132081


Ignore:
Timestamp:
08/07/2024 09:49:54 AM (19 months ago)
Author:
Mark Young
Message:

Update to version 3.2.21 from GitHub

Location:
gathercontent-import
Files:
16 edited
1 copied

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 #
    22
    33This plugin allows you to transfer content from your GatherContent projects into your WordPress site and vice-versa.
     
    4747
    4848## Changelog ##
    49 
    50 ### 3.2.20 ###
    51 * Resolved bug missing WPSEO_Social_admin class
    5249
    5350### 3.2.19 ###
  • gathercontent-import/tags/3.2.21/gathercontent-importer.php

    r3028232 r3132081  
    44 * Plugin URI:   http://www.gathercontent.com
    55 * Description:  Imports items from GatherContent to your wordpress site
    6  * Version:      3.2.20
     6 * Version:      3.2.19
    77 * Author:       GatherContent
    88 * Requires PHP: 7.0
     
    3232
    3333// Useful global constants
    34 define( 'GATHERCONTENT_VERSION', '3.2.20' );
    35 define( 'GATHERCONTENT_ENQUEUE_VERSION', '3.2.20' );
     34define( 'GATHERCONTENT_VERSION', '3.2.19' );
     35define( 'GATHERCONTENT_ENQUEUE_VERSION', '3.2.19' );
    3636define( 'GATHERCONTENT_SLUG', 'gathercontent-import' );
    3737define( 'GATHERCONTENT_PLUGIN', __FILE__ );
  • gathercontent-import/tags/3.2.21/includes/classes/admin/base.php

    r2672752 r3132081  
    4141     */
    4242    public $default_options = array();
     43
     44    /** @var string $logo */
     45    protected $logo;
    4346
    4447    /**
  • gathercontent-import/tags/3.2.21/includes/classes/admin/mapping/field-types/wpseo.php

    r2697671 r3132081  
    123123        }
    124124
    125         $options = \WPSEO_Options::get_all();
    126 
    127125        new \WPSEO_Metabox();
    128126        \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         }
    134127    }
    135128
  • gathercontent-import/tags/3.2.21/includes/classes/admin/post-base.php

    r2672752 r3132081  
    5555    protected $doing_ajax = false;
    5656
     57    /** @var array $post_types */
     58    protected $post_types = [];
     59
    5760    /**
    5861     * Creates an instance of this class.
  • gathercontent-import/tags/3.2.21/includes/classes/sync/base.php

    r2718011 r3132081  
    9191     */
    9292    protected $append_types = array( 'post_content', 'post_title', 'post_excerpt' );
     93
     94    /** @var Log $log */
     95    protected $logger;
    9396
    9497    /**
  • gathercontent-import/tags/3.2.21/readme.txt

    r3028232 r3132081  
    55Requires at least: 5.6.0
    66Tested up to: 6.3
    7 Stable tag: 3.2.20
     7Stable tag: 3.2.19
    88License: GPL-2.0+
    99Requires PHP: 7.0
     
    6565
    6666== Changelog ==
    67 
    68 = 3.2.20 =
    69 * Resolved bug missing WPSEO_Social_admin class
    7067
    7168= 3.2.19 =
  • gathercontent-import/tags/3.2.21/vendor/composer/installed.php

    r2980223 r3132081  
    44        'pretty_version' => '3.2.19',
    55        'version' => '3.2.19.0',
    6         'reference' => NULL,
     6        'reference' => null,
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => '3.2.19',
    1515            'version' => '3.2.19.0',
    16             'reference' => NULL,
     16            'reference' => null,
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
  • gathercontent-import/trunk/README.md

    r3028232 r3132081  
    1 # GatherContent Plugin -- Version 3.2.20 #
     1# GatherContent Plugin -- Version 3.2.19 #
    22
    33This plugin allows you to transfer content from your GatherContent projects into your WordPress site and vice-versa.
     
    4747
    4848## Changelog ##
    49 
    50 ### 3.2.20 ###
    51 * Resolved bug missing WPSEO_Social_admin class
    5249
    5350### 3.2.19 ###
  • gathercontent-import/trunk/gathercontent-importer.php

    r3028232 r3132081  
    44 * Plugin URI:   http://www.gathercontent.com
    55 * Description:  Imports items from GatherContent to your wordpress site
    6  * Version:      3.2.20
     6 * Version:      3.2.19
    77 * Author:       GatherContent
    88 * Requires PHP: 7.0
     
    3232
    3333// Useful global constants
    34 define( 'GATHERCONTENT_VERSION', '3.2.20' );
    35 define( 'GATHERCONTENT_ENQUEUE_VERSION', '3.2.20' );
     34define( 'GATHERCONTENT_VERSION', '3.2.19' );
     35define( 'GATHERCONTENT_ENQUEUE_VERSION', '3.2.19' );
    3636define( 'GATHERCONTENT_SLUG', 'gathercontent-import' );
    3737define( 'GATHERCONTENT_PLUGIN', __FILE__ );
  • gathercontent-import/trunk/includes/classes/admin/base.php

    r2672752 r3132081  
    4141     */
    4242    public $default_options = array();
     43
     44    /** @var string $logo */
     45    protected $logo;
    4346
    4447    /**
  • gathercontent-import/trunk/includes/classes/admin/mapping/field-types/wpseo.php

    r2697671 r3132081  
    123123        }
    124124
    125         $options = \WPSEO_Options::get_all();
    126 
    127125        new \WPSEO_Metabox();
    128126        \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         }
    134127    }
    135128
  • gathercontent-import/trunk/includes/classes/admin/post-base.php

    r2672752 r3132081  
    5555    protected $doing_ajax = false;
    5656
     57    /** @var array $post_types */
     58    protected $post_types = [];
     59
    5760    /**
    5861     * Creates an instance of this class.
  • gathercontent-import/trunk/includes/classes/sync/base.php

    r2718011 r3132081  
    9191     */
    9292    protected $append_types = array( 'post_content', 'post_title', 'post_excerpt' );
     93
     94    /** @var Log $log */
     95    protected $logger;
    9396
    9497    /**
  • gathercontent-import/trunk/readme.txt

    r3028232 r3132081  
    55Requires at least: 5.6.0
    66Tested up to: 6.3
    7 Stable tag: 3.2.20
     7Stable tag: 3.2.19
    88License: GPL-2.0+
    99Requires PHP: 7.0
     
    6565
    6666== Changelog ==
    67 
    68 = 3.2.20 =
    69 * Resolved bug missing WPSEO_Social_admin class
    7067
    7168= 3.2.19 =
  • gathercontent-import/trunk/vendor/composer/installed.php

    r2980223 r3132081  
    44        'pretty_version' => '3.2.19',
    55        'version' => '3.2.19.0',
    6         'reference' => NULL,
     6        'reference' => null,
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => '3.2.19',
    1515            'version' => '3.2.19.0',
    16             'reference' => NULL,
     16            'reference' => null,
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.