Changeset 1675759
- Timestamp:
- 06/11/2017 05:06:24 AM (9 years ago)
- Location:
- woo-steem/trunk
- Files:
-
- 6 edited
-
README.md (modified) (2 diffs)
-
includes/class-wc-gateway-steem.php (modified) (1 diff)
-
includes/wc-steem-handler.php (modified) (2 diffs)
-
includes/wc-steem-order-handler.php (modified) (1 diff)
-
plugin.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
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  3 2 4 3 # WooCommerce Steem … … 27 26  28 27 28 ## Links 29 - [WordPress Plugin Repository](https://wordpress.org/extend/plugins/woo-steem) 30 29 31 ## 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) 31 34 32 35 ## Support -
woo-steem/trunk/includes/class-wc-gateway-steem.php
r1670250 r1675759 89 89 'title' => __('Accepted Currencies', 'wc-steem'), 90 90 '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'), 92 92 'default' => '', 93 93 'desc_tip' => true, -
woo-steem/trunk/includes/wc-steem-handler.php
r1670250 r1675759 135 135 $order->add_order_note( 136 136 sprintf( 137 __('WooCommerce Steem payment completed with transaction #%d and transfer #%dwith 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'), 138 138 $transfer['tx_id'], 139 139 $transfer['ID'], … … 141 141 $transfer['amount_symbol'], 142 142 $transfer['from'], 143 $transfer['timestamp']143 date('Y-m-d H:i:s', $transfer['timestamp']) 144 144 ) 145 145 ); -
woo-steem/trunk/includes/wc-steem-order-handler.php
r1670250 r1675759 88 88 <tr> 89 89 <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> 91 91 </tr> 92 92 </tbody> -
woo-steem/trunk/plugin.php
r1670250 r1675759 4 4 * Plugin URI: https://github.com/recrypto/woocommerce-steem 5 5 * Description: Accept Steem payments directly to your shop (Currencies: STEEM, SBD). 6 * Version: 1.0. 26 * Version: 1.0.3 7 7 * Author: ReCrypto 8 8 * Author URI: https://steemit.com/@recrypto … … 16 16 if ( ! defined( 'ABSPATH' ) ) exit; 17 17 18 define('WC_STEEM_VERSION', '1.0. 2');18 define('WC_STEEM_VERSION', '1.0.3'); 19 19 define('WC_STEEM_DIR_PATH', trailingslashit(plugin_dir_path(__FILE__))); 20 20 define('WC_STEEM_DIR_URL', trailingslashit(plugin_dir_url(__FILE__))); -
woo-steem/trunk/readme.txt
r1670250 r1675759 5 5 Requires at least: 4.1 6 6 Tested up to: 4.7.5 7 Stable tag: 1.0. 27 Stable tag: 1.0.3 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 89 89 * Initial version in WordPress Plugin Repository 90 90 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 91 95 92 96 == Upgrade Notice == 93 97 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.