Plugin Directory

Changeset 3414869


Ignore:
Timestamp:
12/09/2025 04:08:45 AM (4 months ago)
Author:
linguise
Message:

Updating to version 2.2.8

Location:
linguise
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • linguise/tags/2.2.8/linguise.php

    r3413813 r3414869  
    55 * Plugin URI: https://www.linguise.com/
    66 * Description: Linguise translation plugin
    7  * Version:2.2.7
     7 * Version:2.2.8
    88 * Text Domain: linguise
    99 * Domain Path: /languages
  • linguise/tags/2.2.8/readme.txt

    r3413813 r3414869  
    44Requires at least: 4.0
    55Tested up to: 6.9
    6 Stable tag: 2.2.7
     6Stable tag: 2.2.8
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    108108== Changelog ==
    109109
     110= 2.2.8 =
     111- Fix: WooCommerce Stripe Gateway not loaded in classic checkout
     112
    110113= 2.2.7 =
    111114- Fix: Issues with style not enqueueing in WP 6.9
  • linguise/tags/2.2.8/src/FragmentBase.php

    r3413813 r3414869  
    455455     * @return boolean|null - True if it's allowed, false if it's not
    456456     */
    457     protected static function isKeyAllowed($key, $full_key)
     457    public static function isKeyAllowed($key, $full_key)
    458458    {
    459459        $wp_frag_list = self::getKeyFilters();
  • linguise/tags/2.2.8/src/constants.php

    r3413813 r3414869  
    11<?php
    22if (!defined('LINGUISE_SCRIPT_TRANSLATION_VERSION')) {
    3     define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.7');
     3    define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.8');
    44}
    55
    66if (!defined('LINGUISE_VERSION')) {
    7     define('LINGUISE_VERSION', '2.2.7');
     7    define('LINGUISE_VERSION', '2.2.8');
    88}
  • linguise/tags/2.2.8/src/thirdparty/wc/woocommerce.php

    r3397694 r3414869  
    182182            'Cart-Hash',
    183183            'Cart-Token',
     184            'wcpbc_currency',
     185            'wcpbc_stripe_upe',
    184186        ];
    185187        foreach ($exact_disallowed as $disallowed_key) {
     
    624626        } elseif (is_array($data)) {
    625627            foreach ($data as $class => $fragment) {
     628                if (!is_string($fragment)) {
     629                    continue; // Ignore non-string fragments
     630                }
     631
    626632                $html_content .= '<divlinguise data-wp-linguise-class="' . $class . '">' . $fragment . '</divlinguise>';
    627633            }
  • linguise/tags/2.2.8/vendor/composer/installed.php

    r3413813 r3414869  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '977edba05e2b23018e0cc6a5892ac6ec2bcf72a5',
     6        'reference' => 'f8f2694687b16eae024c3b452a76905f49879d9f',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    3232            'pretty_version' => 'dev-master',
    3333            'version' => 'dev-master',
    34             'reference' => '977edba05e2b23018e0cc6a5892ac6ec2bcf72a5',
     34            'reference' => 'f8f2694687b16eae024c3b452a76905f49879d9f',
    3535            'type' => 'library',
    3636            'install_path' => __DIR__ . '/../../',
  • linguise/trunk/linguise.php

    r3413813 r3414869  
    55 * Plugin URI: https://www.linguise.com/
    66 * Description: Linguise translation plugin
    7  * Version:2.2.7
     7 * Version:2.2.8
    88 * Text Domain: linguise
    99 * Domain Path: /languages
  • linguise/trunk/readme.txt

    r3413813 r3414869  
    44Requires at least: 4.0
    55Tested up to: 6.9
    6 Stable tag: 2.2.7
     6Stable tag: 2.2.8
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    108108== Changelog ==
    109109
     110= 2.2.8 =
     111- Fix: WooCommerce Stripe Gateway not loaded in classic checkout
     112
    110113= 2.2.7 =
    111114- Fix: Issues with style not enqueueing in WP 6.9
  • linguise/trunk/src/FragmentBase.php

    r3413813 r3414869  
    455455     * @return boolean|null - True if it's allowed, false if it's not
    456456     */
    457     protected static function isKeyAllowed($key, $full_key)
     457    public static function isKeyAllowed($key, $full_key)
    458458    {
    459459        $wp_frag_list = self::getKeyFilters();
  • linguise/trunk/src/constants.php

    r3413813 r3414869  
    11<?php
    22if (!defined('LINGUISE_SCRIPT_TRANSLATION_VERSION')) {
    3     define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.7');
     3    define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.8');
    44}
    55
    66if (!defined('LINGUISE_VERSION')) {
    7     define('LINGUISE_VERSION', '2.2.7');
     7    define('LINGUISE_VERSION', '2.2.8');
    88}
  • linguise/trunk/src/thirdparty/wc/woocommerce.php

    r3397694 r3414869  
    182182            'Cart-Hash',
    183183            'Cart-Token',
     184            'wcpbc_currency',
     185            'wcpbc_stripe_upe',
    184186        ];
    185187        foreach ($exact_disallowed as $disallowed_key) {
     
    624626        } elseif (is_array($data)) {
    625627            foreach ($data as $class => $fragment) {
     628                if (!is_string($fragment)) {
     629                    continue; // Ignore non-string fragments
     630                }
     631
    626632                $html_content .= '<divlinguise data-wp-linguise-class="' . $class . '">' . $fragment . '</divlinguise>';
    627633            }
  • linguise/trunk/vendor/composer/installed.php

    r3413813 r3414869  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '977edba05e2b23018e0cc6a5892ac6ec2bcf72a5',
     6        'reference' => 'f8f2694687b16eae024c3b452a76905f49879d9f',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    3232            'pretty_version' => 'dev-master',
    3333            'version' => 'dev-master',
    34             'reference' => '977edba05e2b23018e0cc6a5892ac6ec2bcf72a5',
     34            'reference' => 'f8f2694687b16eae024c3b452a76905f49879d9f',
    3535            'type' => 'library',
    3636            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.