Plugin Directory

Changeset 2036200


Ignore:
Timestamp:
02/21/2019 05:56:58 PM (7 years ago)
Author:
unbouncewordpress
Message:

Releasing version 1.0.44

Location:
unbounce
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • unbounce/tags/1.0.44/UBConfig.php

    r2005379 r2036200  
    66    const UB_PLUGIN_NAME           = 'ub-wordpress';
    77    const UB_CACHE_TIMEOUT_ENV_KEY = 'UB_WP_ROUTES_CACHE_EXP';
    8     const UB_USER_AGENT            = 'Unbounce WP Plugin 1.0.43';
    9     const UB_VERSION               = '1.0.43';
     8    const UB_USER_AGENT            = 'Unbounce WP Plugin 1.0.44';
     9    const UB_VERSION               = '1.0.44';
    1010
    1111  // Option keys
  • unbounce/tags/1.0.44/UBDiagnostics.php

    r2005379 r2036200  
    33class UBDiagnostics
    44{
    5     const SUPPORTED_PHP_VERSION = '5.6';
     5    const SUPPORTED_PHP_VERSION = '5.3';
    66    const SUPPORTED_WP_VERSION = '4.0';
    77
     
    101101        'PHP Version'             => phpversion(),
    102102        'WordPress Version'       => UBDiagnostics::wordpress_version(),
    103         'Unbounce Plugin Version' => '1.0.43',
     103        'Unbounce Plugin Version' => '1.0.44',
    104104        'Checks'                  => self::pp(UBDiagnostics::checks($domain, $domain_info)),
    105105        'Options'                 => self::pp(UBDiagnostics::ub_options()),
     
    179179            'php'                 => phpversion(),
    180180            'wordpress'           => UBDiagnostics::wordpress_version(),
    181             'plugin_version'      => '1.0.43',
     181            'plugin_version'      => '1.0.44',
    182182            'curl_installed'      => self::is_curl_installed(),
    183183            'xml_installed'       => self::is_xml_installed(),
  • unbounce/tags/1.0.44/Unbounce-Page.php

    r2005379 r2036200  
    44Plugin URI: http://unbounce.com
    55Description: Unbounce is the most powerful standalone landing page builder available.
    6 Version: 1.0.43
     6Version: 1.0.44
    77Author: Unbounce
    88Author URI: http://unbounce.com
  • unbounce/tags/1.0.44/readme.txt

    r2005379 r2036200  
    1 === Plugin Name ===
     1=== Unbounce Landing Pages ===
    22Contributors: unbouncewordpress
    33Tags: Unbounce, AB testing, A/B testing, split testing, CRO, conversion optimization, wordpress landing page, wp landing pages, splash pages, landing pages, squeeze pages, lead gen, lead generation, email list, responsive landing pages, templates, inbound marketing, ppc, analytics
    44Requires at least: 4.1.5
    5 Tested up to: 5.0
    6 Stable tag: 1.0.43
     5Tested up to: 5.1
     6Stable tag: 1.0.44
     7Requires PHP: 5.3
    78License: GPLv2 or later
    89License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    101102== Changelog ==
    102103
    103 = 1.0.43=
     104= 1.0.44 =
     105* Documentation updates to reflect minimum PHP requirements (currently 5.3)
     106* Tested with WP 5.1
     107
     108= 1.0.43 =
    104109* Fixes an issue handling cookies
    105110* Fixes an issue handling redirects
  • unbounce/tags/1.0.44/templates/main_authorized_footer.php

    r2005379 r2036200  
    2222  Click here for troubleshooting and plugin diagnostics
    2323</a>
    24 <p class="ub-version">Unbounce Version 1.0.43</p>
     24<p class="ub-version">Unbounce Version 1.0.44</p>
  • unbounce/tags/1.0.44/templates/main_unauthorized_footer.php

    r2005379 r2036200  
    55  Click here for troubleshooting and plugin diagnostics
    66</a>
    7 <p class="ub-version">Unbounce Version 1.0.43</p>
     7<p class="ub-version">Unbounce Version 1.0.44</p>
  • unbounce/trunk/UBConfig.php

    r2005379 r2036200  
    66    const UB_PLUGIN_NAME           = 'ub-wordpress';
    77    const UB_CACHE_TIMEOUT_ENV_KEY = 'UB_WP_ROUTES_CACHE_EXP';
    8     const UB_USER_AGENT            = 'Unbounce WP Plugin 1.0.43';
    9     const UB_VERSION               = '1.0.43';
     8    const UB_USER_AGENT            = 'Unbounce WP Plugin 1.0.44';
     9    const UB_VERSION               = '1.0.44';
    1010
    1111  // Option keys
  • unbounce/trunk/UBDiagnostics.php

    r2005379 r2036200  
    33class UBDiagnostics
    44{
    5     const SUPPORTED_PHP_VERSION = '5.6';
     5    const SUPPORTED_PHP_VERSION = '5.3';
    66    const SUPPORTED_WP_VERSION = '4.0';
    77
     
    101101        'PHP Version'             => phpversion(),
    102102        'WordPress Version'       => UBDiagnostics::wordpress_version(),
    103         'Unbounce Plugin Version' => '1.0.43',
     103        'Unbounce Plugin Version' => '1.0.44',
    104104        'Checks'                  => self::pp(UBDiagnostics::checks($domain, $domain_info)),
    105105        'Options'                 => self::pp(UBDiagnostics::ub_options()),
     
    179179            'php'                 => phpversion(),
    180180            'wordpress'           => UBDiagnostics::wordpress_version(),
    181             'plugin_version'      => '1.0.43',
     181            'plugin_version'      => '1.0.44',
    182182            'curl_installed'      => self::is_curl_installed(),
    183183            'xml_installed'       => self::is_xml_installed(),
  • unbounce/trunk/Unbounce-Page.php

    r2005379 r2036200  
    44Plugin URI: http://unbounce.com
    55Description: Unbounce is the most powerful standalone landing page builder available.
    6 Version: 1.0.43
     6Version: 1.0.44
    77Author: Unbounce
    88Author URI: http://unbounce.com
  • unbounce/trunk/readme.txt

    r2005379 r2036200  
    1 === Plugin Name ===
     1=== Unbounce Landing Pages ===
    22Contributors: unbouncewordpress
    33Tags: Unbounce, AB testing, A/B testing, split testing, CRO, conversion optimization, wordpress landing page, wp landing pages, splash pages, landing pages, squeeze pages, lead gen, lead generation, email list, responsive landing pages, templates, inbound marketing, ppc, analytics
    44Requires at least: 4.1.5
    5 Tested up to: 5.0
    6 Stable tag: 1.0.43
     5Tested up to: 5.1
     6Stable tag: 1.0.44
     7Requires PHP: 5.3
    78License: GPLv2 or later
    89License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    101102== Changelog ==
    102103
    103 = 1.0.43=
     104= 1.0.44 =
     105* Documentation updates to reflect minimum PHP requirements (currently 5.3)
     106* Tested with WP 5.1
     107
     108= 1.0.43 =
    104109* Fixes an issue handling cookies
    105110* Fixes an issue handling redirects
  • unbounce/trunk/templates/main_authorized_footer.php

    r2005379 r2036200  
    2222  Click here for troubleshooting and plugin diagnostics
    2323</a>
    24 <p class="ub-version">Unbounce Version 1.0.43</p>
     24<p class="ub-version">Unbounce Version 1.0.44</p>
  • unbounce/trunk/templates/main_unauthorized_footer.php

    r2005379 r2036200  
    55  Click here for troubleshooting and plugin diagnostics
    66</a>
    7 <p class="ub-version">Unbounce Version 1.0.43</p>
     7<p class="ub-version">Unbounce Version 1.0.44</p>
Note: See TracChangeset for help on using the changeset viewer.