Plugin Directory

Changeset 3157391


Ignore:
Timestamp:
09/25/2024 09:44:38 AM (18 months ago)
Author:
seebeen
Message:

Update to version 3.7.6 from GitHub

Location:
serbian-addons-for-woocommerce
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • serbian-addons-for-woocommerce/tags/3.7.6/lib/Serbian_WooCommerce.php

    r3157379 r3157391  
    7878        }
    7979
    80         $this->settings['enabled_customer_types'] ??= 'both';
    81         $this->settings['remove_unneeded_fields'] ??= false;
    82         $this->settings['fix_currency_symbol']    ??= true;
     80        $this->settings['core'] = \wp_parse_args(
     81            \array_filter( $this->settings['core'] ?? array() ),
     82            array(
     83                'enabled_customer_types' => 'both',
     84                'fix_currency_symbol'    => true,
     85                'remove_unneeded_fields' => false,
     86            ),
     87        );
    8388
    8489        $this->settings['company'] = array(
  • serbian-addons-for-woocommerce/tags/3.7.6/readme.txt

    r3157379 r3157391  
    88WC requires at least: 8.5
    99WC tested up to: 9.2
    10 Stable tag: 3.7.5
     10Stable tag: 3.7.6
    1111License: GPLv2 or later
    1212License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • serbian-addons-for-woocommerce/tags/3.7.6/serbian-addons-for-woocommerce.php

    r3157379 r3157391  
    44 * Plugin URI:           https://oblak.studio/open-source/srpski-woocommerce
    55 * Description:          Various addons and tweaks that make WooCommerce compatible with Serbian bureaucracy.
    6  * Version:              3.7.5
     6 * Version:              3.7.6
    77 * Requires PHP:         8.0
    88 * Author:               Oblak Studio
     
    2525defined( 'WCRS_PLUGIN_BASE' ) || define( 'WCRS_PLUGIN_BASE', plugin_basename( WCRS_PLUGIN_FILE ) );
    2626defined( 'WCRS_PLUGIN_PATH' ) || define( 'WCRS_PLUGIN_PATH', plugin_dir_path( WCRS_PLUGIN_FILE ) );
    27 defined( 'WCRS_VERSION' )     || define( 'WCRS_VERSION', '3.7.5' );
     27defined( 'WCRS_VERSION' )     || define( 'WCRS_VERSION', '3.7.6' );
    2828// phpcs:enable WordPress.WhiteSpace.OperatorSpacing.SpacingBefore
    2929
  • serbian-addons-for-woocommerce/trunk/lib/Serbian_WooCommerce.php

    r3157379 r3157391  
    7878        }
    7979
    80         $this->settings['enabled_customer_types'] ??= 'both';
    81         $this->settings['remove_unneeded_fields'] ??= false;
    82         $this->settings['fix_currency_symbol']    ??= true;
     80        $this->settings['core'] = \wp_parse_args(
     81            \array_filter( $this->settings['core'] ?? array() ),
     82            array(
     83                'enabled_customer_types' => 'both',
     84                'fix_currency_symbol'    => true,
     85                'remove_unneeded_fields' => false,
     86            ),
     87        );
    8388
    8489        $this->settings['company'] = array(
  • serbian-addons-for-woocommerce/trunk/readme.txt

    r3157379 r3157391  
    88WC requires at least: 8.5
    99WC tested up to: 9.2
    10 Stable tag: 3.7.5
     10Stable tag: 3.7.6
    1111License: GPLv2 or later
    1212License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • serbian-addons-for-woocommerce/trunk/serbian-addons-for-woocommerce.php

    r3157379 r3157391  
    44 * Plugin URI:           https://oblak.studio/open-source/srpski-woocommerce
    55 * Description:          Various addons and tweaks that make WooCommerce compatible with Serbian bureaucracy.
    6  * Version:              3.7.5
     6 * Version:              3.7.6
    77 * Requires PHP:         8.0
    88 * Author:               Oblak Studio
     
    2525defined( 'WCRS_PLUGIN_BASE' ) || define( 'WCRS_PLUGIN_BASE', plugin_basename( WCRS_PLUGIN_FILE ) );
    2626defined( 'WCRS_PLUGIN_PATH' ) || define( 'WCRS_PLUGIN_PATH', plugin_dir_path( WCRS_PLUGIN_FILE ) );
    27 defined( 'WCRS_VERSION' )     || define( 'WCRS_VERSION', '3.7.5' );
     27defined( 'WCRS_VERSION' )     || define( 'WCRS_VERSION', '3.7.6' );
    2828// phpcs:enable WordPress.WhiteSpace.OperatorSpacing.SpacingBefore
    2929
Note: See TracChangeset for help on using the changeset viewer.