Plugin Directory

Changeset 3238045


Ignore:
Timestamp:
02/10/2025 04:06:18 PM (11 months ago)
Author:
datafeedr.com
Message:

Update to version 1.3.24 from GitHub

Location:
datafeedr-api
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • datafeedr-api/tags/1.3.24/classes/class-dfrapi-searchform.php

    r2904614 r3238045  
    302302                'name'     => 'merchant_limit',
    303303                'input'    => 'select',
    304                 'options'  => array_filter( range( 0, 50 ), function ( $num ) {
     304                'options'  => array_filter( range( 0, 10 ), function ( $num ) {
    305305                    return $num != 0;
    306306                } ),
     
    10891089        // Merchant Limit
    10901090        $help['merchant_limit'] = '<h3>' . __('Merchant Limit', 'datafeedr-api' ) . '</h3>';
    1091         $help['merchant_limit'] .= '<p>' . __( 'Limit the number of items returned per merchant. The number must be between 1 and 50.', 'datafeedr-api' ) . '</p>';
     1091        $help['merchant_limit'] .= '<p>' . __( 'Limit the number of items returned per merchant. The number must be between 1 and 10.', 'datafeedr-api' ) . '</p>';
    10921092        $help['merchant_limit'] .= $this->help_tip( __( 'This is useful to use when you have one merchant which has many products that match your search but other merchants have fewer of those same products and you want equal distribution between all merchants.', 'datafeedr-api' ) );
    10931093
  • datafeedr-api/tags/1.3.24/datafeedr-api.php

    r3238038 r3238045  
    1111Requires at least: 3.8
    1212Tested up to: 6.7
    13 Version: 1.3.23
     13Version: 1.3.24
    1414
    1515Datafeedr API Plugin
     
    3333 * Define constants.
    3434 */
    35 define( 'DFRAPI_VERSION', '1.3.23' );
     35define( 'DFRAPI_VERSION', '1.3.24' );
    3636define( 'DFRAPI_URL', plugin_dir_url( __FILE__ ) ); // https://example.com/wp-content/plugins/datafeedr-api/
    3737define( 'DFRAPI_PATH', plugin_dir_path( __FILE__ ) ); // /absolute/path/to/wp-content/plugins/datafeedr-api/
  • datafeedr-api/tags/1.3.24/readme.txt

    r3238038 r3238045  
    88Requires at least: 3.8
    99Tested up to: 6.7
    10 Stable tag: 1.3.23
     10Stable tag: 1.3.24
    1111
    1212Connect to the Datafeedr API.
     
    7474
    7575== Changelog ==
     76
     77= 1.3.24 - 2025/02/10 =
     78* Fixed drop down for Merchant Limit search filter
    7679
    7780= 1.3.23 - 2025/02/10 =
  • datafeedr-api/trunk/classes/class-dfrapi-searchform.php

    r2904614 r3238045  
    302302                'name'     => 'merchant_limit',
    303303                'input'    => 'select',
    304                 'options'  => array_filter( range( 0, 50 ), function ( $num ) {
     304                'options'  => array_filter( range( 0, 10 ), function ( $num ) {
    305305                    return $num != 0;
    306306                } ),
     
    10891089        // Merchant Limit
    10901090        $help['merchant_limit'] = '<h3>' . __('Merchant Limit', 'datafeedr-api' ) . '</h3>';
    1091         $help['merchant_limit'] .= '<p>' . __( 'Limit the number of items returned per merchant. The number must be between 1 and 50.', 'datafeedr-api' ) . '</p>';
     1091        $help['merchant_limit'] .= '<p>' . __( 'Limit the number of items returned per merchant. The number must be between 1 and 10.', 'datafeedr-api' ) . '</p>';
    10921092        $help['merchant_limit'] .= $this->help_tip( __( 'This is useful to use when you have one merchant which has many products that match your search but other merchants have fewer of those same products and you want equal distribution between all merchants.', 'datafeedr-api' ) );
    10931093
  • datafeedr-api/trunk/datafeedr-api.php

    r3238038 r3238045  
    1111Requires at least: 3.8
    1212Tested up to: 6.7
    13 Version: 1.3.23
     13Version: 1.3.24
    1414
    1515Datafeedr API Plugin
     
    3333 * Define constants.
    3434 */
    35 define( 'DFRAPI_VERSION', '1.3.23' );
     35define( 'DFRAPI_VERSION', '1.3.24' );
    3636define( 'DFRAPI_URL', plugin_dir_url( __FILE__ ) ); // https://example.com/wp-content/plugins/datafeedr-api/
    3737define( 'DFRAPI_PATH', plugin_dir_path( __FILE__ ) ); // /absolute/path/to/wp-content/plugins/datafeedr-api/
  • datafeedr-api/trunk/readme.txt

    r3238038 r3238045  
    88Requires at least: 3.8
    99Tested up to: 6.7
    10 Stable tag: 1.3.23
     10Stable tag: 1.3.24
    1111
    1212Connect to the Datafeedr API.
     
    7474
    7575== Changelog ==
     76
     77= 1.3.24 - 2025/02/10 =
     78* Fixed drop down for Merchant Limit search filter
    7679
    7780= 1.3.23 - 2025/02/10 =
Note: See TracChangeset for help on using the changeset viewer.