Plugin Directory

Changeset 2010050


Ignore:
Timestamp:
01/10/2019 03:21:51 PM (7 years ago)
Author:
weslink
Message:

Preparing for 1.3.1 release

Location:
woo-payjoe-beleg-schnittstelle/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • woo-payjoe-beleg-schnittstelle/trunk/README.txt

    r2008256 r2010050  
    55Requires at least: 3.0.1
    66Tested up to: 5.0.2
    7 Stable tag: 1.3.0
     7Stable tag: 1.3.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8686* German Markt wird nun unterstützt
    8787
     88= 1.3.1 =
     89* Small fix for german market
     90
    8891== Upgrade Notice ==
    8992
     
    110113* German Markt wird nun unterstützt
    111114
     115= 1.3.1 =
     116* Small fix for german market
     117
    112118== Contribute ==
    113119
  • woo-payjoe-beleg-schnittstelle/trunk/admin/class-weslink-payjoe-opbeleg-orders.php

    r2008256 r2010050  
    6262        );
    6363        $orders = new WP_Query($args);
     64
    6465        if ($orders->have_posts()) {
    6566
     
    377378    public function mapGermanMarketInvoiceNumber(): bool
    378379    {
     380
    379381        $args = array(
    380382            'post_type' => wc_get_order_types(),
     
    388390                ),
    389391                array(
    390                     'key' => '_wp_wc_running_invoice_number',
    391                     'compare' => 'EXISTS'
     392                    'relation' => 'AND',
     393                    array(
     394                        'key'     => '_wp_wc_running_invoice_number',
     395                        'compare' => 'EXISTS',
     396                    ),
     397                    array(
     398                        'key'     => '_wp_wc_running_invoice_number',
     399                        'value' => array('',null),
     400                        'compare' => 'NOT IN'
     401                    ),
    392402                )
    393403
  • woo-payjoe-beleg-schnittstelle/trunk/includes/class-weslink-payjoe-opbeleg.php

    r2008256 r2010050  
    7070
    7171        $this->plugin_name = 'weslink-payjoe-opbeleg';
    72         $this->version = '1.3.0';
     72        $this->version = '1.3.1';
    7373
    7474        $this->load_dependencies();
  • woo-payjoe-beleg-schnittstelle/trunk/weslink-payjoe-opbeleg.php

    r2008256 r2010050  
    1616 * Plugin Name:       Woo PayJoe Beleg Schnittstelle
    1717 * Description:       Plugin zum Upload von Rechnungen zu PayJoe
    18  * Version:           1.3.0
     18 * Version:           1.3.1
    1919 * Author:            WESLINK - Let's Web | Site Shop App
    2020 * Author URI:        https://weslink.de
Note: See TracChangeset for help on using the changeset viewer.