Plugin Directory

Changeset 3019115


Ignore:
Timestamp:
01/09/2024 08:46:20 AM (2 years ago)
Author:
thingsym
Message:

Update to version 1.7.2 from GitHub

Location:
wp-auto-updater
Files:
2 deleted
16 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wp-auto-updater/tags/1.7.2/inc/class-wp-auto-updater-history.php

    r2991877 r3019115  
    544544        $paginate .= ' ' . $current_paged . ' / ' . $total_pages . ' ';
    545545
    546         // $paginate .= sprintf(
    547         //  " %s<input class='current-page' id='current-page-selector' type='text' name='paged' value='%s' size='%d' aria-describedby='table-paging' /><span class='tablenav-paging-text'>",
    548         //  '<label for="current-page-selector" class="screen-reader-text">' . __( 'Current Page' ) . '</label>',
    549         //  $current_paged,
    550         //  strlen( $total_pages )
    551         // );
    552         // $paginate .= ' / ' . $total_pages . ' ';
    553 
    554546        if ( $current_paged === $total_pages ) {
    555547            $paginate .= '<span class="tablenav-pages-navspan button disabled" aria-hidden="true">&rsaquo;</span>';
     
    613605        $screen_option = $screen->get_option( 'per_page', 'option' );
    614606        $per_page      = get_user_meta( get_current_user_id(), $screen_option, true );
    615         if ( empty ( $per_page) || $per_page < 1 ) {
     607        if ( empty( $per_page ) || $per_page < 1 ) {
    616608            $per_page = 10;
    617609        }
  • wp-auto-updater/tags/1.7.2/inc/class-wp-auto-updater-notification.php

    r2991877 r3019115  
    657657        }
    658658
    659         $output['mail']['recipients'] = isset( $input['mail']['recipients'] ) ? $input['mail']['recipients'] : array();
     659        $output['mail']['recipients'] = isset( $input['mail']['recipients'] ) ? array_map( 'intval', $input['mail']['recipients'] ) : array();
    660660
    661661        $output = apply_filters( 'wp_auto_updater_notification/validate_options', $output, $input, $this->default_options );
  • wp-auto-updater/tags/1.7.2/inc/class-wp-auto-updater.php

    r2991877 r3019115  
    503503        }
    504504
    505         return apply_filters( 'wp_auto_updater/get_timestamp', $timestamp, $schedule );
     505        return apply_filters( 'wp_auto_updater/get_timestamp', (int) $timestamp, $schedule );
    506506    }
    507507
  • wp-auto-updater/tags/1.7.2/languages/wp-auto-updater-ja.po

    r2991877 r3019115  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Auto Updater 1.7.1\n"
     5"Project-Id-Version: WP Auto Updater 1.7.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-auto-updater\n"
    77"POT-Creation-Date: 2023-11-08T09:27:18+00:00\n"
  • wp-auto-updater/tags/1.7.2/languages/wp-auto-updater.pot

    r2991877 r3019115  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Auto Updater 1.7.1\n"
     5"Project-Id-Version: WP Auto Updater 1.7.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-auto-updater\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  • wp-auto-updater/tags/1.7.2/readme.txt

    r2991877 r3019115  
    44Donate link: https://github.com/sponsors/thingsym
    55Tags: updates, auto update, automatic updates, background updates, core updates, theme updates, translation updates, plugin updates
    6 Stable tag: 1.7.1
     6Stable tag: 1.7.2
    77Tested up to: 6.4.0
    88Requires at least: 4.9
     
    160160
    161161== Changelog ==
     162
     163= 1.7.2 =
     164* add php 8.3 to matrix and actions/checkout bump up for ci
     165* imporve code with phpcs
     166* change the type of a variable
     167* add phpunit-legacy job to ci
    162168
    163169= 1.7.1 =
  • wp-auto-updater/tags/1.7.2/wp-auto-updater.php

    r2991877 r3019115  
    44 * Plugin URI:  https://github.com/thingsym/wp-auto-updater
    55 * Description: This plugin enables automatic updates of WordPress Core, Themes, Plugins and Translations. Version control of WordPress Core makes automatic update more safely.
    6  * Version:     1.7.1
     6 * Version:     1.7.2
    77 * Author:      thingsym
    88 * Author URI:  https://management.thingslabo.com/
  • wp-auto-updater/trunk/inc/class-wp-auto-updater-history.php

    r2991877 r3019115  
    544544        $paginate .= ' ' . $current_paged . ' / ' . $total_pages . ' ';
    545545
    546         // $paginate .= sprintf(
    547         //  " %s<input class='current-page' id='current-page-selector' type='text' name='paged' value='%s' size='%d' aria-describedby='table-paging' /><span class='tablenav-paging-text'>",
    548         //  '<label for="current-page-selector" class="screen-reader-text">' . __( 'Current Page' ) . '</label>',
    549         //  $current_paged,
    550         //  strlen( $total_pages )
    551         // );
    552         // $paginate .= ' / ' . $total_pages . ' ';
    553 
    554546        if ( $current_paged === $total_pages ) {
    555547            $paginate .= '<span class="tablenav-pages-navspan button disabled" aria-hidden="true">&rsaquo;</span>';
     
    613605        $screen_option = $screen->get_option( 'per_page', 'option' );
    614606        $per_page      = get_user_meta( get_current_user_id(), $screen_option, true );
    615         if ( empty ( $per_page) || $per_page < 1 ) {
     607        if ( empty( $per_page ) || $per_page < 1 ) {
    616608            $per_page = 10;
    617609        }
  • wp-auto-updater/trunk/inc/class-wp-auto-updater-notification.php

    r2991877 r3019115  
    657657        }
    658658
    659         $output['mail']['recipients'] = isset( $input['mail']['recipients'] ) ? $input['mail']['recipients'] : array();
     659        $output['mail']['recipients'] = isset( $input['mail']['recipients'] ) ? array_map( 'intval', $input['mail']['recipients'] ) : array();
    660660
    661661        $output = apply_filters( 'wp_auto_updater_notification/validate_options', $output, $input, $this->default_options );
  • wp-auto-updater/trunk/inc/class-wp-auto-updater.php

    r2991877 r3019115  
    503503        }
    504504
    505         return apply_filters( 'wp_auto_updater/get_timestamp', $timestamp, $schedule );
     505        return apply_filters( 'wp_auto_updater/get_timestamp', (int) $timestamp, $schedule );
    506506    }
    507507
  • wp-auto-updater/trunk/languages/wp-auto-updater-ja.po

    r2991877 r3019115  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Auto Updater 1.7.1\n"
     5"Project-Id-Version: WP Auto Updater 1.7.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-auto-updater\n"
    77"POT-Creation-Date: 2023-11-08T09:27:18+00:00\n"
  • wp-auto-updater/trunk/languages/wp-auto-updater.pot

    r2991877 r3019115  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Auto Updater 1.7.1\n"
     5"Project-Id-Version: WP Auto Updater 1.7.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-auto-updater\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  • wp-auto-updater/trunk/readme.txt

    r2991877 r3019115  
    44Donate link: https://github.com/sponsors/thingsym
    55Tags: updates, auto update, automatic updates, background updates, core updates, theme updates, translation updates, plugin updates
    6 Stable tag: 1.7.1
     6Stable tag: 1.7.2
    77Tested up to: 6.4.0
    88Requires at least: 4.9
     
    160160
    161161== Changelog ==
     162
     163= 1.7.2 =
     164* add php 8.3 to matrix and actions/checkout bump up for ci
     165* imporve code with phpcs
     166* change the type of a variable
     167* add phpunit-legacy job to ci
    162168
    163169= 1.7.1 =
  • wp-auto-updater/trunk/wp-auto-updater.php

    r2991877 r3019115  
    44 * Plugin URI:  https://github.com/thingsym/wp-auto-updater
    55 * Description: This plugin enables automatic updates of WordPress Core, Themes, Plugins and Translations. Version control of WordPress Core makes automatic update more safely.
    6  * Version:     1.7.1
     6 * Version:     1.7.2
    77 * Author:      thingsym
    88 * Author URI:  https://management.thingslabo.com/
Note: See TracChangeset for help on using the changeset viewer.