updated plugin Companion Auto Update version 3.9.2

This commit is contained in:
KawaiiPunk 2024-06-27 12:10:47 +00:00 committed by Gitium
parent 65d26d4d83
commit 5c4b728efa
3 changed files with 10 additions and 6 deletions

View File

@ -269,7 +269,7 @@ function cau_run_custom_hooks_c() {
} }
if( $fileDate >= $lastday ) { if( $fileDate >= $lastday ) {
$status = ( $fileTime > $range_start && $fileTime < $range_end ) ? __( 'Automatic', 'companion-auto-update' ) : __( 'Manual', 'companion-auto-update' ); $status = ( $update_time > $range_start && $update_time < $range_end ) ? __( 'Automatic', 'companion-auto-update' ) : __( 'Manual', 'companion-auto-update' );
$totalNum++; $totalNum++;
cau_updatePluginInformation( 'core', $status ); cau_updatePluginInformation( 'core', $status );
} }
@ -575,7 +575,7 @@ function cau_fetch_log( $limiter, $format = 'simple' ) {
echo '<thead> echo '<thead>
<tr> <tr>
<th><strong>'.__( 'Name', 'companion-auto-update' ).'</strong></th>'; <th><strong>'.__( 'Name', 'companion-auto-update' ).'</strong></th>';
if( !$translations ) echo '<th><strong>'.__( 'To version', 'companion-auto-update' ).'</strong></th>'; if( !$show_translations ) echo '<th><strong>'.__( 'To version', 'companion-auto-update' ).'</strong></th>';
echo '<th><strong>'.__( 'Type', 'companion-auto-update' ).'</strong></th> echo '<th><strong>'.__( 'Type', 'companion-auto-update' ).'</strong></th>
<th><strong>'.__( 'Last updated on', 'companion-auto-update' ).'</strong></th> <th><strong>'.__( 'Last updated on', 'companion-auto-update' ).'</strong></th>
<th><strong>'.__( 'Update method', 'companion-auto-update' ).'</strong></th> <th><strong>'.__( 'Update method', 'companion-auto-update' ).'</strong></th>
@ -604,7 +604,7 @@ function cau_fetch_log( $limiter, $format = 'simple' ) {
echo '<td class="column-updatetitle"><p><strong title="'.$log_item__name.'">'.cau_getChangelogUrl( $log_item__type, $log_item__name_f, $log_item__slug ).'</strong></p></td>'; echo '<td class="column-updatetitle"><p><strong title="'.$log_item__name.'">'.cau_getChangelogUrl( $log_item__type, $log_item__name_f, $log_item__slug ).'</strong></p></td>';
if( $format == 'table' ) { if( $format == 'table' ) {
if( !$translations ) echo '<td class="cau_hide_on_mobile column-version" style="min-width: 100px;"><p>'.$log_item__version.'</p></td>'; if( !$show_translations ) echo '<td class="cau_hide_on_mobile column-version" style="min-width: 100px;"><p>'.$log_item__version.'</p></td>';
echo '<td class="cau_hide_on_mobile column-description"><p>'.$log_item__type.'</p></td>'; echo '<td class="cau_hide_on_mobile column-description"><p>'.$log_item__type.'</p></td>';
} }
echo '<td class="column-date" style="min-width: 100px;"><p>'.$log_item__date.'</p></td>'; echo '<td class="column-date" style="min-width: 100px;"><p>'.$log_item__date.'</p></td>';

View File

@ -4,7 +4,7 @@
* Plugin Name: Companion Auto Update * Plugin Name: Companion Auto Update
* Plugin URI: http://codeermeneer.nl/portfolio/companion-auto-update/ * Plugin URI: http://codeermeneer.nl/portfolio/companion-auto-update/
* Description: This plugin auto updates all plugins, all themes and the wordpress core. * Description: This plugin auto updates all plugins, all themes and the wordpress core.
* Version: 3.9.1 * Version: 3.9.2
* Author: Papin Schipper * Author: Papin Schipper
* Author URI: http://codeermeneer.nl/ * Author URI: http://codeermeneer.nl/
* Contributors: papin * Contributors: papin

View File

@ -3,9 +3,9 @@ Contributors: Papin, qweb
Donate link: https://www.paypal.me/dakel/10/ Donate link: https://www.paypal.me/dakel/10/
Tags: auto, automatic, background, update, updates, updating, automatic updates, automatic background updates, easy update, wordpress update, theme update, plugin update, up-to-date, security, update latest version, update core, update wp, update wp core, major updates, minor updates, update to new version, update core, update plugin, update plugins, update plugins automatically, update theme, plugin, theme, advance, control, mail, notifations, enable Tags: auto, automatic, background, update, updates, updating, automatic updates, automatic background updates, easy update, wordpress update, theme update, plugin update, up-to-date, security, update latest version, update core, update wp, update wp core, major updates, minor updates, update to new version, update core, update plugin, update plugins, update plugins automatically, update theme, plugin, theme, advance, control, mail, notifations, enable
Requires at least: 5.3.0 Requires at least: 5.3.0
Tested up to: 6.4 Tested up to: 6.5
Requires PHP: 5.1 Requires PHP: 5.1
Stable tag: 3.9.1 Stable tag: 3.9.2
License: GPLv2 or later License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html License URI: http://www.gnu.org/licenses/gpl-2.0.html
@ -82,6 +82,10 @@ So obviously, some of you wondered what the difference would be between the defa
== Changelog == == Changelog ==
= 3.9.2 (June 11, 2024) =
* Fixed some more undefined variables
* Declared support for WP6.5
= 3.9.1 (March 8, 2024) = = 3.9.1 (March 8, 2024) =
* Fixed: Undefined variable $totalNum * Fixed: Undefined variable $totalNum