Plugin Directory

Changeset 2345570


Ignore:
Timestamp:
07/23/2020 05:26:00 PM (5 years ago)
Author:
codeinwp
Message:

Release v8.5.11

Location:
tweet-old-post
Files:
681 added
12 edited

Legend:

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

    r2344119 r2345570  
    11
     2 ### v8.5.11 - 2020-07-23
     3 **Changes:**
     4 * Fix: Posts always sharing as image posts even with option unchecked.
     5* Info: Added "rop_instant_share_message" filter for manipulating custom instant share messages.
     6 
    27 ### v8.5.10 - 2020-07-21
    38 **Changes:**
  • tweet-old-post/trunk/includes/admin/class-rop-admin.php

    r2344119 r2345570  
    916916                $post    = $event['post'];
    917917                $message = ! empty( $event['custom_instant_share_message'] ) ? $event['custom_instant_share_message'] : '';
     918                $message = apply_filters( 'rop_instant_share_message', $message, $event );
    918919                $account_data = $services_model->find_account( $account );
    919920                try {
  • tweet-old-post/trunk/includes/admin/helpers/class-rop-post-format-helper.php

    r2344119 r2345570  
    883883                $image = get_the_post_thumbnail_url( $post_id, 'large' );
    884884            } else {
    885                 $image = get_the_post_thumbnail_url( $post_id, 'large' );
     885                $image = '';
    886886            }
    887887        }
  • tweet-old-post/trunk/includes/admin/services/class-rop-facebook-service.php

    r2344119 r2345570  
    556556            }
    557557
     558                    // if regular post, but "Include link" is selected in Post Format settings, post as normal article post
     559            if ( get_post_type( $post_id ) !== 'attachment' && ! empty( $post_details['post_url'] ) && empty( $post_details['post_with_image'] ) ) {
     560
     561                $new_post['message'] = $this->strip_excess_blank_lines( $post_details['content'] ) . $post_details['hashtags'];
     562
     563                $new_post['link'] = $this->get_url( $post_details );
     564
     565                return array(
     566                    'post_data' => $new_post,
     567                    'type'      => 'post',
     568                );
     569            }
     570
    558571            // If is regular post, but post with image option checked, post as Image on FB
    559572            if ( get_post_type( $post_id ) !== 'attachment' && ! empty( $post_details['post_image'] ) ) {
     
    569582
    570583            }
    571         }
    572 
    573         // if regular post, but "Include link" is selected in Post Format settings, post as normal article post
    574         if ( get_post_type( $post_id ) !== 'attachment' && ! empty( $post_details['post_url'] ) ) {
    575 
    576             $new_post['message'] = $this->strip_excess_blank_lines( $post_details['content'] ) . $post_details['hashtags'];
    577 
    578             $new_post['link'] = $this->get_url( $post_details );
    579 
    580             return array(
    581                 'post_data' => $new_post,
    582                 'type'      => 'post',
    583             );
    584584        }
    585585
  • tweet-old-post/trunk/includes/admin/services/class-rop-gmb-service.php

    r2344119 r2345570  
    369369    private function gmb_article_post( $post_details, $args, $new_post ) {
    370370
    371         $image_url = $post_details['post_image'];
     371        $image_url = get_the_post_thumbnail_url( $post_details['post_id'], 'large' );
    372372
    373373        // if image is empty lets create a different type of GMB post
  • tweet-old-post/trunk/includes/class-rop.php

    r2344119 r2345570  
    6969
    7070        $this->plugin_name = 'rop';
    71         $this->version     = '8.5.10';
     71        $this->version     = '8.5.11';
    7272
    7373        $this->load_dependencies();
  • tweet-old-post/trunk/readme.md

    r2344119 r2345570  
    265265
    266266## Changelog ##
     267### 8.5.11 - 2020-07-23  ###
     268
     269* Fix: Posts always sharing as image posts even with option unchecked.
     270* Info: Added "rop_instant_share_message" filter for manipulating custom instant share messages.
     271
     272
    267273### 8.5.10 - 2020-07-21  ###
    268274
  • tweet-old-post/trunk/readme.txt

    r2344119 r2345570  
    265265
    266266== Changelog ==
     267= 8.5.11 - 2020-07-23  =
     268
     269* Fix: Posts always sharing as image posts even with option unchecked.
     270* Info: Added "rop_instant_share_message" filter for manipulating custom instant share messages.
     271
     272
    267273= 8.5.10 - 2020-07-21  =
    268274
  • tweet-old-post/trunk/themeisle-hash.json

    r2344119 r2345570  
    1 {"class-rop-autoloader.php":"7bfbb1554230d0ace777adb2e42bebeb","index.php":"39ab8276fb0e4bd3fcab3270822c5977","tweet-old-post.php":"000d02fa8e5d7ff517a0036c0636081f","uninstall.php":"456c213b41eb281b168497b4cc808b35"}
     1{"class-rop-autoloader.php":"7bfbb1554230d0ace777adb2e42bebeb","index.php":"39ab8276fb0e4bd3fcab3270822c5977","tweet-old-post.php":"515a760c827fa0058a85ccb196b099c9","uninstall.php":"456c213b41eb281b168497b4cc808b35"}
  • tweet-old-post/trunk/tweet-old-post.php

    r2344119 r2345570  
    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.5.10
     19 * Version:           8.5.11
    2020 * Author:            revive.social
    2121 * Author URI:        https://revive.social/
     
    9999
    100100    define( 'ROP_PRO_URL', 'http://revive.social/plugins/revive-old-post/' );
    101     define( 'ROP_LITE_VERSION', '8.5.10' );
     101    define( 'ROP_LITE_VERSION', '8.5.11' );
    102102    define( 'ROP_LITE_BASE_FILE', __FILE__ );
    103103    define( 'ROP_DEBUG', false );
  • tweet-old-post/trunk/vendor/autoload.php

    r2344119 r2345570  
    55require_once __DIR__ . '/composer' . '/autoload_real.php';
    66
    7 return ComposerAutoloaderInit986be60c101f774b260cbbae2dd7a0c8::getLoader();
     7return ComposerAutoloaderInitabf6d2d88400bd1f6e7c2de306e36587::getLoader();
  • tweet-old-post/trunk/vendor/composer/autoload_real.php

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