Plugin Directory

Changeset 2520097


Ignore:
Timestamp:
04/22/2021 11:55:05 PM (5 years ago)
Author:
codeinwp
Message:

Release v9.0.1

Location:
tweet-old-post
Files:
1395 added
11 edited

Legend:

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

    r2519351 r2520097  
    11
    2  ### v9.0.0 - 2021-04-21
    3  **Changes:**
    4  * add instagram refrences in readme.txt
     2 ### v9.0.1 - 2021-04-22
     3 **Changes:**
     4 * [Fix Pro] Issue with saving maximum post age setting for users on Personal Plan
     5* [Change] Don't show ROP Log error notice to non-admins
    56 
    67 ### v9.0.0 - 2021-04-21
  • tweet-old-post/trunk/includes/admin/class-rop-admin.php

    r2519284 r2520097  
    7373        $log                  = new Rop_Logger();
    7474        $is_status_logs_alert = $log->is_status_error_necessary(); // true | false
    75         if ( $is_status_logs_alert ) {
     75        if ( $is_status_logs_alert && current_user_can( 'manage_options' ) ) {
    7676            ?>
    77             <div class="notice notice-error is-dismissible">
     77            <div id="rop-status-error" class="notice notice-error is-dismissible">
    7878                <p>
    7979                    <strong><?php echo esc_html( Rop_I18n::get_labels( 'general.plugin_name' ) ); ?></strong>:
  • tweet-old-post/trunk/includes/admin/models/class-rop-settings-model.php

    r2519284 r2520097  
    401401            }
    402402
    403             $min_allowed = apply_filters( 'rop_min_interval_bw_shares_min', ROP_DEBUG ? 0.1 : 5 );
     403            $global_settings = new Rop_Global_Settings();
     404            $min_hours = 5;
     405
     406            if ( $global_settings->license_type() > 0 ) {
     407                $min_hours = 0.5;
     408            }
     409
     410            $min_allowed = apply_filters( 'rop_min_interval_bw_shares_min', ROP_DEBUG ? 0.1 : $min_hours );
     411
    404412            if ( $data['default_interval'] < $min_allowed ) {
    405413                $this->logger->alert_error( sprintf( Rop_I18n::get_labels( 'misc.min_interval_between_shares' ), $min_allowed ) );
     
    419427            }
    420428
    421             $min_allowed = apply_filters( 'rop_min_interval_bw_shares_min', ROP_DEBUG ? 0.1 : 5 );
     429            $min_hours = 5;
     430
     431            if ( $global_settings->license_type() > 0 ) {
     432                $min_hours = 0.5;
     433            }
     434
     435            $min_allowed = apply_filters( 'rop_min_interval_bw_shares_min', ROP_DEBUG ? 0.1 : $min_hours );
    422436            if ( $data['interval_r'] < $min_allowed ) {
    423437                $this->logger->alert_error( sprintf( Rop_I18n::get_labels( 'misc.min_interval_between_shares' ), $min_allowed ) );
  • tweet-old-post/trunk/includes/class-rop-i18n.php

    r2519284 r2520097  
    442442                'learn_more' => __( 'Learn More!', 'tweet-old-post' ),
    443443                'min_interval_6_mins' => __( 'Minimum interval between consecutive shares is 6 minutes.', 'tweet-old-post' ),
    444                 'min_interval_between_shares' => __( 'Lowest allowed value for "Minimum Interval Between Shares" is %d hours. Upgrade to Business Plan or higher to post at lower frequencies.', 'tweet-old-post' ),
     444                'min_interval_between_shares' => __( 'Lowest allowed value for "Minimum Interval Between Shares" is %s hours. Upgrade to Business Plan or higher to fine tune posting times and days.', 'tweet-old-post' ),
    445445                'min_recurring_schedule_interval' => __( 'Lowest allowed value for "Recurring Schedule Interval" is %d minutes.', 'tweet-old-post' ),
    446446                'no_post_types_selected' => __( 'You need to have at least one post type to share.', 'tweet-old-post' ),
  • tweet-old-post/trunk/includes/class-rop.php

    r2519284 r2520097  
    6969
    7070        $this->plugin_name = 'rop';
    71         $this->version     = '9.0.0';
     71        $this->version     = '9.0.1';
    7272
    7373        $this->load_dependencies();
  • tweet-old-post/trunk/readme.md

    r2519351 r2520097  
    144144- Post to Vk Communities [Pro]
    145145
     146- Share multilingual posts to respective pages with WPML example, share English Posts to your English social media accounts and Spanish posts to your Spanish social media accounts. [Pro]
     147
    146148And More! Try Revive Old Posts, see why it's the **best** WordPress social media marketing tool to boost your site traffic and keep your followers engaged.
    147149
     
    153155**Awesome features in Pro:**
    154156
    155 - RSS feed sharing. Share feed items from ANY website to your connected social media accounts. With the Revive Network addon(available with Revive Old Posts Pro) it's all possible.
     157- RSS feed sharing. Share feed items from ANY website to your connected social media accounts. With the [Revive Network addon](https://revive.social/plugins/revive-network/) it's all possible (available free with Revive Old Posts Pro).
    156158
    157159- [Support for WordPress Custom Post Types](https://docs.revive.social/article/968-how-to-share-different-wordpress-post-types-to-social-media-w-revive-old-posts) (WooCommerce Products, BigCommerce Products, Recipes etc.)
     
    163165- Share **WordPress scheduled posts** to social media on publish. [Learn More](https://docs.revive.social/article/1194-share-scheduled-posts-to-social-media-on-publish-with-revive-old-posts)
    164166
     167- Finer **WPML support** for multilingual websites. [Learn More](https://docs.revive.social/article/1338-how-to-share-different-wpml-languages-to-different-social-media-accounts)
    165168
    166169- **WordPress to Facebook Groups** scheduling and auto post
     
    298301
    299302## Changelog ##
     303### 9.0.1 - 2021-04-22  ###
     304
     305* [Fix Pro] Issue with saving maximum post age setting for users on Personal Plan
     306* [Change] Don't show ROP Log error notice to non-admins
     307
     308
    300309### 9.0.0 - 2021-04-21  ###
    301310
  • tweet-old-post/trunk/readme.txt

    r2519351 r2520097  
    144144- Post to Vk Communities [Pro]
    145145
     146- Share multilingual posts to respective pages with WPML example, share English Posts to your English social media accounts and Spanish posts to your Spanish social media accounts. [Pro]
     147
    146148And More! Try Revive Old Posts, see why it's the **best** WordPress social media marketing tool to boost your site traffic and keep your followers engaged.
    147149
     
    153155**Awesome features in Pro:**
    154156
    155 - RSS feed sharing. Share feed items from ANY website to your connected social media accounts. With the Revive Network addon(available with Revive Old Posts Pro) it's all possible.
     157- RSS feed sharing. Share feed items from ANY website to your connected social media accounts. With the [Revive Network addon](https://revive.social/plugins/revive-network/) it's all possible (available free with Revive Old Posts Pro).
    156158
    157159- [Support for WordPress Custom Post Types](https://docs.revive.social/article/968-how-to-share-different-wordpress-post-types-to-social-media-w-revive-old-posts) (WooCommerce Products, BigCommerce Products, Recipes etc.)
     
    163165- Share **WordPress scheduled posts** to social media on publish. [Learn More](https://docs.revive.social/article/1194-share-scheduled-posts-to-social-media-on-publish-with-revive-old-posts)
    164166
     167- Finer **WPML support** for multilingual websites. [Learn More](https://docs.revive.social/article/1338-how-to-share-different-wpml-languages-to-different-social-media-accounts)
    165168
    166169- **WordPress to Facebook Groups** scheduling and auto post
     
    298301
    299302== Changelog ==
     303= 9.0.1 - 2021-04-22  =
     304
     305* [Fix Pro] Issue with saving maximum post age setting for users on Personal Plan
     306* [Change] Don't show ROP Log error notice to non-admins
     307
     308
    300309= 9.0.0 - 2021-04-21  =
    301310
  • tweet-old-post/trunk/themeisle-hash.json

    r2519284 r2520097  
    1 {"class-rop-autoloader.php":"7bfbb1554230d0ace777adb2e42bebeb","index.php":"39ab8276fb0e4bd3fcab3270822c5977","tweet-old-post.php":"066a78a10916fe13eb57a38831865060","uninstall.php":"c350fd79cac473d2dcdabc0bc277dd23"}
     1{"class-rop-autoloader.php":"7bfbb1554230d0ace777adb2e42bebeb","index.php":"39ab8276fb0e4bd3fcab3270822c5977","tweet-old-post.php":"dbbe5e84232d5039c733e6190170206c","uninstall.php":"c350fd79cac473d2dcdabc0bc277dd23"}
  • tweet-old-post/trunk/tweet-old-post.php

    r2519284 r2520097  
    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:           9.0.0
     19 * Version:           9.0.1
    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', '9.0.0' );
     165    define( 'ROP_LITE_VERSION', '9.0.1' );
    166166    define( 'ROP_LITE_BASE_FILE', __FILE__ );
    167167    $debug = false;
  • tweet-old-post/trunk/vendor/autoload.php

    r2519351 r2520097  
    55require_once __DIR__ . '/composer' . '/autoload_real.php';
    66
    7 return ComposerAutoloaderInit1dc5d7d20a8d2ccd9530a023f302fe35::getLoader();
     7return ComposerAutoloaderInit01ea363b767cffd363769cdabd72a37f::getLoader();
  • tweet-old-post/trunk/vendor/composer/autoload_real.php

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