Plugin Directory

Changeset 3088896


Ignore:
Timestamp:
05/19/2024 08:43:46 AM (11 months ago)
Author:
ok9xnirab
Message:

v1.1.4 released.

Location:
subscription/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • subscription/trunk/includes/Illuminate/Order.php

    r3083564 r3088896  
    9090            case 'on-hold':
    9191            case 'pending':
     92            case 'processing':
    9293                $post_status = 'pending';
    9394                break;
     
    103104                break;
    104105        }
     106        $post_status = apply_filters( 'subscript_order_status_to_post_status', $post_status, $order );
    105107
    106108        global $wpdb;
  • subscription/trunk/readme.txt

    r3088866 r3088896  
    55Requires at least: 4.0
    66Tested up to: 6.5
    7 Stable tag: 1.1.3
     7Stable tag: 1.1.4
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    8080== Changelog ==
    8181
     82= 1.1.4 =
     83- **Update:** Subscription status will be `pending` when order status is `processing`.
     84- **New**: `subscript_order_status_to_post_status` hook added to filter post status during order status changed event.
     85
    8286= 1.1.3 =
    8387- **New**: Subscription storeAPI checkout support added.
  • subscription/trunk/subscription.php

    r3088866 r3088896  
    44Plugin URI: https://wordpress.org/plugins/subscription
    55Description: Allow your customers to order once and get their products and services every month/week.
    6 Version: 1.1.3
     6Version: 1.1.4
    77Author: SpringDevs
    88Author URI: https://springdevs.com/
     
    6060     * @var string
    6161     */
    62     const version = '1.1.3';
     62    const version = '1.1.4';
    6363
    6464    /**
  • subscription/trunk/vendor/composer/installed.php

    r3088866 r3088896  
    44        'pretty_version' => 'dev-next',
    55        'version' => 'dev-next',
    6         'reference' => 'eaa883ba6d400ea16c91c80769450a361ad37e10',
     6        'reference' => 'be6337c567c89583e5bd8ff786e441c89b140ef6',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-next',
    1515            'version' => 'dev-next',
    16             'reference' => 'eaa883ba6d400ea16c91c80769450a361ad37e10',
     16            'reference' => 'be6337c567c89583e5bd8ff786e441c89b140ef6',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.