Plugin Directory

Changeset 2345326


Ignore:
Timestamp:
07/23/2020 11:36:35 AM (6 years ago)
Author:
awslabs
Message:

trunk 4.2.2

Location:
amazon-polly/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • amazon-polly/trunk/README.md

    r2332434 r2345326  
    77| Requires PHP | 5.6 |
    88| Tested up to | 5.3 |
    9 | Stable tag | 4.2.1 |
     9| Stable tag | 4.2.2 |
    1010| License | GPLv3 ONLY |
    1111| License URI | https://www.gnu.org/licenses/gpl-3.0.html |
     
    136136#### Changelog
    137137
     138= 4.2.2 =
     139* Code Refactoring
     140
    138141= 4.2.1 =
    139142* Code Refactoring
    140 *
     143
    141144= 4.2.0 =
    142145* Code Refactoring
  • amazon-polly/trunk/README.txt

    r2332434 r2345326  
    55Requires PHP: 5.6
    66Tested up to: 5.3
    7 Stable tag: 4.2.1
     7Stable tag: 4.2.2
    88License: GPLv3 ONLY
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    134134
    135135== Changelog ==
     136
     137= 4.2.2 =
     138* Code Refactoring
    136139
    137140= 4.2.1 =
  • amazon-polly/trunk/admin/AmazonAI-Common.php

    r2332434 r2345326  
    376376        $byte_word_length = strlen( $byte_word );
    377377        for ( $i = 0; $i < $byte_word_length; $i++ ) {
    378             $int_value += ( ord( $byte_word{$i} ) & 0x7F ) * pow( 2, ( $byte_word_length - 1 - $i ) * 7 );
     378            $int_value += ( ord( $byte_word[$i] ) & 0x7F ) * pow( 2, ( $byte_word_length - 1 - $i ) * 7 );
    379379        }
    380380        $offset = ( (int) $int_value ) + 10;
  • amazon-polly/trunk/amazonpolly.php

    r2332434 r2345326  
    1717 * Plugin URI:        https://wordpress.org/plugins/amazon-polly/
    1818 * Description:       Create audio versions of your posts, translate them into other languages, and create podcasts. Integrate with Amazon Alexa to listen to your posts on Alexa-enabled devices. Use Amazon CloudFront to accelerate your website and provide a faster, more reliable viewing experience.
    19  * Version:           4.2.1
     19 * Version:           4.2.2
    2020 * Author:            AWS Labs, WP Engine
    2121 * Author URI:        https://aws.amazon.com/
Note: See TracChangeset for help on using the changeset viewer.