Plugin Directory

Changeset 2877949


Ignore:
Timestamp:
03/10/2023 02:44:05 PM (3 years ago)
Author:
david.kane
Message:

Tagging release v2.23.0

Location:
supapress/tags
Files:
4 edited
41 copied

Legend:

Unmodified
Added
Removed
  • supapress/tags/2.22.1/composer.json

    r2856101 r2877949  
    33    "description": "Quickly and easily connect your book metadata (ONIX) to your WordPress site.",
    44    "type": "wordpress-plugin",
    5     "version": "2.22.0",
     5    "version": "2.22.1",
    66    "authors": [
    77        {
  • supapress/tags/2.22.1/includes/book.php

    r2389550 r2877949  
    751751                if ( isset( $this->properties['sales_date_format'] ) && $this->properties['sales_date_format'] !== '' ) {
    752752                    $d    = new DateTime( $date, new DateTimeZone( $salesDate->timezone ) );
    753                     $date = $d->format( $this->properties['pub_date_format'] );
     753                    $date = $d->format( $this->properties['sales_date_format'] );
    754754                }
    755755
  • supapress/tags/2.22.1/includes/widget.php

    r2856087 r2877949  
    506506     * Checks attributes for known params and adds to service URL
    507507     */
    508     public function setAdditionalParams( $params, $atts ) {
     508    public static function setAdditionalParams( $params, $atts ) {
    509509        // Include price for other formats
    510510        if ( isset( $atts['include_price'] ) ) {
  • supapress/tags/2.22.1/readme.txt

    r2856101 r2877949  
    44Requires at least: 6.0
    55Tested up to: 6.1
    6 Stable tag: 2.22.0
     6Stable tag: 2.22.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3838
    3939== Changelog ==
     40
     41= 2.22.1 =
     42Release Date: January 2023
     43* Fix: error non static method
     44* Fix: sales_date_format fix
    4045
    4146= 2.22.0 =
  • supapress/tags/2.22.1/supapress.php

    r2856101 r2877949  
    77 * Plugin URI: https://www.supadu.com
    88 * Description: Quickly and easily connect your book metadata (ONIX) to your WordPress site.
    9  * Version: 2.22.0
     9 * Version: 2.22.1
    1010 * Author: Supadü
    1111 * Author URI: https://www.supadu.com
     
    3737defined( 'ABSPATH' ) or die( 'Illegal Access!' );
    3838
    39 define( 'SUPAPRESS_VERSION', '2.22.0' );
     39define( 'SUPAPRESS_VERSION', '2.22.1' );
    4040
    4141define( 'SUPAPRESS_SITE_URL', get_site_url() );
  • supapress/tags/2.22.2/composer.json

    r2856101 r2877949  
    33    "description": "Quickly and easily connect your book metadata (ONIX) to your WordPress site.",
    44    "type": "wordpress-plugin",
    5     "version": "2.22.0",
     5    "version": "2.22.2",
    66    "authors": [
    77        {
  • supapress/tags/2.22.2/includes/book.php

    r2389550 r2877949  
    751751                if ( isset( $this->properties['sales_date_format'] ) && $this->properties['sales_date_format'] !== '' ) {
    752752                    $d    = new DateTime( $date, new DateTimeZone( $salesDate->timezone ) );
    753                     $date = $d->format( $this->properties['pub_date_format'] );
     753                    $date = $d->format( $this->properties['sales_date_format'] );
    754754                }
    755755
  • supapress/tags/2.22.2/includes/widget.php

    r2856087 r2877949  
    506506     * Checks attributes for known params and adds to service URL
    507507     */
    508     public function setAdditionalParams( $params, $atts ) {
     508    public static function setAdditionalParams( $params, $atts ) {
    509509        // Include price for other formats
    510510        if ( isset( $atts['include_price'] ) ) {
  • supapress/tags/2.22.2/readme.txt

    r2856101 r2877949  
    44Requires at least: 6.0
    55Tested up to: 6.1
    6 Stable tag: 2.22.0
     6Stable tag: 2.22.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3838
    3939== Changelog ==
     40
     41= 2.22.2 =
     42Release Date: January 2023
     43* Fix: SVN issue
     44
     45= 2.22.1 =
     46Release Date: January 2023
     47* Fix: error non static method
     48* Fix: sales_date_format fix
    4049
    4150= 2.22.0 =
  • supapress/tags/2.22.2/supapress.php

    r2856101 r2877949  
    77 * Plugin URI: https://www.supadu.com
    88 * Description: Quickly and easily connect your book metadata (ONIX) to your WordPress site.
    9  * Version: 2.22.0
     9 * Version: 2.22.2
    1010 * Author: Supadü
    1111 * Author URI: https://www.supadu.com
     
    3737defined( 'ABSPATH' ) or die( 'Illegal Access!' );
    3838
    39 define( 'SUPAPRESS_VERSION', '2.22.0' );
     39define( 'SUPAPRESS_VERSION', '2.22.2' );
    4040
    4141define( 'SUPAPRESS_SITE_URL', get_site_url() );
  • supapress/tags/2.22.3/composer.json

    r2856101 r2877949  
    33    "description": "Quickly and easily connect your book metadata (ONIX) to your WordPress site.",
    44    "type": "wordpress-plugin",
    5     "version": "2.22.0",
     5    "version": "2.22.1",
    66    "authors": [
    77        {
  • supapress/tags/2.22.3/includes/book.php

    r2389550 r2877949  
    751751                if ( isset( $this->properties['sales_date_format'] ) && $this->properties['sales_date_format'] !== '' ) {
    752752                    $d    = new DateTime( $date, new DateTimeZone( $salesDate->timezone ) );
    753                     $date = $d->format( $this->properties['pub_date_format'] );
     753                    $date = $d->format( $this->properties['sales_date_format'] );
    754754                }
    755755
  • supapress/tags/2.22.3/includes/widget.php

    r2856087 r2877949  
    506506     * Checks attributes for known params and adds to service URL
    507507     */
    508     public function setAdditionalParams( $params, $atts ) {
     508    public static function setAdditionalParams( $params, $atts ) {
    509509        // Include price for other formats
    510510        if ( isset( $atts['include_price'] ) ) {
  • supapress/tags/2.22.3/readme.txt

    r2856101 r2877949  
    44Requires at least: 6.0
    55Tested up to: 6.1
    6 Stable tag: 2.22.0
     6Stable tag: 2.22.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3838
    3939== Changelog ==
     40
     41= 2.22.1 =
     42Release Date: January 2023
     43* Fix: error non static method
     44* Fix: sales_date_format fix
    4045
    4146= 2.22.0 =
  • supapress/tags/2.22.3/supapress.php

    r2856101 r2877949  
    77 * Plugin URI: https://www.supadu.com
    88 * Description: Quickly and easily connect your book metadata (ONIX) to your WordPress site.
    9  * Version: 2.22.0
     9 * Version: 2.22.1
    1010 * Author: Supadü
    1111 * Author URI: https://www.supadu.com
     
    3737defined( 'ABSPATH' ) or die( 'Illegal Access!' );
    3838
    39 define( 'SUPAPRESS_VERSION', '2.22.0' );
     39define( 'SUPAPRESS_VERSION', '2.22.1' );
    4040
    4141define( 'SUPAPRESS_SITE_URL', get_site_url() );
  • supapress/tags/2.22.4/composer.json

    r2856101 r2877949  
    33    "description": "Quickly and easily connect your book metadata (ONIX) to your WordPress site.",
    44    "type": "wordpress-plugin",
    5     "version": "2.22.0",
     5    "version": "2.22.4",
    66    "authors": [
    77        {
  • supapress/tags/2.22.4/includes/book.php

    r2389550 r2877949  
    751751                if ( isset( $this->properties['sales_date_format'] ) && $this->properties['sales_date_format'] !== '' ) {
    752752                    $d    = new DateTime( $date, new DateTimeZone( $salesDate->timezone ) );
    753                     $date = $d->format( $this->properties['pub_date_format'] );
     753                    $date = $d->format( $this->properties['sales_date_format'] );
    754754                }
    755755
  • supapress/tags/2.22.4/includes/widget.php

    r2856087 r2877949  
    506506     * Checks attributes for known params and adds to service URL
    507507     */
    508     public function setAdditionalParams( $params, $atts ) {
     508    public static function setAdditionalParams( $params, $atts ) {
    509509        // Include price for other formats
    510510        if ( isset( $atts['include_price'] ) ) {
  • supapress/tags/2.22.4/readme.txt

    r2856101 r2877949  
    44Requires at least: 6.0
    55Tested up to: 6.1
    6 Stable tag: 2.22.0
     6Stable tag: 2.22.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3838
    3939== Changelog ==
     40
     41= 2.22.4 =
     42Release Date: January 2023
     43* Fix: fix issue with SVN from previous release
     44
     45= 2.22.1 =
     46Release Date: January 2023
     47* Fix: error non static method
     48* Fix: sales_date_format fix
    4049
    4150= 2.22.0 =
  • supapress/tags/2.22.4/supapress.php

    r2856101 r2877949  
    77 * Plugin URI: https://www.supadu.com
    88 * Description: Quickly and easily connect your book metadata (ONIX) to your WordPress site.
    9  * Version: 2.22.0
     9 * Version: 2.22.4
    1010 * Author: Supadü
    1111 * Author URI: https://www.supadu.com
     
    3737defined( 'ABSPATH' ) or die( 'Illegal Access!' );
    3838
    39 define( 'SUPAPRESS_VERSION', '2.22.0' );
     39define( 'SUPAPRESS_VERSION', '2.22.4' );
    4040
    4141define( 'SUPAPRESS_SITE_URL', get_site_url() );
Note: See TracChangeset for help on using the changeset viewer.