Plugin Directory

Changeset 3076019

Timestamp:
04/23/2024 06:06:22 PM (3 months ago)
Author:
nosilver4u
Message:

tagging and releasing 2.1.4

Location:
force-regenerate-thumbnails
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • force-regenerate-thumbnails/tags/2.1.4/.travis.yml

    r2966661 r3076019  
    1515
    1616php:
    17   - 7.3
     17  - 7.
    1818  - 8.0
    1919
  • force-regenerate-thumbnails/tags/2.1.4/changelog.txt

    r2966661 r3076019  
     1
     2
     3
     4
     5
    16= 2.1.3 =
     7
     8
    29* changed: use updated coding standards
    310* fixed: WP image edits lost if pre-scaled original is used for thumbnail generation
    411
    512= 2.1.2 =
     13
     14
    615* changed: improved i18n for page headings and menu entries, props @alexclassroom
    716
    817= 2.1.1 =
     18
     19
    920* fixed: invalid trailing comma syntax in PHP 7.2
    1021
    1122= 2.1.0 =
     23
     24
    1225* added: PHP 8.0 compatibility
    1326* added: support generating thumbnails from original (pre-scaled), on by default
  • force-regenerate-thumbnails/tags/2.1.4/class-forceregeneratethumbnails.php

    r2966661 r3076019  
    5757     * @since 2.1.0
    5858     */
    59     const VERSION = 213;
     59    const VERSION = 21;
    6060
    6161    /**
     
    534534            $thumb_error      = array();
    535535            $thumb_regenerate = array();
     536
     537
    536538
    537539            /**
     
    565567
    566568            // Hack to find thumbnail.
    567             $file_info = pathinfo( $image_fullpath );
    568569            $file_stem = $this->remove_from_end( $file_info['filename'], '-scaled' ) . '-';
    569570
  • force-regenerate-thumbnails/tags/2.1.4/force-regenerate-thumbnails.php

    r2966661 r3076019  
    1111Plugin URI: https://wordpress.org/plugins/force-regenerate-thumbnails/
    1212Description: Delete and REALLY force the regeneration of thumbnails.
    13 Version: 2.1.3
    14 Requires at least: 6.0
    15 Requires PHP: 7.3
     13Version: 2.1.
     14Requires at least: 6.
     15Requires PHP: 7.
    1616Author: Exactly WWW
    1717Author URI: http://ewww.io/about/
  • force-regenerate-thumbnails/tags/2.1.4/phpcs.ruleset.xml

    r2815607 r3076019  
    88    <rule ref="WordPress-Core" />
    99    <rule ref="WordPress-Docs" />
    10     <rule ref="WordPress.PHP.NoSilencedErrors">
    11         <properties>
    12             <property name="custom_whitelist" type="array" value="exif_read_data"/>
    13         </properties>
    14     </rule>
    1510
     11
    1612    <rule ref="PHPCompatibilityWP">
    1713        <severity>10</severity>
  • force-regenerate-thumbnails/tags/2.1.4/readme.txt

    r2966661 r3076019  
    11=== Force Regenerate Thumbnails ===
    22Contributors: pedro-elsner, nosilver4u
    3 Requires at least: 6.0
    4 Tested up to: 6.3
    5 Requires PHP: 7.3
    6 Stable tag: 2.1.3
     3Requires at least: 6.
     4Tested up to: 6.
     5Requires PHP: 7.
     6Stable tag: 2.1.
    77License: GPLv2
    88Tags: force, regenerate thumbnails, thumbnail, thumbnails
     
    3535== ChangeLog ==
    3636
     37
     38
     39
     40
     41
    3742= 2.1.3 =
     43
     44
    3845* changed: use updated coding standards
    3946* fixed: WP image edits lost if pre-scaled original is used for thumbnail generation
    4047
    4148= 2.1.2 =
     49
     50
    4251* changed: improved i18n for page headings and menu entries, props @alexclassroom
    4352
    4453= 2.1.1 =
     54
     55
    4556* fixed: invalid trailing comma syntax in PHP 7.2
    4657
    4758= 2.1.0 =
     59
     60
    4861* added: PHP 8.0 compatibility
    4962* added: support generating thumbnails from original (pre-scaled), on by default
     
    5669* fixed: call to set_time_limit() when it is not allowed
    5770
    58 = 2.0.6 =
    59 * Add PHP7 compatibility
    60 
    61 = 2.0.5 =
    62 * No timeout limit
    63 
    64 = 2.0.4 =
    65 * Fix issue when "opendir()" return FALSE (thanks Krody Robert)
    66 
    67 = 2.0.3 =
    68 * Add debug information on regenerate
    69 * Fix issue with update "_wp_attachment_metadata" and "_wp_attached_file" on windows
    70 
    71 = 2.0.2 =
    72 * New style for results (thanks @justonarnar)
    73 * Automatic update "_wp_attachment_metadata" and "_wp_attached_file" (thanks @norecipes)
    74 
    75 = 2.0.1 =
    76 * Fix issue with get_option('upload_path') in Wordpress 3.5+ (thanks @DavidLingren)
    77 
    78 = 2.0.0 =
    79 * Fix error handle
    80 
    8171= Earlier versions =
    8272Please refer to the separate changelog.txt file.
  • force-regenerate-thumbnails/trunk/.travis.yml

    r2966661 r3076019  
    1515
    1616php:
    17   - 7.3
     17  - 7.
    1818  - 8.0
    1919
  • force-regenerate-thumbnails/trunk/changelog.txt

    r2966661 r3076019  
     1
     2
     3
     4
     5
    16= 2.1.3 =
     7
     8
    29* changed: use updated coding standards
    310* fixed: WP image edits lost if pre-scaled original is used for thumbnail generation
    411
    512= 2.1.2 =
     13
     14
    615* changed: improved i18n for page headings and menu entries, props @alexclassroom
    716
    817= 2.1.1 =
     18
     19
    920* fixed: invalid trailing comma syntax in PHP 7.2
    1021
    1122= 2.1.0 =
     23
     24
    1225* added: PHP 8.0 compatibility
    1326* added: support generating thumbnails from original (pre-scaled), on by default
  • force-regenerate-thumbnails/trunk/class-forceregeneratethumbnails.php

    r2966661 r3076019  
    5757     * @since 2.1.0
    5858     */
    59     const VERSION = 213;
     59    const VERSION = 21;
    6060
    6161    /**
     
    534534            $thumb_error      = array();
    535535            $thumb_regenerate = array();
     536
     537
    536538
    537539            /**
     
    565567
    566568            // Hack to find thumbnail.
    567             $file_info = pathinfo( $image_fullpath );
    568569            $file_stem = $this->remove_from_end( $file_info['filename'], '-scaled' ) . '-';
    569570
  • force-regenerate-thumbnails/trunk/force-regenerate-thumbnails.php

    r2966661 r3076019  
    1111Plugin URI: https://wordpress.org/plugins/force-regenerate-thumbnails/
    1212Description: Delete and REALLY force the regeneration of thumbnails.
    13 Version: 2.1.3
    14 Requires at least: 6.0
    15 Requires PHP: 7.3
     13Version: 2.1.
     14Requires at least: 6.
     15Requires PHP: 7.
    1616Author: Exactly WWW
    1717Author URI: http://ewww.io/about/
  • force-regenerate-thumbnails/trunk/phpcs.ruleset.xml

    r2815607 r3076019  
    88    <rule ref="WordPress-Core" />
    99    <rule ref="WordPress-Docs" />
    10     <rule ref="WordPress.PHP.NoSilencedErrors">
    11         <properties>
    12             <property name="custom_whitelist" type="array" value="exif_read_data"/>
    13         </properties>
    14     </rule>
    1510
     11
    1612    <rule ref="PHPCompatibilityWP">
    1713        <severity>10</severity>
  • force-regenerate-thumbnails/trunk/readme.txt

    r2966661 r3076019  
    11=== Force Regenerate Thumbnails ===
    22Contributors: pedro-elsner, nosilver4u
    3 Requires at least: 6.0
    4 Tested up to: 6.3
    5 Requires PHP: 7.3
    6 Stable tag: 2.1.3
     3Requires at least: 6.
     4Tested up to: 6.
     5Requires PHP: 7.
     6Stable tag: 2.1.
    77License: GPLv2
    88Tags: force, regenerate thumbnails, thumbnail, thumbnails
     
    3535== ChangeLog ==
    3636
     37
     38
     39
     40
     41
    3742= 2.1.3 =
     43
     44
    3845* changed: use updated coding standards
    3946* fixed: WP image edits lost if pre-scaled original is used for thumbnail generation
    4047
    4148= 2.1.2 =
     49
     50
    4251* changed: improved i18n for page headings and menu entries, props @alexclassroom
    4352
    4453= 2.1.1 =
     54
     55
    4556* fixed: invalid trailing comma syntax in PHP 7.2
    4657
    4758= 2.1.0 =
     59
     60
    4861* added: PHP 8.0 compatibility
    4962* added: support generating thumbnails from original (pre-scaled), on by default
     
    5669* fixed: call to set_time_limit() when it is not allowed
    5770
    58 = 2.0.6 =
    59 * Add PHP7 compatibility
    60 
    61 = 2.0.5 =
    62 * No timeout limit
    63 
    64 = 2.0.4 =
    65 * Fix issue when "opendir()" return FALSE (thanks Krody Robert)
    66 
    67 = 2.0.3 =
    68 * Add debug information on regenerate
    69 * Fix issue with update "_wp_attachment_metadata" and "_wp_attached_file" on windows
    70 
    71 = 2.0.2 =
    72 * New style for results (thanks @justonarnar)
    73 * Automatic update "_wp_attachment_metadata" and "_wp_attached_file" (thanks @norecipes)
    74 
    75 = 2.0.1 =
    76 * Fix issue with get_option('upload_path') in Wordpress 3.5+ (thanks @DavidLingren)
    77 
    78 = 2.0.0 =
    79 * Fix error handle
    80 
    8171= Earlier versions =
    8272Please refer to the separate changelog.txt file.
Note: See TracChangeset for help on using the changeset viewer.