Changeset 2345326
- Timestamp:
- 07/23/2020 11:36:35 AM (6 years ago)
- Location:
- amazon-polly/trunk
- Files:
-
- 4 edited
-
README.md (modified) (2 diffs)
-
README.txt (modified) (2 diffs)
-
admin/AmazonAI-Common.php (modified) (1 diff)
-
amazonpolly.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
amazon-polly/trunk/README.md
r2332434 r2345326 7 7 | Requires PHP | 5.6 | 8 8 | Tested up to | 5.3 | 9 | Stable tag | 4.2. 1|9 | Stable tag | 4.2.2 | 10 10 | License | GPLv3 ONLY | 11 11 | License URI | https://www.gnu.org/licenses/gpl-3.0.html | … … 136 136 #### Changelog 137 137 138 = 4.2.2 = 139 * Code Refactoring 140 138 141 = 4.2.1 = 139 142 * Code Refactoring 140 * 143 141 144 = 4.2.0 = 142 145 * Code Refactoring -
amazon-polly/trunk/README.txt
r2332434 r2345326 5 5 Requires PHP: 5.6 6 6 Tested up to: 5.3 7 Stable tag: 4.2. 17 Stable tag: 4.2.2 8 8 License: GPLv3 ONLY 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 134 134 135 135 == Changelog == 136 137 = 4.2.2 = 138 * Code Refactoring 136 139 137 140 = 4.2.1 = -
amazon-polly/trunk/admin/AmazonAI-Common.php
r2332434 r2345326 376 376 $byte_word_length = strlen( $byte_word ); 377 377 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 ); 379 379 } 380 380 $offset = ( (int) $int_value ) + 10; -
amazon-polly/trunk/amazonpolly.php
r2332434 r2345326 17 17 * Plugin URI: https://wordpress.org/plugins/amazon-polly/ 18 18 * 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. 119 * Version: 4.2.2 20 20 * Author: AWS Labs, WP Engine 21 21 * Author URI: https://aws.amazon.com/
Note: See TracChangeset
for help on using the changeset viewer.