Plugin Directory

Changeset 2427008


Ignore:
Timestamp:
11/27/2020 03:58:29 AM (5 years ago)
Author:
doshii
Message:

Submitting changes for release 2.3.1

Location:
doshii
Files:
1 added
6 edited

Legend:

Unmodified
Added
Removed
  • doshii/trunk/README.txt

    r2402257 r2427008  
    55Requires at least: 4.7
    66Tested up to: 5.5.1
    7 Stable tag: 2.3.0
     7Stable tag: 2.3.1
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    6060== Changelog ==
    6161
     62= 2.3.1 =
     63
     64Improved remote troubleshooting capabilities
     65
    6266= 2.3.0 =
    6367
  • doshii/trunk/doshii_function.php

    r2402257 r2427008  
    77Author URI:
    88Contributors:
    9 Version: 2.3.0
     9Version: 2.3.1
    1010*/
    1111
     
    3030
    3131register_activation_hook( __FILE__, 'doshii_on_activation' );
    32 wp_enqueue_style( 'doshiistyle', DOSHII_BASE_URL . 'include/assets/css/doshii-style.css',false,'2.3.0','all');
     32wp_enqueue_style( 'doshiistyle', DOSHII_BASE_URL . 'include/assets/css/doshii-style.css',false,'2.3.1','all');
    3333include(DOSHII_BASE_DIR . '/include/woo-doshii-dbtable.php');
    3434include(DOSHII_BASE_DIR . '/include/woo-checkout-fields.php');
  • doshii/trunk/include/woo-doshii-initialise.php

    r2402257 r2427008  
    4040       'x-doshii-location-id' => $locationId.'',
    4141       'content-Type' => 'application/json',
    42        'x-doshii-writeout' => 'WooCommerce 2.3.0',
     42       'x-doshii-writeout' => 'WooCommerce 2.3.1',
    4343    );
    4444
  • doshii/trunk/include/woo-doshii-product-sync.php

    r2402257 r2427008  
    4141            'x-doshii-location-id' => $locationId.'',
    4242            'content-Type' => 'application/json',
    43             'x-doshii-writeout' => 'WooCommerce 2.3.0',
     43            'x-doshii-writeout' => 'WooCommerce 2.3.1',
    4444        )
    4545    ));
  • doshii/trunk/include/woo-order-api.php

    r2402257 r2427008  
    473473            'address' => $consumerAddress
    474474        ],
    475         'transactions' => $transactionsData
     475        'transactions' => $transactionsData,
     476        'woocommerce' => $order->get_data()
    476477    ];
    477478
     
    486487                'accept' => 'application/json',
    487488                'Accept-encoding' => 'gzip',
    488                 'x-doshii-writeout' => 'WooCommerce 2.3.0',
     489                'x-doshii-writeout' => 'WooCommerce 2.3.1',
    489490            ),
    490491            'body' => json_encode($doshiiOrderPayload)
  • doshii/trunk/include/woo-order-status.php

    r2402257 r2427008  
    3939                'x-doshii-location-id' => $doshii_options['location_id'].'',
    4040                'content-Type' => 'application/json',
    41                 'x-doshii-writeout' => 'WooCommerce 2.3.0',
     41                'x-doshii-writeout' => 'WooCommerce 2.3.1',
    4242            )
    4343        ));
Note: See TracChangeset for help on using the changeset viewer.