Plugin Directory

Changeset 1675759


Ignore:
Timestamp:
06/11/2017 05:06:24 AM (9 years ago)
Author:
recrypto
Message:

Version 1.0.3

Location:
woo-steem/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • woo-steem/trunk/README.md

    r1670250 r1675759  
    1 # NOTICE
    2 PLEASE DO NOT USE ON PRODUCTION. WE'RE CURRENTLY DOING MORE DEVELOPMENT TESTS.
     1![WooCommerce Steem](https://steemitimages.com/0x0/https://ps.w.org/woo-steem/assets/banner-1544x500.png?rev=1670250)
    32
    43# WooCommerce Steem
     
    2726![Screenshot #3](https://imgoat.com/uploads/8f13708210/19683.png)
    2827
     28## Links
     29- [WordPress Plugin Repository](https://wordpress.org/extend/plugins/woo-steem)
     30
    2931## Thanks
    30 [@arcange](https://steemit.com/@arcange) for [SteemSQL](https://steemsql.com)
     32- [@arcange](https://steemit.com/@arcange) for [SteemSQL](https://steemsql.com)
     33- [@furion](https://steemit.com/@furion) for SteemData (Fallback when SteemSQL doesn't yet index Steem blockchain)
    3134
    3235## Support
  • woo-steem/trunk/includes/class-wc-gateway-steem.php

    r1670250 r1675759  
    8989                'title'       => __('Accepted Currencies', 'wc-steem'),
    9090                'type'        => 'multiselect',
    91                 'description' => __('This is your Steem username where your customers will pay you.', 'wc-steem'),
     91                'description' => __('Select the Steem currencies you will accept.', 'wc-steem'),
    9292                'default'     => '',
    9393                'desc_tip'    => true,
  • woo-steem/trunk/includes/wc-steem-handler.php

    r1670250 r1675759  
    135135            $order->add_order_note(
    136136                sprintf(
    137                     __('WooCommerce Steem payment completed with transaction #%d and transfer #%d with the amount of %s %s by %s on %s.', 'wc-steem'),
     137                    __('WooCommerce Steem payment completed with transaction (ID: %s) and transfer (ID: %s) with the amount of %s %s by %s on %s.', 'wc-steem'),
    138138                    $transfer['tx_id'],
    139139                    $transfer['ID'],
     
    141141                    $transfer['amount_symbol'],
    142142                    $transfer['from'],
    143                     $transfer['timestamp']
     143                    date('Y-m-d H:i:s', $transfer['timestamp'])
    144144                )
    145145            );
  • woo-steem/trunk/includes/wc-steem-order-handler.php

    r1670250 r1675759  
    8888                    <tr>
    8989                        <th><?php _e('Paid on', 'wc-steem'); ?></th>
    90                         <td><?php printf('%s on %s', date('F j, Y', strtotime($transfer['timestamp'])), date('g:i A', strtotime($transfer['timestamp']))); ?></td>
     90                        <td><?php printf('%s on %s', date('F j, Y', $transfer['timestamp']), date('g:i A', $transfer['timestamp'])); ?></td>
    9191                    </tr>
    9292                </tbody>
  • woo-steem/trunk/plugin.php

    r1670250 r1675759  
    44 * Plugin URI: https://github.com/recrypto/woocommerce-steem
    55 * Description: Accept Steem payments directly to your shop (Currencies: STEEM, SBD).
    6  * Version: 1.0.2
     6 * Version: 1.0.3
    77 * Author: ReCrypto
    88 * Author URI: https://steemit.com/@recrypto
     
    1616if ( ! defined( 'ABSPATH' ) ) exit;
    1717
    18 define('WC_STEEM_VERSION', '1.0.2');
     18define('WC_STEEM_VERSION', '1.0.3');
    1919define('WC_STEEM_DIR_PATH', trailingslashit(plugin_dir_path(__FILE__)));
    2020define('WC_STEEM_DIR_URL', trailingslashit(plugin_dir_url(__FILE__)));
  • woo-steem/trunk/readme.txt

    r1670250 r1675759  
    55Requires at least: 4.1
    66Tested up to: 4.7.5
    7 Stable tag: 1.0.2
     7Stable tag: 1.0.3
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    8989* Initial version in WordPress Plugin Repository
    9090
     91= 1.0.3 - 2017-06-11 =
     92* Fixed Steem Transaction Transfer data in WooCommerce Order notes in admin
     93* Fixed date format issue in WooCommerce Order page
     94
    9195
    9296== Upgrade Notice ==
    9397
    94 = 1.0.2 - 2017-06-03 =
    95 * Initial version in WordPress Plugin Repository
     98= 1.0.3 - 2017-06-11 =
     99* Fixed Steem Transaction Transfer data in WooCommerce Order notes in admin
     100* Fixed date format issue in WooCommerce Order page
Note: See TracChangeset for help on using the changeset viewer.