Plugin Directory

Changeset 2220274


Ignore:
Timestamp:
12/31/2019 08:54:11 PM (6 years ago)
Author:
hifipix
Message:

Version 1.5.3 release

Location:
wp-quickdraw
Files:
565 added
19 edited

Legend:

Unmodified
Added
Removed
  • wp-quickdraw/trunk/assets/css/index.php

    r2219860 r2220274  
    1616 * @copyright   2019 HifiPix, Inc.
    1717 * @license     http://www.gnu.org/licenses/gpl.html  GNU GPL, Version 3
    18  * @version     1.5.2
     18 * @version     1.5.3
    1919 */
    2020 
  • wp-quickdraw/trunk/assets/images/index.php

    r2219860 r2220274  
    1616 * @copyright   2019 HifiPix, Inc.
    1717 * @license     http://www.gnu.org/licenses/gpl.html  GNU GPL, Version 3
    18  * @version     1.5.2
     18 * @version     1.5.3
    1919 */
    2020 
  • wp-quickdraw/trunk/assets/js/index.php

    r2219860 r2220274  
    1616 * @copyright   2019 HifiPix, Inc.
    1717 * @license     http://www.gnu.org/licenses/gpl.html  GNU GPL, Version 3
    18  * @version     1.5.2
     18 * @version     1.5.3
    1919 */
    2020 
  • wp-quickdraw/trunk/readme.txt

    r2219860 r2220274  
    33Tags: progressive, rendering, images, media library, performance, lazy load, renderful, contentful, cache, png
    44Requires at least: 3.2
    5 Tested up to: 5.3.1
     5Tested up to: 5.3.2
    66Requires PHP: 5.5
    7 Stable tag: 1.5.2
     7Stable tag: 1.5.3
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl.html
     
    4545== Changelog ==
    4646
     47= 1.5.3 =
     48* Release date: December 31, 2019
     49* Buffer manager improvements for WooCommerce compatibility. Resolves occassional issue with PHP fatal error when initializing cart.
     50* Fixed image size validation issue in pre-render buffer.
     51* Disable the big image size threshold introduced in WordPress 5.3.
     52
    4753= 1.5.2 =
    4854* Release date: December 30, 2019
  • wp-quickdraw/trunk/wpqd-admin-dashboard.php

    r2219860 r2220274  
    1616 * @copyright   2019 HifiPix, Inc.
    1717 * @license     http://www.gnu.org/licenses/gpl.html  GNU GPL, Version 3
    18  * @version     1.5.2
     18 * @version     1.5.3
    1919 */
    2020 
  • wp-quickdraw/trunk/wpqd-api-connector.php

    r2219860 r2220274  
    1616 * @copyright   2019 HifiPix, Inc.
    1717 * @license     http://www.gnu.org/licenses/gpl.html  GNU GPL, Version 3
    18  * @version     1.5.2
     18 * @version     1.5.3
    1919 */
    2020 
  • wp-quickdraw/trunk/wpqd-batch-importer.php

    r2219860 r2220274  
    1616 * @copyright   2019 HifiPix, Inc.
    1717 * @license     http://www.gnu.org/licenses/gpl.html  GNU GPL, Version 3
    18  * @version     1.5.2
     18 * @version     1.5.3
    1919 */
    2020 
  • wp-quickdraw/trunk/wpqd-buffer-manager.php

    r2219860 r2220274  
    1616 * @copyright   2019 HifiPix, Inc.
    1717 * @license     http://www.gnu.org/licenses/gpl.html  GNU GPL, Version 3
    18  * @version     1.5.2
     18 * @version     1.5.3
    1919 */
    2020 
     
    111111        }
    112112
    113         wp();   // Register globals to populate post data
    114         $post = get_post();
    115 
    116         if ( $post ) {
    117             $disabled = (bool) get_post_meta( $post->ID, DisableMetabox::FIELD_KEY, true );
     113        // Get page URL
     114        if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on')
     115            $current_url = "https";
     116        else
     117            $current_url = "http";
     118        $current_url .= "://";
     119        $current_url .= $_SERVER['HTTP_HOST'];
     120        $current_url .= $_SERVER['REQUEST_URI'];
     121        $current_url;
     122
     123        // Get POST ID from URL
     124        $post_id = url_to_postid($current_url);
     125
     126        if ( $post_id ) {
     127            $disabled = (bool) get_post_meta( $post_id, DisableMetabox::FIELD_KEY, true );
    118128        }
    119129
  • wp-quickdraw/trunk/wpqd-buffer.php

    r2219860 r2220274  
    1616 * @copyright   2019 HifiPix, Inc.
    1717 * @license     http://www.gnu.org/licenses/gpl.html  GNU GPL, Version 3
    18  * @version     1.5.2
     18 * @version     1.5.3
    1919 */
    2020 
     
    119119       
    120120        $file = ltrim( str_replace( $uploads['baseurl'], '', $url ), '/' );
    121         $file_parts = preg_match( '/(\d+\/\d+\/.*)-(\d+)x(\d+)(\..{3,4})/', $file, $matches );
     121        $file_parts = preg_match( '/(.*)-(\d+)x(\d+)(\..{3,4})/', $file, $matches );
    122122
    123123        if ( count( $matches ) >= 5 ) {
  • wp-quickdraw/trunk/wpqd-cdn-uploader.php

    r2219860 r2220274  
    1616 * @copyright   2019 HifiPix, Inc.
    1717 * @license     http://www.gnu.org/licenses/gpl.html  GNU GPL, Version 3
    18  * @version     1.5.2
     18 * @version     1.5.3
    1919 */
    2020 
  • wp-quickdraw/trunk/wpqd-core.php

    r2219860 r2220274  
    33Plugin Name: WP QuickDraw
    44Description: Highly accelerated page loading and rendering for image-rich websites. Compatible with caching and image optimization plugins for the highest SEO.
    5 Version:     1.5.2
     5Version:     1.5.3
    66Author:      Hifipix
    77Author URI:  https://www.wpquickdraw.com/
     
    3232define( 'WPQD_URL', plugins_url( '/', WPQD_PLUGIN_FILE ) );
    3333define( 'WPQD_NAME', 'WP QuickDraw');
    34 define( 'WPQD_VERSION' , '1.5.2' );
     34define( 'WPQD_VERSION' , '1.5.3' );
    3535define( 'WPQD_OPTIONS', 'wpqd_data');
    3636define( 'WPQD_BASENAME', plugin_basename( WPQD_PLUGIN_FILE ) );
  • wp-quickdraw/trunk/wpqd-disable-metabox.php

    r2219860 r2220274  
    1616 * @copyright   2019 HifiPix, Inc.
    1717 * @license     http://www.gnu.org/licenses/gpl.html  GNU GPL, Version 3
    18  * @version     1.5.2
     18 * @version     1.5.3
    1919 */
    2020 
  • wp-quickdraw/trunk/wpqd-image-generator.php

    r2219860 r2220274  
    1616 * @copyright   2019 HifiPix, Inc.
    1717 * @license     http://www.gnu.org/licenses/gpl.html  GNU GPL, Version 3
    18  * @version     1.5.2
     18 * @version     1.5.3
    1919 */
    2020 
  • wp-quickdraw/trunk/wpqd-image-metadata.php

    r2219860 r2220274  
    1616 * @copyright   2019 HifiPix, Inc.
    1717 * @license     http://www.gnu.org/licenses/gpl.html  GNU GPL, Version 3
    18  * @version     1.5.2
     18 * @version     1.5.3
    1919 */
    2020 
  • wp-quickdraw/trunk/wpqd-image-status-list.php

    r2219860 r2220274  
    1616 * @copyright   2019 HifiPix, Inc.
    1717 * @license     http://www.gnu.org/licenses/gpl.html  GNU GPL, Version 3
    18  * @version     1.5.2
     18 * @version     1.5.3
    1919 */
    2020 
  • wp-quickdraw/trunk/wpqd-image-status-page.php

    r2219860 r2220274  
    1616 * @copyright   2019 HifiPix, Inc.
    1717 * @license     http://www.gnu.org/licenses/gpl.html  GNU GPL, Version 3
    18  * @version     1.5.2
     18 * @version     1.5.3
    1919 */
    2020 
  • wp-quickdraw/trunk/wpqd-logger.php

    r2219860 r2220274  
    1616 * @copyright   2019 HifiPix, Inc.
    1717 * @license     http://www.gnu.org/licenses/gpl.html  GNU GPL, Version 3
    18  * @version     1.5.2
     18 * @version     1.5.3
    1919 */
    2020 
  • wp-quickdraw/trunk/wpqd-media-library.php

    r2219860 r2220274  
    1616 * @copyright   2019 HifiPix, Inc.
    1717 * @license     http://www.gnu.org/licenses/gpl.html  GNU GPL, Version 3
    18  * @version     1.5.2
     18 * @version     1.5.3
    1919 */
    2020 
     
    4545        add_action( 'add_attachment', array( $this, 'enable_by_default' ) );
    4646        add_action( 'print_media_templates', array( $this, 'media_image_widget_options' ) );
     47
     48        // Disable big image threshold, which causes scale down
     49        add_filter( 'big_image_size_threshold', '__return_false' );
    4750    }   
    4851
  • wp-quickdraw/trunk/wpqd-plugin-state.php

    r2219860 r2220274  
    1616 * @copyright   2019 HifiPix, Inc.
    1717 * @license     http://www.gnu.org/licenses/gpl.html  GNU GPL, Version 3
    18  * @version     1.5.2
     18 * @version     1.5.3
    1919 */
    2020 
Note: See TracChangeset for help on using the changeset viewer.