Plugin Directory

Changeset 3475432


Ignore:
Timestamp:
03/05/2026 10:08:40 AM (4 weeks ago)
Author:
printdotcom
Message:

Update to version 1.1.1 from GitHub

Location:
pdc-pod
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • pdc-pod/tags/1.1.1/CHANGELOG.md

    r3472718 r3475432  
    55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     7
     8## [1.1.1]
     9
     10### Changed
     11
     12- sort presets alphabetically
    713
    814## [1.1.0]
  • pdc-pod/tags/1.1.1/README.txt

    r3472718 r3475432  
    55Requires at least: 3.4
    66Tested up to: 6.9
    7 Stable tag: 1.1.0
     7Stable tag: 1.1.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4141== Changelog ==
    4242
     43= 1.1.1 =
     44
     45* fix: sort presets alphabetically
     46
    4347= 1.1.0 =
    4448
  • pdc-pod/tags/1.1.1/admin/PrintDotCom/APIClient.php

    r3472718 r3475432  
    194194            }
    195195        );
     196
     197        usort(
     198            $filtered_by_sku,
     199            fn( $a, $b ) => strnatcasecmp( $a->title, $b->title )
     200        );
     201
    196202        return array_values( $filtered_by_sku );
    197203    }
  • pdc-pod/tags/1.1.1/pdc-pod.php

    r3472718 r3475432  
    2525 * Plugin URI:        https://github.com/printdotcom/pdc-pod
    2626 * Description:       Allows customers to configure, edit and purchase products via the Print.com API.
    27  * Version:           1.1.0
     27 * Version:           1.1.1
    2828 * Author:            Print.com
    2929 * Author URI:        https://print.com
     
    5555 * @var string PDC_POD_VERSION Plugin version.
    5656 */
    57 define( 'PDC_POD_VERSION', '1.1.0' );
     57define( 'PDC_POD_VERSION', '1.1.1' );
    5858
    5959/**
  • pdc-pod/tags/1.1.1/vendor/composer/installed.php

    r3472718 r3475432  
    22    'root' => array(
    33        'name' => 'printdotcom/pdc-pod',
    4         'pretty_version' => '1.1.0',
    5         'version' => '1.1.0.0',
    6         'reference' => '96adc93385da83cf65ae618c57ff9a2101a05e35',
     4        'pretty_version' => '1.1.1',
     5        'version' => '1.1.1.0',
     6        'reference' => '66f6e76e4750741cb37de30d3be866453c2729c6',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'printdotcom/pdc-pod' => array(
    14             'pretty_version' => '1.1.0',
    15             'version' => '1.1.0.0',
    16             'reference' => '96adc93385da83cf65ae618c57ff9a2101a05e35',
     14            'pretty_version' => '1.1.1',
     15            'version' => '1.1.1.0',
     16            'reference' => '66f6e76e4750741cb37de30d3be866453c2729c6',
    1717            'type' => 'project',
    1818            'install_path' => __DIR__ . '/../../',
  • pdc-pod/trunk/CHANGELOG.md

    r3472718 r3475432  
    55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     7
     8## [1.1.1]
     9
     10### Changed
     11
     12- sort presets alphabetically
    713
    814## [1.1.0]
  • pdc-pod/trunk/README.txt

    r3472718 r3475432  
    55Requires at least: 3.4
    66Tested up to: 6.9
    7 Stable tag: 1.1.0
     7Stable tag: 1.1.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4141== Changelog ==
    4242
     43= 1.1.1 =
     44
     45* fix: sort presets alphabetically
     46
    4347= 1.1.0 =
    4448
  • pdc-pod/trunk/admin/PrintDotCom/APIClient.php

    r3472718 r3475432  
    194194            }
    195195        );
     196
     197        usort(
     198            $filtered_by_sku,
     199            fn( $a, $b ) => strnatcasecmp( $a->title, $b->title )
     200        );
     201
    196202        return array_values( $filtered_by_sku );
    197203    }
  • pdc-pod/trunk/pdc-pod.php

    r3472718 r3475432  
    2525 * Plugin URI:        https://github.com/printdotcom/pdc-pod
    2626 * Description:       Allows customers to configure, edit and purchase products via the Print.com API.
    27  * Version:           1.1.0
     27 * Version:           1.1.1
    2828 * Author:            Print.com
    2929 * Author URI:        https://print.com
     
    5555 * @var string PDC_POD_VERSION Plugin version.
    5656 */
    57 define( 'PDC_POD_VERSION', '1.1.0' );
     57define( 'PDC_POD_VERSION', '1.1.1' );
    5858
    5959/**
  • pdc-pod/trunk/vendor/composer/installed.php

    r3472718 r3475432  
    22    'root' => array(
    33        'name' => 'printdotcom/pdc-pod',
    4         'pretty_version' => '1.1.0',
    5         'version' => '1.1.0.0',
    6         'reference' => '96adc93385da83cf65ae618c57ff9a2101a05e35',
     4        'pretty_version' => '1.1.1',
     5        'version' => '1.1.1.0',
     6        'reference' => '66f6e76e4750741cb37de30d3be866453c2729c6',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'printdotcom/pdc-pod' => array(
    14             'pretty_version' => '1.1.0',
    15             'version' => '1.1.0.0',
    16             'reference' => '96adc93385da83cf65ae618c57ff9a2101a05e35',
     14            'pretty_version' => '1.1.1',
     15            'version' => '1.1.1.0',
     16            'reference' => '66f6e76e4750741cb37de30d3be866453c2729c6',
    1717            'type' => 'project',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.