Plugin Directory

Changeset 3449719


Ignore:
Timestamp:
01/29/2026 02:37:51 PM (2 months ago)
Author:
grocerslist
Message:

Release v1.17.0

Location:
grocerslist
Files:
208 added
4 edited

Legend:

Unmodified
Added
Removed
  • grocerslist/trunk/README.md

    r3420504 r3449719  
    44Author: Grocers List, Engineering
    55Tested up to: 6.8
    6 Stable tag: 1.16.0
     6Stable tag: 1.17.0
    77Requires PHP: 7.0
    88License: GPLv3
     
    8080#### - 12/15/2025 - 1.16.0 - Add body classes for ad removal
    8181
     82#### - 01/29/2026 - 1.17.0 - Fix issue with PHP version 7.4
     83
    8284### Resources:
    8385
  • grocerslist/trunk/grocerslist.php

    r3420504 r3449719  
    77Requires PHP: 7.0
    88Tested up to: 6.8
    9 Version: 1.16.0
    10 Stable tag: 1.16.0
     9Version: 1.17.0
     10Stable tag: 1.17.0
    1111Author: Grocers List Engineering
    1212License: GPLv3
     
    1818if (!defined('ABSPATH')) exit;
    1919
    20 define('GROCERS_LIST_VERSION', '1.16.0');
     20define('GROCERS_LIST_VERSION', '1.17.0');
    2121define('GROCERS_LIST_PLUGIN_FILE', __FILE__);
    2222define('GROCERS_LIST_PLUGIN_DIR', __DIR__);
  • grocerslist/trunk/includes/Support/ContentFilter.php

    r3382109 r3449719  
    2727        $creatorSettings = $this->creatorSettingsFetcher->getCreatorSettings();
    2828
    29         if (!$creatorSettings?->provisioning?->appLinks?->hasAppLinksAddon) {
     29        $hasAppLinksAddon = $creatorSettings
     30            && isset($creatorSettings->provisioning)
     31            && isset($creatorSettings->provisioning->appLinks)
     32            && $creatorSettings->provisioning->appLinks->hasAppLinksAddon;
     33
     34        if (!$hasAppLinksAddon) {
    3035            return $this->removeDataAttributes($content);
    3136        }
  • grocerslist/trunk/vendor/composer/installed.php

    r3420504 r3449719  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '8f645d70825a0a1091fc97d74bd720fe328f925e',
     6        'reference' => 'e0354733f0f9b27e2e9d6d195c24fe0b10dbf67e',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-master',
    1515            'version' => 'dev-master',
    16             'reference' => '8f645d70825a0a1091fc97d74bd720fe328f925e',
     16            'reference' => 'e0354733f0f9b27e2e9d6d195c24fe0b10dbf67e',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.