Plugin Directory

Changeset 2466732


Ignore:
Timestamp:
02/01/2021 08:19:32 PM (5 years ago)
Author:
codeinwp
Message:

Release v8.6.7

Location:
tweet-old-post
Files:
625 added
9 edited

Legend:

Unmodified
Added
Removed
  • tweet-old-post/trunk/CHANGELOG.md

    r2465977 r2466732  
    11
     2 ### v8.6.7 - 2021-02-01
     3 **Changes:**
     4 * Fix: Instant share metabox would not show unless RSS feed item post type was selected on General Settings screen
     5 
    26 ### v8.6.6 - 2021-01-31
    37 **Changes:**
  • tweet-old-post/trunk/includes/admin/class-rop-admin.php

    r2465977 r2466732  
    705705        $revive_network_post_type_key = array_search( 'revive-network-share', $screens, true );
    706706        // Remove Revive Network post type. Publish now feature not available for RSS feed items.
    707         unset( $screens[ $revive_network_post_type_key ] );
     707
     708        if ( ! empty( $revive_network_post_type_key ) ) {
     709            unset( $screens[ $revive_network_post_type_key ] );
     710        }
    708711
    709712        foreach ( $screens as $screen ) {
  • tweet-old-post/trunk/includes/class-rop.php

    r2465977 r2466732  
    6969
    7070        $this->plugin_name = 'rop';
    71         $this->version     = '8.6.6';
     71        $this->version     = '8.6.7';
    7272
    7373        $this->load_dependencies();
  • tweet-old-post/trunk/readme.md

    r2465977 r2466732  
    293293
    294294## Changelog ##
     295### 8.6.7 - 2021-02-01  ###
     296
     297* Fix: Instant share metabox would not show unless RSS feed item post type was selected on General Settings screen
     298
     299
    295300### 8.6.6 - 2021-01-31  ###
    296301
  • tweet-old-post/trunk/readme.txt

    r2465977 r2466732  
    293293
    294294== Changelog ==
     295= 8.6.7 - 2021-02-01  =
     296
     297* Fix: Instant share metabox would not show unless RSS feed item post type was selected on General Settings screen
     298
     299
    295300= 8.6.6 - 2021-01-31  =
    296301
  • tweet-old-post/trunk/themeisle-hash.json

    r2465977 r2466732  
    1 {"class-rop-autoloader.php":"7bfbb1554230d0ace777adb2e42bebeb","index.php":"39ab8276fb0e4bd3fcab3270822c5977","tweet-old-post.php":"7a56b08ee3feaaddd41a2a2ee5041cdb","uninstall.php":"c350fd79cac473d2dcdabc0bc277dd23"}
     1{"class-rop-autoloader.php":"7bfbb1554230d0ace777adb2e42bebeb","index.php":"39ab8276fb0e4bd3fcab3270822c5977","tweet-old-post.php":"c6eebc3edb049f112893a84bb819b4b9","uninstall.php":"c350fd79cac473d2dcdabc0bc277dd23"}
  • tweet-old-post/trunk/tweet-old-post.php

    r2465977 r2466732  
    1717 * Plugin URI: https://revive.social/
    1818 * Description: WordPress plugin that helps you to keeps your old posts alive by sharing them and driving more traffic to them from twitter/facebook or linkedin. It also helps you to promote your content. You can set time and no of posts to share to drive more traffic.For questions, comments, or feature requests, <a href="http://revive.social/support/?utm_source=plugindesc&utm_medium=announce&utm_campaign=top">contact </a> us!
    19  * Version:           8.6.6
     19 * Version:           8.6.7
    2020 * Author:            revive.social
    2121 * Author URI:        https://revive.social/
     
    163163
    164164    define( 'ROP_PRO_URL', 'http://revive.social/plugins/revive-old-post/' );
    165     define( 'ROP_LITE_VERSION', '8.6.6' );
     165    define( 'ROP_LITE_VERSION', '8.6.7' );
    166166    define( 'ROP_LITE_BASE_FILE', __FILE__ );
    167167    $debug = false;
  • tweet-old-post/trunk/vendor/autoload.php

    r2465977 r2466732  
    55require_once __DIR__ . '/composer' . '/autoload_real.php';
    66
    7 return ComposerAutoloaderInitec2c85b1d7ef1878d798265fa6d4116e::getLoader();
     7return ComposerAutoloaderInit227d00ada67c9959e23d61e04f31293d::getLoader();
  • tweet-old-post/trunk/vendor/composer/autoload_real.php

    r2465977 r2466732  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInitec2c85b1d7ef1878d798265fa6d4116e
     5class ComposerAutoloaderInit227d00ada67c9959e23d61e04f31293d
    66{
    77    private static $loader;
     
    2020        }
    2121
    22         spl_autoload_register(array('ComposerAutoloaderInitec2c85b1d7ef1878d798265fa6d4116e', 'loadClassLoader'), true, true);
     22        spl_autoload_register(array('ComposerAutoloaderInit227d00ada67c9959e23d61e04f31293d', 'loadClassLoader'), true, true);
    2323        self::$loader = $loader = new \Composer\Autoload\ClassLoader();
    24         spl_autoload_unregister(array('ComposerAutoloaderInitec2c85b1d7ef1878d798265fa6d4116e', 'loadClassLoader'));
     24        spl_autoload_unregister(array('ComposerAutoloaderInit227d00ada67c9959e23d61e04f31293d', 'loadClassLoader'));
    2525
    2626        $map = require __DIR__ . '/autoload_namespaces.php';
     
    4343        $includeFiles = require __DIR__ . '/autoload_files.php';
    4444        foreach ($includeFiles as $fileIdentifier => $file) {
    45             composerRequireec2c85b1d7ef1878d798265fa6d4116e($fileIdentifier, $file);
     45            composerRequire227d00ada67c9959e23d61e04f31293d($fileIdentifier, $file);
    4646        }
    4747
     
    5050}
    5151
    52 function composerRequireec2c85b1d7ef1878d798265fa6d4116e($fileIdentifier, $file)
     52function composerRequire227d00ada67c9959e23d61e04f31293d($fileIdentifier, $file)
    5353{
    5454    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
Note: See TracChangeset for help on using the changeset viewer.