Plugin Directory

Changeset 1742187


Ignore:
Timestamp:
10/06/2017 01:40:15 PM (8 years ago)
Author:
recrypto
Message:

Version 1.0.4

Location:
wp-steem
Files:
83 added
4 edited

Legend:

Unmodified
Added
Removed
  • wp-steem/tags/1.0.3/readme.txt

    r1708105 r1742187  
    115115* [FIX] Corrected the wording for cooldown notice. There is no 5 minute cooldown for doing a Steem post edit.
    116116* [ENHANCEMENT] Preparing all the wordings for foreign translations in the future version of the plugin by wrapping them with WordPress locale functions.
    117 * [ENHANCEMENT] Added an intuitve message if trying to publish a WordPress Post on Steem blockchain when its still in the 5 minute cooldown interval.
     117* [ENHANCEMENT] Added an intuitive message if trying to publish a WordPress Post on Steem blockchain when its still in the 5 minute cooldown interval.
    118118
    119119== Upgrade Notice ==
     
    124124* [FIX] Corrected the wording for cooldown notice. There is no 5 minute cooldown for doing a Steem post edit.
    125125* [ENHANCEMENT] Preparing all the wordings for foreign translations in the future version of the plugin by wrapping them with WordPress locale functions.
    126 * [ENHANCEMENT] Added an intuitve message if trying to publish a WordPress Post on Steem blockchain when its still in the 5 minute cooldown interval.
     126* [ENHANCEMENT] Added an intuitive message if trying to publish a WordPress Post on Steem blockchain when its still in the 5 minute cooldown interval.
  • wp-steem/trunk/app/class-wp-steem-post-sync.php

    r1708105 r1742187  
    3333        $post->update_meta('use_body', $attributes['use_body']);
    3434        $post->update_meta('body', $body);
     35        $post->update_meta('tags', $tags);
     36
     37        if (get_post_status($post->id) != 'publish') {
     38            return false;
     39        }
    3540
    3641        $parent_permalink = $this->sanitize_permalink($post->parent_permalink);
  • wp-steem/trunk/plugin.php

    r1708105 r1742187  
    44 * Plugin URI: https://github.com/recrypto/wp-steem
    55 * Description: Publish your WordPress posts on Steem blockchain.
    6  * Version: 1.0.3
     6 * Version: 1.0.4
    77 * Author: ReCrypto
    88 * Author URI: https://steemit.com/@recrypto
     
    1616if ( ! defined( 'ABSPATH' ) ) exit;
    1717
    18 define('WP_STEEM_VERSION', '1.0.3');
     18define('WP_STEEM_VERSION', '1.0.4');
    1919define('WP_STEEM_DIR_PATH', trailingslashit(plugin_dir_path(__FILE__)));
    2020define('WP_STEEM_DIR_URL', trailingslashit(plugin_dir_url(__FILE__)));
  • wp-steem/trunk/readme.txt

    r1708105 r1742187  
    55Requires at least: 4.1
    66Tested up to: 4.8.0
    7 Stable tag: 1.0.3
     7Stable tag: 1.0.4
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    117117* [ENHANCEMENT] Added an intuitve message if trying to publish a WordPress Post on Steem blockchain when its still in the 5 minute cooldown interval.
    118118
     119= 1.0.3 - 2017-08-04 =
     120* [FIX] It should not publish post if their post_status is "draft".
     121
    119122== Upgrade Notice ==
    120123
    121124= 1.0.3 - 2017-08-04 =
    122 * [ENHANCEMENT] Hide "Update on Steem blockchain" checkbox input if the Steem post reaches the 7 days allowed time frame to be editable.
    123 * [ENHANCEMENT] Doing an update on Steem blockchain action will not trigger if the Steem post reaches its 7 days allowed time frame to be editable.
    124 * [FIX] Corrected the wording for cooldown notice. There is no 5 minute cooldown for doing a Steem post edit.
    125 * [ENHANCEMENT] Preparing all the wordings for foreign translations in the future version of the plugin by wrapping them with WordPress locale functions.
    126 * [ENHANCEMENT] Added an intuitve message if trying to publish a WordPress Post on Steem blockchain when its still in the 5 minute cooldown interval.
     125* [FIX] It should not publish post if their post_status is "draft".
Note: See TracChangeset for help on using the changeset viewer.