Plugin Directory

Changeset 2243350


Ignore:
Timestamp:
02/12/2020 06:07:25 PM (6 years ago)
Author:
layotte
Message:

Tagging 2.1.2

Location:
ithemes-sync
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ithemes-sync/tags/2.1.2/history.txt

    r2225554 r2243350  
    2232232.1.1 - 2020-01-10 - Josh Oakes
    224224    Bug Fix: Remove use of function that was deprecated in PHP 7.4
     2252.1.2 - 2020-02-10 - Josh Oakes
     226    Bug Fix: Fix PHP warning when updating plugins & themes on WP 5.3+
  • ithemes-sync/tags/2.1.2/init.php

    r2225554 r2243350  
    55Description: Manage updates to your WordPress sites easily in one place.
    66Author: iThemes
    7 Version: 2.1.1
     7Version: 2.1.2
    88Author URI: http://ithemes.com/
    99Domain Path: /lang/
     
    2525
    2626    return;
     27}
     28
     29// Show warning PHP versions < 5.6
     30if ( PHP_VERSION_ID < 50600 ) {
     31    add_action( 'admin_notices', function () {
     32        echo '<div class="notice notice-error"><p>';
     33        echo __( 'iThemes Sync requires PHP 5.6 or greater. Please update you PHP version to ensure all features work properly.', 'it-l10n-ithemes-sync' );
     34        echo '</p></div>';
     35    }, 0 );
    2736}
    2837
  • ithemes-sync/tags/2.1.2/lang/ithemes-sync.pot

    r2225554 r2243350  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: iThemes Sync 2.1.1\n"
     5"Project-Id-Version: iThemes Sync 2.1.2\n"
    66"Report-Msgid-Bugs-To: http://ithemes.com/support/\n"
    7 "POT-Creation-Date: 2020-01-10 17:16:27+00:00\n"
     7"POT-Creation-Date: 2020-02-12 18:00:57+00:00\n"
    88"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
    99"MIME-Version: 1.0\n"
     
    6767msgstr ""
    6868
     69#: init.php:33
     70msgid "iThemes Sync requires PHP 5.6 or greater. Please update you PHP version to ensure all features work properly."
     71msgstr ""
     72
    6973#: lib/updater/admin.php:177
    7074msgid "To receive automatic updates for %l, use the <a href=\"%s\">iThemes Licensing</a> page found in the Settings menu."
  • ithemes-sync/tags/2.1.2/readme.txt

    r2225554 r2243350  
    33Tags: manage multiple Sites, backup, security, migrate, SEO, manage updates, administration, update manager, reports, sync, google analytics, optimize, uptime, ithemes, customize dashboard, client sites, maintenance, management, google webmaster tools, reporting
    44Requires at least: 4.5
    5 Tested up to: 5.3
    6 Stable tag: 2.1.1
     5Requires PHP: 5.6
     6Tested up to: 5.4
     7Stable tag: 2.1.2
    78License: GPLv3 or later
    89License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html
     
    8788== Changelog ==
    8889
     90= 2.1.2 =
     91* Bug Fix: Fix PHP warning when updating plugins & themes on WP 5.3+
     92
    8993= 2.1.1 =
    9094* Bug Fix: Remove use of function that was deprecated in PHP 7.4
  • ithemes-sync/tags/2.1.2/upgrader-skin.php

    r1669854 r2243350  
    99    1.0.0 - 2013-11-05 - Chris Jean
    1010        Initial version
     11    2.1.2 - 2020-02-10 - Josh Oakes
     12        Add support for second argument in feedback method
    1113*/
    1214
     
    2022    function after( $title = '' ) {}
    2123    function error( $errors ) {}
    22     function feedback( $string ) {}
     24    function feedback( $string, ...$args ) {}
    2325}
  • ithemes-sync/trunk/history.txt

    r2225554 r2243350  
    2232232.1.1 - 2020-01-10 - Josh Oakes
    224224    Bug Fix: Remove use of function that was deprecated in PHP 7.4
     2252.1.2 - 2020-02-10 - Josh Oakes
     226    Bug Fix: Fix PHP warning when updating plugins & themes on WP 5.3+
  • ithemes-sync/trunk/init.php

    r2225554 r2243350  
    55Description: Manage updates to your WordPress sites easily in one place.
    66Author: iThemes
    7 Version: 2.1.1
     7Version: 2.1.2
    88Author URI: http://ithemes.com/
    99Domain Path: /lang/
     
    2525
    2626    return;
     27}
     28
     29// Show warning PHP versions < 5.6
     30if ( PHP_VERSION_ID < 50600 ) {
     31    add_action( 'admin_notices', function () {
     32        echo '<div class="notice notice-error"><p>';
     33        echo __( 'iThemes Sync requires PHP 5.6 or greater. Please update you PHP version to ensure all features work properly.', 'it-l10n-ithemes-sync' );
     34        echo '</p></div>';
     35    }, 0 );
    2736}
    2837
  • ithemes-sync/trunk/lang/ithemes-sync.pot

    r2225554 r2243350  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: iThemes Sync 2.1.1\n"
     5"Project-Id-Version: iThemes Sync 2.1.2\n"
    66"Report-Msgid-Bugs-To: http://ithemes.com/support/\n"
    7 "POT-Creation-Date: 2020-01-10 17:16:27+00:00\n"
     7"POT-Creation-Date: 2020-02-12 18:00:57+00:00\n"
    88"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
    99"MIME-Version: 1.0\n"
     
    6767msgstr ""
    6868
     69#: init.php:33
     70msgid "iThemes Sync requires PHP 5.6 or greater. Please update you PHP version to ensure all features work properly."
     71msgstr ""
     72
    6973#: lib/updater/admin.php:177
    7074msgid "To receive automatic updates for %l, use the <a href=\"%s\">iThemes Licensing</a> page found in the Settings menu."
  • ithemes-sync/trunk/readme.txt

    r2225554 r2243350  
    33Tags: manage multiple Sites, backup, security, migrate, SEO, manage updates, administration, update manager, reports, sync, google analytics, optimize, uptime, ithemes, customize dashboard, client sites, maintenance, management, google webmaster tools, reporting
    44Requires at least: 4.5
    5 Tested up to: 5.3
    6 Stable tag: 2.1.1
     5Requires PHP: 5.6
     6Tested up to: 5.4
     7Stable tag: 2.1.2
    78License: GPLv3 or later
    89License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html
     
    8788== Changelog ==
    8889
     90= 2.1.2 =
     91* Bug Fix: Fix PHP warning when updating plugins & themes on WP 5.3+
     92
    8993= 2.1.1 =
    9094* Bug Fix: Remove use of function that was deprecated in PHP 7.4
  • ithemes-sync/trunk/upgrader-skin.php

    r1669854 r2243350  
    99    1.0.0 - 2013-11-05 - Chris Jean
    1010        Initial version
     11    2.1.2 - 2020-02-10 - Josh Oakes
     12        Add support for second argument in feedback method
    1113*/
    1214
     
    2022    function after( $title = '' ) {}
    2123    function error( $errors ) {}
    22     function feedback( $string ) {}
     24    function feedback( $string, ...$args ) {}
    2325}
Note: See TracChangeset for help on using the changeset viewer.