Plugin Directory

Changeset 3139917


Ignore:
Timestamp:
08/22/2024 06:17:04 PM (20 months ago)
Author:
thangnv27
Message:

0.1.16

  • Fix convert WebP
Location:
wp-multitasking/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-multitasking/trunk/includes/pagespeed-insights.php

    r3137081 r3139917  
    250250   */
    251251  function convert_to_webp($img_source, $file_ext = 'jpg'){
    252     if($file_ext == "png"){
     252    if ($file_ext == "webp") {
     253      return true;
     254    } elseif($file_ext == "png"){
    253255      $webp_buf = imagecreatefrompng($img_source);
    254256    }elseif($file_ext == "jpg" || $file_ext == "jpeg"){
  • wp-multitasking/trunk/includes/psi/settings.php

    r3137081 r3139917  
    4848      </tr>
    4949      <tr>
    50           <td>
     50          <td style="vertical-align: top;">
    5151              <label for="wpmt_psi_image_lazyload">Lazyload for images:</label>
    5252          </td>
     
    7171      </tr>
    7272      <tr>
    73           <td>
     73          <td style="vertical-align: top;">
    7474              <label for="wpmt_psi_wprocket_css_inline">WP Rocket CSS Inline:</label>
    7575          </td>
     
    8787      </tr>
    8888      <tr>
    89           <td>Recommends:</td>
     89          <td style="vertical-align: top;">Recommends:</td>
    9090          <td>
    9191              <p>HTML Minify with plugin <a href="https://wordpress.org/plugins/autoptimize/" target="_blank">Autoptimize</a></p>
  • wp-multitasking/trunk/readme.txt

    r3137081 r3139917  
    44Tags: Google PageSpeed Insights,shorcode,mark id,bbcode,welcome popup,exit popup,popup,addquicktag,custom post type,post type,remove base slug
    55Requires at least: 2.1.0
    6 Tested up to: 6.4.2
    7 Stable tag: 0.1.15
     6Tested up to: 6.6.1
     7Stable tag: 0.1.16
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8686== Changelog ==
    8787
     88= 0.1.16 =
     89* Fix convert WebP
     90
    8891= 0.1.15 =
    8992* Update PSI
  • wp-multitasking/trunk/wp-multitasking.php

    r3137081 r3139917  
    44Plugin URI:  http://wordpress.org/plugins/wp-multitasking/
    55Description: This plugin is synthetic utility for your WordPress site: Shortcode, BBCode, AddQuickTag, Exit pop-up, Welcome pop-up, Remove base slug, SMTP, Classic Editor, Classic widgets...
    6 Version:     0.1.15
     6Version:     0.1.16
    77Author:      thangnv27
    88Author URI:  https://ngothang.me/
     
    2222   
    2323if ( ! defined( 'WPMT_VER' ) )
    24     define( 'WPMT_VER', '0.1.15' );
     24    define( 'WPMT_VER', '0.1.16' );
    2525
    2626add_action('admin_menu', 'wpmt_add_settings_page');
Note: See TracChangeset for help on using the changeset viewer.