Plugin Directory

Changeset 2304588


Ignore:
Timestamp:
05/14/2020 03:05:36 AM (6 years ago)
Author:
envato
Message:

Uploading version 1.0.14

Location:
template-kit-export/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • template-kit-export/trunk/README.txt

    r2303126 r2304588  
    55Tested up to: 5.4
    66Requires PHP: 5.6
    7 Stable tag: 1.0.13
     7Stable tag: 1.0.14
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    3838
    3939== Changelog ==
     40
     41= 1.0.14 - 2020-05-14 =
     42* Change the image size requirements and warning messaging.
    4043
    4144= 1.0.13 - 2020-05-12 =
  • template-kit-export/trunk/admin/partials/template-kit-export-step-3.php

    r2262139 r2304588  
    6868                (<?php echo esc_html( $image['dimensions'][0] . 'x' . $image['dimensions'][1] . 'px @ ' . number_format( $image['filesize'] / 1048576, 2 ) . ' MB' ); ?>)
    6969                <?php
    70                 if ( $image['filesize'] > 310000 ) {
     70                if ( $image['filesize'] > 510000 ) {
    7171                    ?>
    72                     <strong><em>Warning: Please try to reduce original image size closer to 100kb.</em></strong>
     72                    <strong><em>Warning: Please try to reduce original image size.</em></strong>
    7373                    <?php
    7474                }
  • template-kit-export/trunk/builders/class-template-kit-export-builders-base.php

    r2302251 r2304588  
    605605            if ( ! $image['filesize'] ) {
    606606                $image_errors[] = 'Sorry we cannot read the file: ' . $image['filename'];
    607             } elseif ( $image['filesize'] > 900000 ) {
     607            } elseif ( $image['filesize'] > 1000000 ) {
    608608                // Most WordPress installs default to 1MB upload limit
    609                 $image_errors[] = 'This source image is too large (' . number_format( $image['filesize'] / 1048576, 2 ) . ' MB' . '). Please reduce file size under 500kb, ideal size is 100kb. Try resizing the image and then use TinyPNG as well: ' . $image['filename'];
     609                $image_errors[] = 'This source image is too large (' . number_format( $image['filesize'] / 1048576, 2 ) . ' MB' . '). Reduce it to less than 1MB: ' . $image['filename'];
    610610            }
    611611        }
  • template-kit-export/trunk/template-kit-export.php

    r2303126 r2304588  
    33 * Plugin Name:       Template Kit Export
    44 * Description:       Use this plugin to export Template Kits for Elementor.
    5  * Version:           1.0.13
     5 * Version:           1.0.14
    66 * Author:            Envato
    77 * Author URI:        https://envato.com
     
    1919 * Currently plugin version.
    2020 */
    21 define( 'TEMPLATE_KIT_EXPORT_VERSION', '1.0.13' );
     21define( 'TEMPLATE_KIT_EXPORT_VERSION', '1.0.14' );
    2222
    2323/**
Note: See TracChangeset for help on using the changeset viewer.