Plugin Directory

Changeset 3378896


Ignore:
Timestamp:
10/15/2025 12:53:59 PM (6 months ago)
Author:
clonable
Message:

version 2.7.1

Location:
clonable
Files:
123 added
12 edited

Legend:

Unmodified
Added
Removed
  • clonable/trunk/clonable-wp.php

    r3377392 r3378896  
    55Description: Official plugin for improving your clones made with Clonable.
    66Plugin URI: https://kb.clonable.net/en/introduction/getting-started/wordpress#de-clonable-plug-in-downloaden
    7 Version: 2.7.0
     7Version: 2.7.1
    88Author: Clonable BV
    99Author URI: https://www.clonable.net
     
    115115
    116116define('CLONABLE_NAME', 'Clonable');
    117 define('CLONABLE_VERSION', '2.7.0');
     117define('CLONABLE_VERSION', '2.7.1');
    118118
    119119if (defined('WP_CLI') && WP_CLI) {
  • clonable/trunk/objects/ClonableConfig.php

    r3012325 r3378896  
    1717    const UT_API_ENDPOINT = 'ut.api.clonable.net';
    1818    const SERVER_IP = '89.41.171.180';
     19    const SERVER_IPV6 = '2a01:7c8:e001:d9:0:0:0:e778';
    1920    const CP_API_ENDPOINT = 'api.clonable.net';
    2021    const MODULES_ENDPOINT = 'modules.clonable.net';
  • clonable/trunk/objects/CurlBuilder.php

    r3121209 r3378896  
    2626        curl_setopt($this->curl, CURLOPT_HEADER, true);                   // get header response
    2727        curl_setopt($this->curl, CURLOPT_SSL_VERIFYPEER, false);          // don't care about SSL
    28         curl_setopt($this->curl, CURLOPT_RESOLVE, ["$site_url:443:" . ClonableConfig::SERVER_IP]);
     28        curl_setopt($this->curl, CURLOPT_RESOLVE, ["$site_url:443:" . ClonableConfig::SERVER_IP . ',[' . ClonableConfig::SERVER_IPV6 .']']);
    2929        return $this;
    3030    }
  • clonable/trunk/readme-da_DK.txt

    r3377392 r3378896  
    55Tested up to: 6.8.2
    66Requires PHP: 7.2
    7 Stable tag: 2.7.0
     7Stable tag: 2.7.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.7.1
     35Added IPv6 compatibility
     36
    3437v2.7.0
    3538Improved compatibility with caching plugins
  • clonable/trunk/readme-de_DE.txt

    r3377392 r3378896  
    55Tested up to: 6.8.2
    66Requires PHP: 7.2
    7 Stable tag: 2.7.0
     7Stable tag: 2.7.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.7.1
     35Added IPv6 compatibility
     36
    3437v2.7.0
    3538Improved compatibility with caching plugins
  • clonable/trunk/readme-es_ES.txt

    r3377392 r3378896  
    55Tested up to: 6.8.2
    66Requires PHP: 7.2
    7 Stable tag: 2.7.0
     7Stable tag: 2.7.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.7.1
     35Added IPv6 compatibility
     36
    3437v2.7.0
    3538Improved compatibility with caching plugins
  • clonable/trunk/readme-fr_FR.txt

    r3377392 r3378896  
    55Tested up to: 6.8.2
    66Requires PHP: 7.2
    7 Stable tag: 2.7.0
     7Stable tag: 2.7.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.7.1
     35Added IPv6 compatibility
     36
    3437v2.7.0
    3538Improved compatibility with caching plugins
  • clonable/trunk/readme-it_IT.txt

    r3377392 r3378896  
    55Tested up to: 6.8.2
    66Requires PHP: 7.2
    7 Stable tag: 2.7.0
     7Stable tag: 2.7.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.7.1
     35Added IPv6 compatibility
     36
    3437v2.7.0
    3538Improved compatibility with caching plugins
  • clonable/trunk/readme-nb_NO.txt

    r3377392 r3378896  
    55Tested up to: 6.8.2
    66Requires PHP: 7.2
    7 Stable tag: 2.7.0
     7Stable tag: 2.7.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.7.1
     35Added IPv6 compatibility
     36
    3437v2.7.0
    3538Improved compatibility with caching plugins
  • clonable/trunk/readme-nl_NL.txt

    r3377392 r3378896  
    55Tested up to: 6.8.2
    66Requires PHP: 7.2
    7 Stable tag: 2.7.0
     7Stable tag: 2.7.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.7.1
     35Added IPv6 compatibility
     36
    3437v2.7.0
    3538Improved compatibility with caching plugins
  • clonable/trunk/readme-sv_SE.txt

    r3377392 r3378896  
    55Tested up to: 6.8.2
    66Requires PHP: 7.2
    7 Stable tag: 2.7.0
     7Stable tag: 2.7.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.7.1
     35Added IPv6 compatibility
     36
    3437v2.7.0
    3538Improved compatibility with caching plugins
  • clonable/trunk/readme.txt

    r3377392 r3378896  
    55Tested up to: 6.8.3
    66Requires PHP: 7.2
    7 Stable tag: 2.7.0
     7Stable tag: 2.7.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.7.1
     35Added IPv6 compatibility
     36
    3437v2.7.0
    3538Improved compatibility with caching plugins
Note: See TracChangeset for help on using the changeset viewer.